词条 | Tuple | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
释义 |
In mathematics, a tuple is a finite ordered list (sequence) of elements. An {{math|n}}-tuple is a sequence (or ordered list) of {{math|n}} elements, where {{math|n}} is a non-negative integer. There is only one 0-tuple, an empty sequence, or empty tuple, as it is referred to. An {{math|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 as C++ and Java, but not in mathematical expressions, as they are the standard notation for sets. The term tuple can often occur when discussing other mathematical objects, such as vectors. In computer science, tuples come in many forms. In dynamically typed languages, such as Lisp, lists are commonly used as tuples.{{citation needed|date =May 2017}} Most typed functional programming languages implement tuples directly as product types,[1] tightly associated with algebraic data types, pattern matching, and destructuring assignment.[2] Many programming languages offer an alternative to tuples, known as record types, featuring unordered elements accessed by label.[3] 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;[4] and in philosophy.[5] EtymologyThe term originated as an abstraction of the sequence: single, double, triple, quadruple, quintuple, sextuple, septuple, octuple, ..., {{math|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 {{math|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".[6]{{efn|Compare the etymology of ploidy, from the Greek for -fold.}} Names for tuples of specific lengths{{cot|Table of names and variants for specific lengths}}
PropertiesThe general rule for the identity of two {{math|n}}-tuples is if and only if Thus a tuple has properties that distinguish it from a set.
DefinitionsThere are several definitions of tuples that give them the properties described in the previous section. Tuples as functionsIf we are dealing with sets, an {{math|n}}-tuple can be regarded as a function, {{math|F}}, whose domain is the tuple's implicit set of element indices, {{math|X}}, and whose codomain, {{math|Y}}, is the tuple's set of elements. Formally: where: In slightly less formal notation this says: Tuples as nested ordered pairsAnother 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 {{math|(n − 1)}}-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: Tuples as nested setsUsing Kuratowski's representation for an ordered pair, the second definition above can be reformulated in terms of pure set theory:
In this formulation: {{anchor|n-tuple}}{{math|n}}-tuples of {{math|m}}-setsIn discrete mathematics, especially combinatorics and finite probability theory, {{math|n}}-tuples arise in the context of various counting problems and are treated more informally as ordered lists of length {{math|n}}.[7] {{math|n}}-tuples whose entries come from a set of {{math|m}} elements are also called arrangements with repetition, permutations of a multiset and, in some non-English literature, variations with repetition. The number of {{math|n}}-tuples of an {{math|m}}-set is {{math|mn}}. This follows from the combinatorial rule of product.[8] If {{math|S}} is a finite set of cardinality {{math|m}}, this number is the cardinality of the {{math|n}}-fold Cartesian power {{math|S × S × ... S}}. Tuples are elements of this product set. Type theory{{main|Product type}}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.[9] 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 {{math|n}}-tuple of type theory has the natural interpretation as an {{math|n}}-tuple of set theory:[10] The unit type has as semantic interpretation the 0-tuple. See also
Notes{{notelist}}References1. ^{{cite web|url=https://wiki.haskell.org/Algebraic_data_type|title=Algebraic data type - HaskellWiki|author=|date=|website=wiki.haskell.org}} 2. ^{{cite web|url=https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment|title=Destructuring assignment|author=|date=|website=MDN Web Docs}} 3. ^{{cite web|url=http://stackoverflow.com/questions/5525795/does-javascript-guarantee-object-property-order|title=Does JavaScript Guarantee Object Property Order?|author=|date=|website=Stack Overflow}} 4. ^{{cite web|url= http://www.oxfordreference.com/view/10.1093/acref/9780199202720.001.0001/acref-9780199202720-e-2276|title= N‐tuple - Oxford Reference|work= oxfordreference.com|accessdate= 1 May 2015}} 5. ^{{cite book| last1 = Blackburn| first1 = Simon| author-link1 = Simon Blackburn| orig-year = 1994| chapter = ordered n-tuple| title = The Oxford Dictionary of Philosophy| url = https://books.google.com/books?id=Mno8CwAAQBAJ| edition = 3| location = Oxford| publisher = Oxford University Press| publication-date = 2016| page = 342| series = Oxford quick reference| isbn = 9780198735304| access-date = 2017-06-30| quote = ordered n-tuple[:] A generalization of the notion of an [...] ordered pair to sequences of n objects.}} 6. ^OED, s.v. "triple", "quadruple", "quintuple", "decuple" 7. ^{{harvnb|D'Angelo|West|2000|p=9}} 8. ^{{harvnb|D'Angelo|West|2000|p=101}} 9. ^{{cite book|last=Pierce|first=Benjamin|title=Types and Programming Languages|publisher=MIT Press|year=2002|isbn=0-262-16209-1|pages=126–132}} 10. ^Steve Awodey, From sets, to types, to categories, to sets, 2009, preprint Sources
External links
5 : Data management|Mathematical notation|Sequences and series|Basic concepts in set theory|Type theory |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
随便看 |
|
开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。