- Free variables and bound variables
In
mathematics , and in other disciplines involvingformal language s, includingmathematical logic andcomputer science , a free variable is anotation that specifies places in an expression where substitution may take place. The idea is related to a placeholder (asymbol that will later be replaced by someliteral string ), or awildcard character that stands for an unspecified symbol.The variable "x" becomes a bound variable, for example, when we write
:'For all "x", ("x" + 1)2 = "x"2 + 2"x" + 1.'
or
:'There exists "x" such that "x"2 = 2.'
In either of these propositions, it does not matter logically whether we use "x" or some other letter. However, it could be confusing to use the same letter again elsewhere in some compound
proposition . That is, free variables become bound, and then in a sense "retire" from further work supporting the formation of formulae.In
computer programming , a free variable is avariable referred to in a function that is not alocal variable or an argument of that function.The term "dummy variable" is also sometimes used for a bound variable (more often in general mathematics than in computer science), but that creates an ambiguity with the definition of dummy variables in regression analysis.
Examples
Before stating a precise definition of free variable and bound variable, we present some examples that perhaps make these two concepts clearer than the definition would:
In the expression
:
"n" is a free variable and "k" is a bound variable; consequently the value of this expression depends on the value of "n", but there is nothing called "k" on which it could depend.
In the expression
:
"y" is a free variable and "x" is a bound variable; consequently the value of this expression depends on the value of "y", but there is nothing called "x" on which it could depend.
In the expression
:
"x" is a free variable and "h" is a bound variable; consequently the value of this expression depends on the value of "x", but there is nothing called "h" on which it could depend.
In the expression
:
"z" is a free variable and "x" and "y" are bound variables; consequently the
logical value of this expression depends on the value of "z", but there is nothing called "x" or "y" on which it could depend.Variable-binding operators
The following
:
are variable-binding operators. Each of them binds the variable "x".
Formal explanation
Variable-binding mechanisms occur in different contexts in mathematics, logic and computer science but in all cases they are purely syntactic properties of expressions and variables in them. For this section we can summarize syntax by identifying an expression with a
tree whose leaf nodes are variables, constants, function constants or predicate constants and whose non-leaf nodes are logical operators. Variable-binding operators arelogical operator s that occur in almost every formal language. Indeed languages which do not have them are either extremely inexpressive or extremely difficult to use. A binding operator Q takes two arguments: a variable "v" and an expression "P", and when applied to its arguments produces a new expression Q("v", "P"). The meaning of binding operators is supplied by thesemantics of the language and does not concern us here.Variable binding relates three things: a variable "v", a location "a" for that variable in an expression and a non-leaf node "n" of the form Q("v", "P"). Note: we define a location in an expression as a leaf node in the syntax tree. Variable binding occurs when that location is below the node "n"To give an example from mathematics, consider an expression which defines a function
:
where t is an expression. t may contain some, all or none of the "x"1, ..., "x""n" and it may contain other variables. In this case we say that function definition binds the variables"x"1, ..., "x""n".
In the
lambda calculus , x is a bound variable in the term M = λ x . T, and a free variable of T. We say x is bound in M and free in T. If T contains a subterm λ x . U then x is rebound in this term. This nested, inner binding of x is said to "shadow" the outer binding. Occurrences of x in U are free occurrences of the new x.Variables bound at the top level of a program are technically free variables within the terms to which they are bound but are often treated specially because they can be compiled as fixed addresses. Similarly, an identifier bound to a recursive function is also technically a free variable within its own body but is treated specially.
A closed term is one containing no free variables.
ee also
*
closure (computer science)
*closure (mathematics)
*lambda lifting
*scope (programming)
*combinatory logic References
"A small part of this article was originally based on material from the Free On-line Dictionary of Computing and is used with permission under the GFDL. Most of what" now "appears here is the result of later editing."
Wikimedia Foundation. 2010.