Pairing function

From HandWiki
Short description: Function uniquely mapping two numbers into a single number


In mathematics, a pairing function is a process to uniquely encode two natural numbers into a single natural number.

Any pairing function can be used in set theory to prove that integers and rational numbers have the same cardinality as natural numbers.[1]

Definition

A pairing function is a bijection

π:×.[2][3][4]

Generalization

More generally, a pairing function on a set A is a function that maps each pair of elements from A into an element of A, such that any two pairs of elements of A are associated with different elements of A,[5][lower-alpha 1] or a bijection from A2 to A.[6]

Instead of abstracting from the domain, the arity of the pairing function can also be generalized: there exists an n-ary generalized Cantor pairing function on .[3]

Cantor pairing function

A plot of the Cantor pairing function
The Cantor pairing function assigns one natural number to each pair of natural numbers
A graph of the Cantor pairing function
Graph of the Cantor pairing function

The Cantor pairing function is a primitive recursive pairing function

π:×

defined by

π(k1,k2):=12(k1+k2)(k1+k2+1)+k2

where k1,k2{0,1,2,3,}.[7][better source needed]

It can also be expressed as π(x,y):=x2+x+2xy+3y+y22.[5]


The statement that this is the only quadratic pairing function is known as the Fueter–Pólya theorem.[8] Whether this is the only polynomial pairing function is still an open question. When we apply the pairing function to k1 and k2 we often denote the resulting number as k1, k2.

π(n):n

for n>2 as

π(n)(k1,,kn1,kn):=π(π(n1)(k1,,kn1),kn)

with the base case defined above for a pair: π(2)(k1,k2):=π(k1,k2).[9]

Inverting the Cantor pairing function

Let z be an arbitrary natural number. We will show that there exist unique values x,y such that

z=π(x,y)=(x+y+1)(x+y)2+y

and hence that the function π(x, y) is invertible. It is helpful to define some intermediate values in the calculation:

w=x+y
t=12w(w+1)=w2+w2
z=t+y

where t is the triangle number of w. If we solve the quadratic equation

w2+w2t=0

for w as a function of t, we get

w=8t+112

which is a strictly increasing and continuous function when t is non-negative real. Since

tz=t+y<t+(w+1)=(w+1)2+(w+1)2

we get that

w8z+112<w+1

and thus

w=8z+112.

where ⌊ ⌋ is the floor function. So to calculate x and y from z, we do:

w=8z+112
t=w2+w2
y=zt
x=wy.

Since the Cantor pairing function is invertible, it must be one-to-one and onto.[5][additional citation(s) needed]

Examples

To calculate π(47, 32):

47 + 32 = 79,
79 + 1 = 80,
79 × 80 = 6320,
6320 ÷ 2 = 3160,
3160 + 32 = 3192,

so π(47, 32) = 3192.

To find x and y such that π(x, y) = 1432:

8 × 1432 = 11456,
11456 + 1 = 11457,
11457 = 107.037,
107.037 − 1 = 106.037,
106.037 ÷ 2 = 53.019,
⌊53.019⌋ = 53,

so w = 53;

53 + 1 = 54,
53 × 54 = 2862,
2862 ÷ 2 = 1431,

so t = 1431;

1432 − 1431 = 1,

so y = 1;

53 − 1 = 52,

so x = 52; thus π(52, 1) = 1432.

Derivation

A diagonally incrementing "snaking" function, from same principles as Cantor's pairing function, is often used to demonstrate the countability of the rational numbers.

The graphical shape of Cantor's pairing function, a diagonal progression, is a standard trick in working with infinite sequences and countability.[lower-alpha 2] The algebraic rules of this diagonal-shaped function can verify its validity for a range of polynomials, of which a quadratic will turn out to be the simplest, using the method of induction. Indeed, this same technique can also be followed to try and derive any number of other functions for any variety of schemes for enumerating the plane.

A pairing function can usually be defined inductively – that is, given the nth pair, what is the (n+1)th pair? The way Cantor's function progresses diagonally across the plane can be expressed as

π(x,y)+1=π(x1,y+1).

The function must also define what to do when it hits the boundaries of the 1st quadrant – Cantor's pairing function resets back to the x-axis to resume its diagonal progression one step further out, or algebraically:

π(0,k)+1=π(k+1,0).

Also we need to define the starting point, what will be the initial step in our induction method: π(0, 0) = 0.

Assume that there is a quadratic 2-dimensional polynomial that can fit these conditions (if there were not, one could just repeat by trying a higher-degree polynomial). The general form is then

π(x,y)=ax2+by2+cxy+dx+ey+f.

Plug in our initial and boundary conditions to get f = 0 and:

bk2+ek+1=a(k+1)2+d(k+1),

so we can match our k terms to get

b = a
d = 1-a
e = 1+a.

So every parameter can be written in terms of a except for c, and we have a final equation, our diagonal step, that will relate them:

π(x,y)+1=a(x2+y2)+cxy+(1a)x+(1+a)y+1=a((x1)2+(y+1)2)+c(x1)(y+1)+(1a)(x1)+(1+a)(y+1).

