Hamming metric
Let
x | =(x1,x2,x3,…,xn), | ||
y | =(y1,y2,y3,…,yn) |
be bit patterns, that is, vectors consisting of zeros and ones.
The Hamming distance dH(u,v) defined as
n∑j=1|xi-yi| |
is equal to the number of positions where the bit patterns are differents.
For instance, if u=(0,1,1,0,1,0,1) and v=(1,0,1,0,1,0,1) then
dH(u,v)=|0-1|+|1-0|+|1-1|+|0-0|+|1-1|+|0-0|+|1-1|=3 |
because u and v have different bits at three positions.
The Hamming distance holds the properties of a metric (otherwise it would not be truly a distance):
-
•
dH(x,y)≥0 for any x,y.
-
•
dH(x,y)=0 if and only if x=y.
-
•
dH(x,y)=dH(y,x) for any x,y.
-
•
dH(x,y)≤dH(x,z)+dH(z,y) for any x,y,z.
If we realize that dH is counting something (positions where bits differ), then it’s clear that dH can never be negative. Also, dH(x,x)=0 because a bit pattern has no different bits respect to itself, and if two bit patterns coincide on each position, they are indeed the same pattern, which proves the second property. The third condition also follows from the trivial fact that if x differs at some position from y, then y differs at the sae position from x.
We are left to prove the last condition (trangle inequality). If
x | =(x1,x2,x3,…,xn) | ||
y | =(y1,y2,y3,…,yn) | ||
z | =(z1,z2,z3,…,zn) |
then dH(x,y) counts at how many places does x differ from y. For instance, suppose that x3≠y3. This means that the third bits are different, which adds 1 to the whole sum dH(x,y).
Now, if x3≠y3 it cannot happen that x3=z3 and z3=y3 at the same , so we have that x3≠z3 or z3≠y3. In either case, the sum dH(x,z)+dH(z,y) also increases by one.
So, for each mismatch that increases dH(x,y) by one, dH(x,z)+dH(z,y) also increases by one. We conclude that
dH(x,y)≤dH(x,z)+dH(z,y). |
Title | Hamming metric |
---|---|
Canonical name | HammingMetric |
Date of creation | 2013-03-22 14:59:37 |
Last modified on | 2013-03-22 14:59:37 |
Owner | drini (3) |
Last modified by | drini (3) |
Numerical id | 7 |
Author | drini (3) |
Entry type | Definition |
Classification | msc 05C12 |
Classification | msc 94C99 |
Synonym | Hamming distance |
Synonym | Hamming metric |
Related topic | HammingDistance |