Test page

From GridInfo

Jump to: navigation, search

\sqrt{2}


Some text on the picture, where does it get to?
Enlarge
Some text on the picture, where does it get to?

Text text text

y = mc + cos(θ)


Hamming codes work through extending the idea of parity by multiplying matrices called Hamming matrices. For the Hamming (7,4) code, we use two closely related matrices, call them

H_e := \begin{pmatrix} 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1 \\ 0 & 1 & 1 & 1 \\ 1 & 0 & 1 & 1 \\ 1 & 1 & 0 & 1 \\ \end{pmatrix}

Firstly the data bits are inserted into their appropriate positions and the parity bits calculated in each case using even parity.

Calculation of Hamming code parity bits
p1p2d1p3d2d3d4p4d5d6d7
Data word (without parity): 0 110 101
p1 1 0 1 0 1 1
p2 00 10 01
p3 0110
p4 0101
Data word (with parity): 10001100101

The new data word (with parity bits) is now "10001100101". We now assume the final bit gets corrupted and turned from 1 to 0. Our new data word is "10001100100"; and this time when we analyse how the Hamming codes were created we flag each parity bit as 1 when the even parity check fails.

Personal tools