Uninterpreted function


In mathematical logic, an uninterpreted function or function symbol is one that has no other property than its name and n-ary form. Function symbols are used, together with constants and variables, to form terms.
The theory of uninterpreted functions is also sometimes called the free theory, because it is freely generated, and thus a free object, or the empty theory, being the theory having an empty set of sentences. Theories with a non-empty set of equations are known as equational theories. The satisfiability problem for free theories is solved by syntactic unification; algorithms for the latter are used by interpreters for various computer languages, such as Prolog. Syntactic unification is also used in algorithms for the satisfiability problem for certain other equational theories, see E-Unification and Narrowing.

Example

An example of uninterpreted functions in SMT-LIB, an input standard for SMT Solvers:


This is satisfiable: f is an uninterpreted function. All that is known about f is its signature, so it is possible that f = 1.



This is unsatisfiable: although f has no interpretation, it is impossible that it returns different values for the same input.

Discussion

The decision problem for free theories is particularly important, as many theories can be reduced to it.
Free theories can be solved by searching for common subexpressions to form the congruence closure. Solvers include satisfiability modulo theories solvers.