A 2-Tuple is a Tuple with 2 Members.
References
- http://www.isi.edu/~hobbs/bgt-sequences.text
- The distinguishing feature of ordered pairs, or simply "pairs", is that they have a first and a second element.
(1)
(forall (p)
(if (pair p)
(exists (x y) (and (first x p)(second y p)))))
- We could define pairs in the traditional way in set theoretic terms. The pair <x,y> is defined as the set {x, {y}}. This is certainly a model of the axioms involving "pair", but it would be pedantic to call this the definition.