出典(authority):フリー百科事典『ウィキペディア(Wikipedia)』「2015/01/02 09:07:59」(JST)
A tuple is an ordered list of elements. In mathematics, an n-tuple is a sequence (or ordered list) of elements, where is a non-negative integer. There is only one 0-tuple, an empty sequence. An -tuple is defined inductively using the construction of an ordered pair. Tuples are usually written by listing the elements within parentheses "" and separated by commas; for example, denotes a 5-tuple. Sometimes other delimiters are used, such as square brackets "" or angle brackets "". Braces "" are almost never used for tuples, as they are the standard notation for sets. Tuples are often used to describe other mathematical objects, such as vectors. In computer science, tuples are directly implemented as product types in most functional programming languages. More commonly, they are implemented as record types, where the components are labeled instead of being identified by position alone. This approach is also used in relational algebra. Tuples are also used in relation to programming the semantic web with Resource Description Framework or RDF. Tuples are also used in linguistics[1] and philosophy.[2]
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 and a 3‑tuple is a triple or triplet. n can be any nonnegative integer. For example, a complex number can be represented as a 2‑tuple, 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 a medieval Latin suffix ‑plus (meaning "more") related to Greek ‑πλοῦς, which replaced the classical and late antique ‑plex (meaning "folded"), as in "duplex".[3]
Tuple Length | Name | Alternative names |
---|---|---|
0 | empty tuple | unit |
1 | single | singleton |
2 | double | couple / pair / dual / twin |
3 | triple | treble / triplet |
4 | quadruple | quad |
5 | quintuple | |
6 | sextuple | hextuple |
7 | septuple | |
8 | octuple | |
9 | nonuple | |
10 | decuple | |
11 | undecuple | hendecuple |
12 | duodecuple | |
13 | tredecuple | |
100 | centuple |
The general rule for the identity of two -tuples is
Thus a tuple has properties that distinguish it from a set.
There are several definitions of tuples that give them the properties described in the previous section.
If we are dealing with sets, an -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:
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
This definition can be applied recursively to the -tuple:
Thus, for example:
A variant of this definition starts "peeling off" elements from the other end:
This definition can be applied recursively:
Thus, for example:
Using Kuratowski's representation for an ordered pair, the second definition above can be reformulated in terms of pure set theory:
In this formulation:
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.[4] 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.[5] 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.
In database theory, the relational model uses a tuple definition similar to tuples as functions, but each tuple element is identified by a distinct name, called an attribute, instead of a number; this leads to a more user-friendly and practical notation.[6] A tuple in the relational model is formally defined as a finite function that maps attributes to values. For example:
In this notation, attribute–value pairs may appear in any order. The distinction between tuples in the relational model and those in set theory is only superficial; the above example can be interpreted as a 2-tuple if an arbitrary total order is imposed on the attributes (e.g. ) and then the elements are distinguished by this ordering rather than by the attributes themselves. Conversely, a 2-tuple may be interpreted as relational model tuple over the attributes .[6]
In the relational model, a relation is a (possibly empty) finite set of tuples all having the same finite set of attributes. This set of attributes is more formally called the sort of the relation, or more casually referred to as the set of column names.[6] A tuple is usually implemented as a row in a database table, but see relational algebra for means of deriving tuples not physically represented in a table.
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.[7]
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 -tuple of type theory has the natural interpretation as an -tuple of set theory:[8]
The unit type has as semantic interpretation the 0-tuple.
Look up tuple in Wiktionary, the free dictionary. |
|
全文を閲覧するには購読必要です。 To read the full text you will need to subscribe.
.