Arity
In logic, mathematics, and computer science, arity (/ˈærɪti/ ) is the number of arguments or operands taken by a function, operation or relation. In mathematics, arity may also be called rank,[1][2] but this word can have many other meanings. In logic and philosophy, arity may also be called adicity and degree.[3][4] In linguistics, it is usually named valency.[5]
Examples
In general, functions or operators with a given arity follow the naming conventions of n-based
- A nullary function takes no arguments.
- Example:
- A unary function takes one argument.
- Example:
- A binary function takes two arguments.
- Example:
- A ternary function takes three arguments.
- Example:
- An n-ary function takes n arguments.
- Example:
Nullary
A constant can be treated as the output of an operation of arity 0, called a nullary operation.
Also, outside of functional programming, a function without arguments can be meaningful and not necessarily constant (due to side effects). Such functions may have some hidden input, such as global variables or the whole state of the system (time, free memory, etc.).
Unary
Examples of
All functions in
According to Quine, the Latin distributives being singuli, bini, terni, and so forth, the term "singulary" is the correct adjective, rather than "unary".[6] Abraham Robinson follows Quine's usage.[7]
In philosophy, the adjective monadic is sometimes used to describe a one-place relation such as 'is square-shaped' as opposed to a two-place relation such as 'is the sister of'.
Binary
Most operators encountered in programming and mathematics are of the
Ternary
The computer programming language C and its various descendants (including C++, C#, Java, Julia, Perl, and others) provide the ternary conditional operator ?:
. The first operand (the condition) is evaluated, and if it is true, the result of the entire expression is the value of the second operand, otherwise it is the value of the third operand.
The Python language has a ternary conditional expression, x if C else y
. In Elixir the equivalent would be, if(C, do: x, else: y)
.
The Forth language also contains a ternary operator, */
, which multiplies the first two (one-cell) numbers, dividing by the third, with the intermediate result being a double cell number. This is used when the intermediate result would overflow a single cell.
The Unix dc calculator has several ternary operators, such as |
, which will pop three values from the stack and efficiently compute with arbitrary precision.
Many (
MOV %AX, (%BX, %CX)
, which will load (MOV) into register AX the contents of a calculated memory location that is the sum (parenthesis) of the registers BX and CX.
n-ary
The arithmetic mean of n real numbers is an n-ary function:
Similarly, the geometric mean of n positive real numbers is an n-ary function: Note that a logarithm of the geometric mean is the arithmetic mean of the logarithms of its n arguments
From a mathematical point of view, a function of n arguments can always be considered as a function of a single argument that is an element of some
The same is true for programming languages, where functions taking several arguments could always be defined as functions taking a single argument of some composite type such as a tuple, or in languages with higher-order functions, by currying.
Varying arity
In computer science, a function that accepts a variable number of arguments is called
Terminology
n-ary | Arity (Latin based) | Adicity (Greek based) | Example in mathematics | Example in computer science |
---|---|---|---|---|
0-ary | nullary (from nūllus) | niladic | a constant | a function without arguments, False
|
1-ary | unary | monadic | additive inverse | logical NOT operator
|
2-ary | binary | dyadic | addition | logical AND operators
|
3-ary | ternary | triadic | triple product of vectors | conditional operator |
4-ary | quaternary | tetradic | ||
5-ary | quinary | pentadic | ||
6-ary | senary | hexadic | ||
7-ary | septenary | hebdomadic | ||
8-ary | octonary | ogdoadic | ||
9-ary | novenary (alt. nonary) | enneadic | ||
10-ary | denary (alt. decenary) | decadic | ||
more than 2-ary | multary and multiary | polyadic | ||
varying | variadic | sum; e.g., Σ | reduce
|
n-ary means having n operands (or parameters), but is often used as a synonym of "polyadic".
These words are often used to describe anything related to that number (e.g., undenary chess is a chess variant with an 11×11 board, or the Millenary Petition of 1603).
The arity of a relation (or predicate) is the dimension of the domain in the corresponding Cartesian product. (A function of arity n thus has arity n+1 considered as a relation.)
In
See also
- Logic of relatives
- Binary relation
- Ternary relation
- Theory of relations
- Signature (logic)
- Parameter
- p-adic number
- Cardinality
- Valency (linguistics)
- n-ary code
- n-ary group
- Function prototype – Declaration of a function's name and type signature but not body
- Type signature – Defines the inputs and outputs for a function, subroutine or method
- Univariate and multivariate
- Finitary
References
- ISBN 978-1-4020-0198-7.
- ISBN 978-0-12-622760-4.
- ISBN 978-0-415-21375-2.
- ISBN 978-0-19-536658-7.
- ISBN 978-1-405-15296-9.
- ^ Quine, W. V. O. (1940), Mathematical logic, Cambridge, Massachusetts: Harvard University Press, p. 13
- ^ Robinson, Abraham (1966), Non-standard Analysis, Amsterdam: North-Holland, p. 19
- .
External links
A monograph available free online:
- Burris, Stanley N., and H.P. Sankappanavar, H. P., 1981. A Course in Universal Algebra. Springer-Verlag. ISBN 3-540-90578-2. Especially pp. 22–24.