Next: Predicate Logic: Semantics Up: Predicate Logic Previous: Review of Propositional

Predicate Logic: Syntax

The trouble with propositional logic is that it is not possible to write general statements in it, such as ``Alison eats everything that she likes''. We'd have to have lots of rules, for every different thing that Alison liked. Predicate logic makes such general statements possible.

Sentences in predicate calculus are built up from atomic sentences (not to be confused with Prolog atoms). Atomic sentences consist of a predicate name followed by a number of arguments. These arguments may be any term. Terms may be:

Constant symbols
such as ``alison''.
Variable symbols
such as ``X''. For consistency with Prolog we'll use capital letters to denote variables.
Function expressions
such as ``father(alison)''. Function expressions consist of a functor followed by a number of arguments, which can be arbitrary terms.

This should all seem familiar from our description of Prolog syntax. However, although Prolog is based on predicate logic the way we represent things is slightly different, so the two should not be confused.

So, atomic sentences in predicate logic include the following:

Sentences in predicate logic are constructed (much as in propositional logic) by combining atomic sentences with logical connectives, so the following are all sentences in predicate calculus:

Sentences can also be formed using quantifiers to indicate how any variables in the sentence are to be treated. The two quantifiers in predicate logic are and , so the following are valid sentences:

A sentence should have all its variables quantified. So strictly, an expression like `` X loves(X, Y)'', though a well formed formula of predicate logic, is not a sentence. Formulae with all their variables quantified are also called closed formulae.



Next: Predicate Logic: Semantics Up: Predicate Logic Previous: Review of Propositional


alison@
Fri Aug 19 10:42:17 BST 1994