Expand and match terms again to get fixed values for a and c, and thus all parameters:

a = 1/2 = b = d
c = 1
e = 3/2
f = 0.

Therefore

π(x,y)=12(x2+y2)+xy+12x+32y=12(x+y)(x+y+1)+y,


Shifted Cantor pairing function

The following pairing function: i,j:=12(i+j2)(i+j1)+i, where i,j{1,2,3,}.[10] is the same as the Cantor pairing function, but shifted to exclude 0 (i.e., i=k2+1, j=k1+1, and i,j1=π(k2,k1)).[7] It was used in the popular computer textbook of Hopcroft and Ullman (1979).

Other pairing functions

The function P2(x,y):=2x(2y+1)1 is a pairing function.

In 1990, Regan proposed the first known pairing function that is computable in linear time and with constant space (as the previously known examples can only be computed in linear time if multiplication can be too, which is doubtful). In fact, both this pairing function and its inverse can be computed with finite-state transducers that run in real time.[clarification needed] In the same paper, the author proposed two more monotone pairing functions that can be computed online in linear time and with logarithmic space; the first can also be computed offline with zero space.[4][clarification needed]

In 2001, Pigeon proposed a pairing function based on bit-interleaving, defined recursively as:

i,jP={Tif i=j=0;i/2,j/2P:i0:j0otherwise,

where i0 and j0 are the least significant bits of i and j respectively.[11][better source needed]

In 2006, Szudzik proposed a "more elegant" pairing function defined by the expression:

ElegantPair[x,y]:={y2+xif x<y,x2+x+yif xy.

Which can be unpaired using the expression:

ElegantUnpair[z]:={{zz2,z}if zz2<z,{z,zz2z}if zz2z.

(Qualitatively, it assigns consecutive numbers to pairs along the edges of squares.) This pairing function orders SK combinator calculus expressions by depth.[5][clarification needed] This method is the application to of the idea, found in set theory textbooks,[12] used to establish κ2=κ for any infinite cardinal κ in ZFC. Define on κ×κ the binary relation

(α,β)(γ,δ) if either {(α,β)=(γ,δ),max(α,β)<max(γ,δ),max(α,β)=max(γ,δ) and α<γ, ormax(α,β)=max(γ,δ) and α=γ and β<δ.

is then shown to be a well-ordering such that every element has <κ predecessors, which implies that κ2=κ. It follows that (×,) is isomorphic to (,) and the pairing function above is nothing more than the enumeration of integer couples in increasing order.[lower-alpha 3]

Citations

Notes

  1. That is, an injection from A2A.
  2. The term "diagonal argument" is sometimes used to refer to this type of enumeration, but it is not directly related to Cantor's diagonal argument.[citation needed]
  3. See also Talk:Tarski's theorem about choice#Proof of the converse.

Footnotes

  1. Pigeon:

    "Pairing functions arise naturally in the demonstration that the cardinalities of the rationals

    and the nonnegative integers

    0

    are the same, i.e.,

    ||=|0|=0

    , originally due to Cantor."

  2. Pigeon.
  3. 3.0 3.1 Lisi 2007.
  4. 4.0 4.1 Regan 1992.
  5. 5.0 5.1 5.2 5.3 Szudzik 2006.
  6. Szudzik 2017.
  7. 7.0 7.1 Pigeon, Equation 8.
  8. (Stein 1999) cited in (Pigeon {{{2}}}).
  9. Pigeon, Equations 13-7.
  10. (Hopcroft Ullman) cited in (Pigeon {{{2}}}).
  11. Pigeon, Equation 12.
  12. See for instance (Jech 2006).

References

  • Steven Pigeon. "Pairing Function". http://mathworld.wolfram.com/PairingFunction.html. 
  • Lisi, Meri (2007). "Some Remarks on the Cantor Pairing Function". Le Matematiche LXII: 55–65. https://lematematiche.dmi.unict.it/index.php/lematematiche/article/view/14/13. 
  • Regan, Kenneth W. (December 1992). "Minimum-Complexity Pairing Functions" (in en). Journal of Computer and System Sciences 45 (3): 285–295. doi:10.1016/0022-0000(92)90027-G. ISSN 0022-0000. 
  • Szudzik, Matthew (2006). "An Elegant Pairing Function". http://szudzik.com/ElegantPairing.pdf. 
  • Szudzik, Matthew P. (1 June 2017). "The Rosenberg-Strong Pairing Function". arXiv:1706.04129 [cs.DM].
  • Jech, Thomas (2006). Set Theory. Springer Monographs in Mathematics (The Third Millennium ed.). Springer-Verlag. doi:10.1007/3-540-44761-X. ISBN 3-540-44085-2. 
  • Hopcroft, John E.; Ullman, Jeffrey D. (1979). Introduction to Automata Theory, Languages, and Computation (1st ed.). Addison-Wesley. ISBN 0-201-02988-X. 
  • Stein, Sherman K. (1999). Mathematics: The Man-Made Universe (3rd ed.). Dover. ISBN 9780486404509.