Everipedia Logo
Everipedia is now IQ.wiki - Join the IQ Brainlist and our Discord for early access to editing on the new platform and to participate in the beta testing.
Tuple

Tuple

In mathematics, a tuple is a finite ordered list (sequence) of elements. An n is a sequence (or ordered list) of n elements, where n is a non-negative integer. There is only one 0-tuple, an empty sequence, or empty tuple, as it is referred to. An n-tuple is defined inductively using the construction of an ordered pair.

Mathematicians usually write 'tuples' by listing the elements within parentheses "" and separated by commas; for example,denotes a 5-tuple. Sometimes other symbols are used to surround the elements, such as square brackets "[ ]" or angle brackets "⟨ ⟩". Braces "{ }" are only used in defining arrays in some programming languages such asC++andJava, but not in mathematical expressions, as they are the standard notation forsets. The term tuple can often occur when discussing other mathematical objects, such asvectors.

In computer science, tuples come in many forms. In dynamically typed languages, such as Lisp, lists are commonly used as tuples. Most typed functional programming languages implement tuples directly as product types,[2] tightly associated with algebraic data types, pattern matching, and destructuring assignment.[3] Many programming languages offer an alternative to tuples, known as record types, featuring unordered elements accessed by label.[4] 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;[5] and in philosophy.[6]

Etymology

The term originated as an abstraction of the sequence: single, 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. A 1‑tuple is called a 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 ‑tuple 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".[7][1]

Names for tuples of specific lengths

Properties

The general rule for the identity of two n-tuples is

Thus a tuple has properties that distinguish it from a set.

  1. A tuple may contain multiple instances of the same element, so tuple ; but set .

  2. Tuple elements are ordered: tuple , but set .

  3. 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

If we are dealing with sets, an n-tuple can be regarded as a function, F, whose domain is the tuple's implicit set of element indices, X, and whose codomain, Y, is the tuple's set of elements. Formally:

where:

In slightly less formal notation this says:

Using this definition of-tuples, it follows that there is only one-tuple, theempty function.

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; thus a 2-tuple

  1. The 0-tuple (i.e. the empty tuple) is represented by the empty set .

  2. 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:

  1. The 0-tuple is the empty set .

  2. 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:

  1. The 0-tuple (i.e. the empty tuple) is represented by the empty set ;

  2. 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.[8] 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 m**n. This follows from the combinatorial rule of product.[9] 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.[10]

The notion of a tuple in type theory and that in set theory are related in the following way: If we consider the naturalmodelof 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:[11]

The unit type has as semantic interpretation the 0-tuple.

See also

  • Arity

  • Exponential object

  • Formal language

  • OLAP: Multidimensional Expressions

  • Prime k-tuple

  • Relation (mathematics)

  • Tuplespace

References

[1]
Citation Linkopenlibrary.orgCompare the etymology of ploidy, from the Greek for -fold.
Sep 29, 2019, 7:07 AM
[2]
Citation Linkwiki.haskell.org"Algebraic data type - HaskellWiki". wiki.haskell.org.
Sep 29, 2019, 7:07 AM
[3]
Citation Linkdeveloper.mozilla.org"Destructuring assignment". MDN Web Docs.
Sep 29, 2019, 7:07 AM
[4]
Citation Linkstackoverflow.com"Does JavaScript Guarantee Object Property Order?". Stack Overflow.
Sep 29, 2019, 7:07 AM
[5]
Citation Linkwww.oxfordreference.com"N‐tuple - Oxford Reference". oxfordreference.com. Retrieved 1 May 2015.
Sep 29, 2019, 7:07 AM
[6]
Citation Linkbooks.google.comBlackburn, Simon (2016) [1994]. "ordered n-tuple". The Oxford Dictionary of Philosophy. Oxford quick reference (3 ed.). Oxford: Oxford University Press. 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.
Sep 29, 2019, 7:07 AM
[7]
Citation Linkopenlibrary.orgOED, s.v. "triple", "quadruple", "quintuple", "decuple"
Sep 29, 2019, 7:07 AM
[8]
Citation Linkopenlibrary.orgD'Angelo, John P.; West, Douglas B. (2000), Mathematical Thinking/Problem-Solving and Proofs (2nd ed.), Prentice-Hall, ISBN 978-0-13-014412-6, p. 9
Sep 29, 2019, 7:07 AM
[9]
Citation Linkopenlibrary.org, p. 101
Sep 29, 2019, 7:07 AM
[10]
Citation Linkopenlibrary.orgPierce, Benjamin (2002). Types and Programming Languages. MIT Press. pp. 126–132. ISBN 0-262-16209-1.
Sep 29, 2019, 7:07 AM
[11]
Citation Linkwww.andrew.cmu.eduSteve Awodey, From sets, to types, to categories, to sets, 2009, preprint
Sep 29, 2019, 7:07 AM
[12]
Citation Linkbooks.google.comFoundations of school Set Theory
Sep 29, 2019, 7:07 AM
[13]
Citation Linkbooks.google.comLecture Notes in Logic and Set Theory. Volume 2: Set Theory
Sep 29, 2019, 7:07 AM
[14]
Citation Linkwiki.haskell.org"Algebraic data type - HaskellWiki"
Sep 29, 2019, 7:07 AM
[15]
Citation Linkdeveloper.mozilla.org"Destructuring assignment"
Sep 29, 2019, 7:07 AM
[16]
Citation Linkstackoverflow.com"Does JavaScript Guarantee Object Property Order?"
Sep 29, 2019, 7:07 AM
[17]
Citation Linkwww.oxfordreference.com"N‐tuple - Oxford Reference"
Sep 29, 2019, 7:07 AM
[18]
Citation Linkbooks.google.comThe Oxford Dictionary of Philosophy
Sep 29, 2019, 7:07 AM
[19]
Citation Linkwww.andrew.cmu.eduFrom sets, to types, to categories, to sets
Sep 29, 2019, 7:07 AM
[20]
Citation Linkbooks.google.comFoundations of school Set Theory
Sep 29, 2019, 7:07 AM