Clause (logic)
|
|
This article may be confusing or unclear to readers. Please help clarify the article; suggestions may be found on the talk page. (April 2010) |
In logic, a clause is a finite disjunction of literals.[1] Clauses are usually written as follows, where the symbols
are literals:
In some cases, clauses are written (or defined) as sets of literals, so that clause above would be written as
. That this set is to be interpreted as the disjunction of its elements is implied by the context. A clause can be empty; in this case, it is an empty set of literals. The empty clause is denoted by various symbols such as
,
, or
. The truth evaluation of an empty clause is always
.
In first-order logic, a clause is interpreted as the universal closure of the disjunction of literals.[citation needed] Formally, a first-order atom is a formula of the kind of
, where
is a predicate of arity
and each
is an arbitrary term, possibly containing variables. A first-order literal is either an atom
or a negated atom
. If
are literals, and
are their (free) variables, then
is a clause, implicitly read as the closed first-order formula
. The usual definition of satisfiability assumes free variables to be existentially quantified, so the omission of a quantifier is to be taken as a convention and not as a consequence of how the semantics deal with free variables.
In logic programming, clauses are usually written as the implication of a head from a body. In the simplest case, the body is a conjunction of literals while the head is a single literal. More generally, the head may be a disjunction of literals. If
are the literals in the body of a clause and
are those of its head, the clause is usually written as follows:
- If m=0 and n=1, the clause is called a (Prolog) fact.
- If m>0 and n=1, the clause is called a (Prolog) rule.
- If m>0 and n=0, the clause is called a (Prolog) query.
- If n>1, the clause is no longer Horn.
In computer programming, a clause is a series of statements executed upon the evaluation of a conditional expression. A condition may not always be explicitly applied to a clause; these are usually called non-conditional, main, or functional clauses. A clause may also be referenced by the structure of the conditional expression, for example I am inserting a case-clause where $type is equal to 'auto'. Modifications are necessary to the if-then clause where the ninth subscript of $array ($array[9]) is equal to 'Sam'.
[edit] See also
[edit] References
- ^ Chang, Chin-Liang; Richard Char-Tung Lee (1973). Symbolic Logic and Mechanical Theorem Proving. Academic Press. p. 48. ISBN 0121703509.
[edit] External links
| This computer science article is a stub. You can help Wikipedia by expanding it. |

