![Tuple](https://www.english.nina.az/wikipedia/image/aHR0cHM6Ly91cGxvYWQud2lraW1lZGlhLm9yZy93aWtpcGVkaWEvY29tbW9ucy90aHVtYi85Lzk5L1dpa3Rpb25hcnktbG9nby1lbi12Mi5zdmcvMTYwMHB4LVdpa3Rpb25hcnktbG9nby1lbi12Mi5zdmcucG5n.png )
In mathematics, a tuple is a finite sequence or ordered list of numbers or, more generally, mathematical objects, which are called the elements of the tuple. An n-tuple is a tuple of n elements, where n is a non-negative integer. There is only one 0-tuple, called the empty tuple. A 1-tuple and a 2-tuple are commonly called a singleton and an ordered pair, respectively. The term "infinite tuple" is occasionally used for "infinite sequences".
Tuples are usually written by listing the elements within parentheses "( )" and separated by commas; for example, (2, 7, 4, 1, 7) denotes a 5-tuple. Other types of brackets are sometimes used, although they may have a different meaning.
An n-tuple can be formally defined as the image of a function that has the set of the n first natural numbers as its domain. Tuples may be also defined from ordered pairs by a recurrence starting from ordered pairs; indeed, an n-tuple can be identified with the ordered pair of its (n − 1) first elements and its nth element.
In computer science, tuples come in many forms. Most typed functional programming languages implement tuples directly as product types, tightly associated with algebraic data types, pattern matching, and destructuring assignment. Many programming languages offer an alternative to tuples, known as record types, featuring unordered elements accessed by label. A few programming languages combine ordered tuple product types and unordered record types into a single construct, as in C structs and Haskell records. Relational databases may formally identify their rows (records) as tuples.
Tuples also occur in relational algebra; when programming the semantic web with the Resource Description Framework (RDF); in linguistics; and in philosophy.
Etymology
The term originated as an abstraction of the sequence: single, couple/double, triple, quadruple, quintuple, sextuple, septuple, octuple, ..., n‑tuple, ..., where the prefixes are taken from the Latin names of the numerals. The unique 0-tuple is called the null tuple or empty tuple. A 1‑tuple is called a single (or singleton), a 2‑tuple is called an ordered pair or couple, and a 3‑tuple is called a triple (or triplet). The number n can be any nonnegative integer. For example, a complex number can be represented as a 2‑tuple of reals, a quaternion can be represented as a 4‑tuple, an octonion can be represented as an 8‑tuple, and a sedenion can be represented as a 16‑tuple.
Although these uses treat ‑uple as the suffix, the original suffix was ‑ple as in "triple" (three-fold) or "decuple" (ten‑fold). This originates from medieval Latin plus (meaning "more") related to Greek ‑πλοῦς, which replaced the classical and late antique ‑plex (meaning "folded"), as in "duplex".
Properties
The general rule for the identity of two n-tuples is
Thus a tuple has properties that distinguish it from a set:
- A tuple may contain multiple instances of the same element, so
tuple; but set
.
- Tuple elements are ordered: tuple
, but set
.
- A tuple has a finite number of elements, while a set or a multiset may have an infinite number of elements.
Definitions
There are several definitions of tuples that give them the properties described in the previous section.
Tuples as functions
The -tuple may be identified as the empty function. For
the
-tuple
may be identified with the (surjective) function
with domain
and with codomain
that is defined at by
That is, is the function defined by
in which case the equality
necessarily holds.
- Tuples as sets of ordered pairs
Functions are commonly identified with their graphs, which is a certain set of ordered pairs. Indeed, many authors use graphs as the definition of a function. Using this definition of "function", the above function can be defined as:
Tuples as nested ordered pairs
Another way of modeling tuples in set theory is as nested ordered pairs. This approach assumes that the notion of ordered pair has already been defined.
- The 0-tuple (i.e. the empty tuple) is represented by the empty set
.
- An n-tuple, with n > 0, can be defined as an ordered pair of its first entry and an (n − 1)-tuple (which contains the remaining entries when n > 1):
This definition can be applied recursively to the (n − 1)-tuple:
Thus, for example:
A variant of this definition starts "peeling off" elements from the other end:
- The 0-tuple is the empty set
.
- For n > 0:
This definition can be applied recursively:
Thus, for example:
Tuples as nested sets
Using Kuratowski's representation for an ordered pair, the second definition above can be reformulated in terms of pure set theory:
- The 0-tuple (i.e. the empty tuple) is represented by the empty set
;
- Let
be an n-tuple
, and let
. Then,
. (The right arrow,
, could be read as "adjoined with".)
In this formulation:
n-tuples of m-sets
In discrete mathematics, especially combinatorics and finite probability theory, n-tuples arise in the context of various counting problems and are treated more informally as ordered lists of length n.n-tuples whose entries come from a set of m elements are also called arrangements with repetition, permutations of a multiset and, in some non-English literature, variations with repetition. The number of n-tuples of an m-set is mn. This follows from the combinatorial rule of product. If S is a finite set of cardinality m, this number is the cardinality of the n-fold Cartesian power S × S × ⋯ × S. Tuples are elements of this product set.
Type theory
In type theory, commonly used in programming languages, a tuple has a product type; this fixes not only the length, but also the underlying types of each component. Formally:
and the projections are term constructors:
The tuple with labeled elements used in the relational model has a record type. Both of these types can be defined as simple extensions of the simply typed lambda calculus.
The notion of a tuple in type theory and that in set theory are related in the following way: If we consider the natural model of a type theory, and use the Scott brackets to indicate the semantic interpretation, then the model consists of some sets (note: the use of italics here that distinguishes sets from types) such that:
and the interpretation of the basic terms is:
.
The n-tuple of type theory has the natural interpretation as an n-tuple of set theory:
The unit type has as semantic interpretation the 0-tuple.
See also
- Arity
- Coordinate vector
- Exponential object
- Formal language
- Multidimensional Expressions (OLAP)
- Prime k-tuple
- Relation (mathematics)
- Sequence
- Tuplespace
- Tuple Names
Notes
- Square brackets are used for matrices, including row vectors. Braces are used for sets. Each programming language has its own convention for the different brackets.
- Compare the etymology of ploidy, from the Greek for -fold.
References
- "Algebraic data type - HaskellWiki". wiki.haskell.org.
- "Destructuring assignment". MDN Web Docs. 18 April 2023.
- "Does JavaScript Guarantee Object Property Order?". Stack Overflow.
- Matthews, P. H., ed. (January 2007). "N-tuple". The Concise Oxford Dictionary of Linguistics. Oxford University Press. ISBN 9780199202720. Retrieved 1 May 2015.
- Blackburn, Simon (1994). "ordered n-tuple". The Oxford Dictionary of Philosophy. Oxford guidelines quick reference (3 ed.). Oxford: Oxford University Press (published 2016). p. 342. ISBN 9780198735304. Retrieved 2017-06-30.
ordered n-tuple[:] A generalization of the notion of an [...] ordered pair to sequences of n objects.
- OED, s.v. "triple", "quadruple", "quintuple", "decuple"
- D'Angelo & West 2000, p. 9
- D'Angelo & West 2000, p. 101
- Pierce, Benjamin (2002). Types and Programming Languages. MIT Press. pp. 126–132. ISBN 0-262-16209-1.
- Steve Awodey, From sets, to types, to categories, to sets, 2009, preprint
Sources
- D'Angelo, John P.; West, Douglas B. (2000), Mathematical Thinking/Problem-Solving and Proofs (2nd ed.), Prentice-Hall, ISBN 978-0-13-014412-6
- Keith Devlin, The Joy of Sets. Springer Verlag, 2nd ed., 1993, ISBN 0-387-94094-4, pp. 7–8
- Abraham Adolf Fraenkel, Yehoshua Bar-Hillel, Azriel Lévy, Foundations of school Set Theory, Elsevier Studies in Logic Vol. 67, 2nd Edition, revised, 1973, ISBN 0-7204-2270-1, p. 33
- Gaisi Takeuti, W. M. Zaring, Introduction to Axiomatic Set Theory, Springer GTM 1, 1971, ISBN 978-0-387-90024-7, p. 14
- George J. Tourlakis, Lecture Notes in Logic and Set Theory. Volume 2: Set Theory, Cambridge University Press, 2003, ISBN 978-0-521-75374-6, pp. 182–193
External links
The dictionary definition of tuple at Wiktionary
In mathematics a tuple is a finite sequence or ordered list of numbers or more generally mathematical objects which are called the elements of the tuple An n tuple is a tuple of n elements where n is a non negative integer There is only one 0 tuple called the empty tuple A 1 tuple and a 2 tuple are commonly called a singleton and an ordered pair respectively The term infinite tuple is occasionally used for infinite sequences Tuples are usually written by listing the elements within parentheses and separated by commas for example 2 7 4 1 7 denotes a 5 tuple Other types of brackets are sometimes used although they may have a different meaning An n tuple can be formally defined as the image of a function that has the set of the n first natural numbers as its domain Tuples may be also defined from ordered pairs by a recurrence starting from ordered pairs indeed an n tuple can be identified with the ordered pair of its n 1 first elements and its n th element In computer science tuples come in many forms Most typed functional programming languages implement tuples directly as product types tightly associated with algebraic data types pattern matching and destructuring assignment Many programming languages offer an alternative to tuples known as record types featuring unordered elements accessed by label A few programming languages combine ordered tuple product types and unordered record types into a single construct as in C structs and Haskell records Relational databases may formally identify their rows records as tuples Tuples also occur in relational algebra when programming the semantic web with the Resource Description Framework RDF in linguistics and in philosophy EtymologyThe term originated as an abstraction of the sequence single couple double triple quadruple quintuple sextuple septuple octuple n tuple where the prefixes are taken from the Latin names of the numerals The unique 0 tuple is called the null tuple or empty tuple A 1 tuple is called a single or singleton a 2 tuple is called an ordered pair or couple and a 3 tuple is called a triple or triplet The number n can be any nonnegative integer For example a complex number can be represented as a 2 tuple of reals a quaternion can be represented as a 4 tuple an octonion can be represented as an 8 tuple and a sedenion can be represented as a 16 tuple Although these uses treat uple as the suffix the original suffix was ple as in triple three fold or decuple ten fold This originates from medieval Latin plus meaning more related to Greek ploῦs which replaced the classical and late antique plex meaning folded as in duplex PropertiesThe general rule for the identity of two n tuples is a1 a2 an b1 b2 bn displaystyle a 1 a 2 ldots a n b 1 b 2 ldots b n if and only if a1 b1 a2 b2 an bn displaystyle a 1 b 1 text a 2 b 2 text ldots text a n b n Thus a tuple has properties that distinguish it from a set A tuple may contain multiple instances of the same element so tuple 1 2 2 3 1 2 3 displaystyle 1 2 2 3 neq 1 2 3 but set 1 2 2 3 1 2 3 displaystyle 1 2 2 3 1 2 3 Tuple elements are ordered tuple 1 2 3 3 2 1 displaystyle 1 2 3 neq 3 2 1 but set 1 2 3 3 2 1 displaystyle 1 2 3 3 2 1 A tuple has a finite number of elements while a set or a multiset may have an infinite number of elements DefinitionsThere are several definitions of tuples that give them the properties described in the previous section Tuples as functions The 0 displaystyle 0 tuple may be identified as the empty function For n 1 displaystyle n geq 1 the n displaystyle n tuple a1 an displaystyle left a 1 ldots a n right may be identified with the surjective function F 1 n a1 an displaystyle F left 1 ldots n right to left a 1 ldots a n right with domain domain F 1 n i N 1 i n displaystyle operatorname domain F left 1 ldots n right left i in mathbb N 1 leq i leq n right and with codomain codomain F a1 an displaystyle operatorname codomain F left a 1 ldots a n right that is defined at i domain F 1 n displaystyle i in operatorname domain F left 1 ldots n right by F i ai displaystyle F i a i That is F displaystyle F is the function defined by 1 a1 n an displaystyle begin alignedat 3 1 amp mapsto amp amp a 1 amp vdots amp amp n amp mapsto amp amp a n end alignedat in which case the equality a1 a2 an F 1 F 2 F n displaystyle left a 1 a 2 dots a n right left F 1 F 2 dots F n right necessarily holds Tuples as sets of ordered pairs Functions are commonly identified with their graphs which is a certain set of ordered pairs Indeed many authors use graphs as the definition of a function Using this definition of function the above function F displaystyle F can be defined as F 1 a1 n an displaystyle F left left 1 a 1 right ldots left n a n right right Tuples as nested ordered pairs Another way of modeling tuples in set theory is as nested ordered pairs This approach assumes that the notion of ordered pair has already been defined The 0 tuple i e the empty tuple is represented by the empty set displaystyle emptyset An n tuple with n gt 0 can be defined as an ordered pair of its first entry and an n 1 tuple which contains the remaining entries when n gt 1 a1 a2 a3 an a1 a2 a3 an displaystyle a 1 a 2 a 3 ldots a n a 1 a 2 a 3 ldots a n This definition can be applied recursively to the n 1 tuple a1 a2 a3 an a1 a2 a3 an displaystyle a 1 a 2 a 3 ldots a n a 1 a 2 a 3 ldots a n emptyset ldots Thus for example 1 2 3 1 2 3 1 2 3 4 1 2 3 4 displaystyle begin aligned 1 2 3 amp 1 2 3 emptyset 1 2 3 4 amp 1 2 3 4 emptyset end aligned A variant of this definition starts peeling off elements from the other end The 0 tuple is the empty set displaystyle emptyset For n gt 0 a1 a2 a3 an a1 a2 a3 an 1 an displaystyle a 1 a 2 a 3 ldots a n a 1 a 2 a 3 ldots a n 1 a n This definition can be applied recursively a1 a2 a3 an a1 a2 a3 an displaystyle a 1 a 2 a 3 ldots a n ldots emptyset a 1 a 2 a 3 ldots a n Thus for example 1 2 3 1 2 3 1 2 3 4 1 2 3 4 displaystyle begin aligned 1 2 3 amp emptyset 1 2 3 1 2 3 4 amp emptyset 1 2 3 4 end aligned Tuples as nested sets Using Kuratowski s representation for an ordered pair the second definition above can be reformulated in terms of pure set theory The 0 tuple i e the empty tuple is represented by the empty set displaystyle emptyset Let x displaystyle x be an n tuple a1 a2 an displaystyle a 1 a 2 ldots a n and let x b a1 a2 an b displaystyle x rightarrow b equiv a 1 a 2 ldots a n b Then x b x x b displaystyle x rightarrow b equiv x x b The right arrow displaystyle rightarrow could be read as adjoined with In this formulation 1 1 1 1 1 2 1 2 1 1 2 1 1 2 1 2 3 1 2 3 1 2 1 2 3 1 1 2 1 1 2 3 displaystyle begin array lclcl amp amp amp amp emptyset amp amp amp amp 1 amp amp rightarrow 1 amp amp 1 amp amp amp amp emptyset emptyset 1 amp amp amp amp 1 2 amp amp 1 rightarrow 2 amp amp 1 1 2 amp amp amp amp emptyset emptyset 1 amp amp amp amp emptyset emptyset 1 2 amp amp amp amp 1 2 3 amp amp 1 2 rightarrow 3 amp amp 1 2 1 2 3 amp amp amp amp emptyset emptyset 1 amp amp amp amp emptyset emptyset 1 2 amp amp amp amp emptyset emptyset 1 amp amp amp amp emptyset emptyset 1 2 3 end array n tuples of m setsIn discrete mathematics especially combinatorics and finite probability theory n tuples arise in the context of various counting problems and are treated more informally as ordered lists of length n n tuples whose entries come from a set of m elements are also called arrangements with repetition permutations of a multiset and in some non English literature variations with repetition The number of n tuples of an m set is mn This follows from the combinatorial rule of product If S is a finite set of cardinality m this number is the cardinality of the n fold Cartesian power S S S Tuples are elements of this product set Type theoryIn type theory commonly used in programming languages a tuple has a product type this fixes not only the length but also the underlying types of each component Formally x1 x2 xn T1 T2 Tn displaystyle x 1 x 2 ldots x n mathsf T 1 times mathsf T 2 times ldots times mathsf T n and the projections are term constructors p1 x T1 p2 x T2 pn x Tn displaystyle pi 1 x mathsf T 1 pi 2 x mathsf T 2 ldots pi n x mathsf T n The tuple with labeled elements used in the relational model has a record type Both of these types can be defined as simple extensions of the simply typed lambda calculus The notion of a tuple in type theory and that in set theory are related in the following way If we consider the natural model of a type theory and use the Scott brackets to indicate the semantic interpretation then the model consists of some sets S1 S2 Sn displaystyle S 1 S 2 ldots S n note the use of italics here that distinguishes sets from types such that T1 S1 T2 S2 Tn Sn displaystyle mathsf T 1 S 1 mathsf T 2 S 2 ldots mathsf T n S n and the interpretation of the basic terms is x1 T1 x2 T2 xn Tn displaystyle x 1 in mathsf T 1 x 2 in mathsf T 2 ldots x n in mathsf T n The n tuple of type theory has the natural interpretation as an n tuple of set theory x1 x2 xn x1 x2 xn displaystyle x 1 x 2 ldots x n x 1 x 2 ldots x n The unit type has as semantic interpretation the 0 tuple See alsoArity Coordinate vector Exponential object Formal language Multidimensional Expressions OLAP Prime k tuple Relation mathematics Sequence Tuplespace Tuple NamesNotesSquare brackets are used for matrices including row vectors Braces are used for sets Each programming language has its own convention for the different brackets Compare the etymology of ploidy from the Greek for fold References Algebraic data type HaskellWiki wiki haskell org Destructuring assignment MDN Web Docs 18 April 2023 Does JavaScript Guarantee Object Property Order Stack Overflow Matthews P H ed January 2007 N tuple The Concise Oxford Dictionary of Linguistics Oxford University Press ISBN 9780199202720 Retrieved 1 May 2015 Blackburn Simon 1994 ordered n tuple The Oxford Dictionary of Philosophy Oxford guidelines quick reference 3 ed Oxford Oxford University Press published 2016 p 342 ISBN 9780198735304 Retrieved 2017 06 30 ordered n tuple A generalization of the notion of an ordered pair to sequences of n objects OED s v triple quadruple quintuple decuple D Angelo amp West 2000 p 9 D Angelo amp West 2000 p 101 Pierce Benjamin 2002 Types and Programming Languages MIT Press pp 126 132 ISBN 0 262 16209 1 Steve Awodey From sets to types to categories to sets 2009 preprintSourcesD Angelo John P West Douglas B 2000 Mathematical Thinking Problem Solving and Proofs 2nd ed Prentice Hall ISBN 978 0 13 014412 6 Keith Devlin The Joy of Sets Springer Verlag 2nd ed 1993 ISBN 0 387 94094 4 pp 7 8 Abraham Adolf Fraenkel Yehoshua Bar Hillel Azriel Levy Foundations of school Set Theory Elsevier Studies in Logic Vol 67 2nd Edition revised 1973 ISBN 0 7204 2270 1 p 33 Gaisi Takeuti W M Zaring Introduction to Axiomatic Set Theory Springer GTM 1 1971 ISBN 978 0 387 90024 7 p 14 George J Tourlakis Lecture Notes in Logic and Set Theory Volume 2 Set Theory Cambridge University Press 2003 ISBN 978 0 521 75374 6 pp 182 193External linksThe dictionary definition of tuple at Wiktionary