foundations of computational agents
The third edition of Artificial Intelligence: foundations of computational agents, Cambridge University Press, 2023 is now available (including full text).
We require a representation of the base-level expressions that can be manipulated by the interpreter to produce answers. Initially, the base language will also be the language of definite clauses. Recall that the definite clause language is made up of terms, atoms, bodies, and clauses.
The metalanguage refers to these syntactic elements of the base language. Meta-level symbols will denote base-level terms, atoms, and clauses. Base-level terms will denote objects in the domain being modeled, and base-level predicates will denote relations in the domain.
When writing a logic programming meta-interpreter, there is a choice of how to represent variables. In the non-ground representation, base-level terms are represented as the same term in the metalanguage, so in particular, base-level variables are represented as meta-level variables. This is in contrast to the ground representation, where base language variables are represented as constants in the metalanguage. The non-ground representation means that meta-level unification is available to be used for unifying base-level terms. The ground representation allows the implementation of more sophisticated models of unification.
The base-level term , in a non-ground representation, will be represented as the meta-level term .
In a ground representation, the base-level term may be represented as , along with a declaration that is a base-level variable.
We will develop a non-ground representation for definite clauses. The metalanguage must be able to represent all of the base-level constructs.
The base-level variables, constants, and function symbols are represented as the corresponding meta-level variables, constants, and function symbols. Thus, all terms in the base level are represented by the same term in the meta-level. A base-level predicate symbol is represented by the corresponding meta-level function symbol . Thus, the base-level atom is represented as the meta-level term .
Base-level bodies are also represented as meta-level terms. If and are meta-level terms that denote base-level atoms or bodies, let the meta-level term denote the base-level conjunction of and . Thus, is a meta-level function symbol that denotes base-level conjunction.
Base-level definite clauses are represented as meta-level atoms. Base-level rule “” is represented as the meta-level atom , where is the representation of body . A base-level fact is represented as the meta-level atom , where the meta-level constant represents the base-level empty body.
To make the base level more readable, we use the infix function symbol “” rather than . Instead of writing , we write . The conjunction symbol “” is an infix function symbol of the metalanguage that denotes an operator, between atoms, of the base language. This is just a syntactic variant of the “” representation. This use of infix operators makes it easier to read base-level formulas.
Instead of writing , we write , where is an infix meta-level predicate symbol. Thus, the base-level clause “” is represented as the meta-level atom
This meta-level atom is true if the corresponding base-level clause is part of the base-level knowledge base. In the meta-level, this atom can be used like any other atom.
Syntactic construct | Meta-level representation | ||
---|---|---|---|
of the syntactic construct | |||
variable | variable | ||
constant | constant | ||
function symbol | function symbol | ||
predicate symbol | function symbol | ||
“and” operator | function symbol | ||
“if” operator | predicate symbol | ||
clause | atom | ||
clause | atom |
Figure 14.8 summarizes how the base language is represented in the meta-level.
Using the infix notation, the base-level clauses of Example 14.17 are represented as the meta-level facts
This notation is easier for humans to read than the meta-level facts of Example 14.17, but as far as the computer is concerned, it is essentially the same.
The meta-level function symbol “” and the meta-level predicate symbol “” are not predefined symbols of the meta-level. You could have used any other symbols. They are written in infix notation for readability.