foundations of computational agents
The third edition of Artificial Intelligence: foundations of computational agents, Cambridge University Press, 2023 is now available (including full text).
The second relational representation for reasoning about actions and change, the event calculus, models how the truth value of relations changes because of events occurring at certain times. Time can be modeled as either continuous or discrete.
Events are modeled as occurring at particular times. Event occurring at time is written as .
Events make some relations true and some no longer true:
is true if event makes primitive relation true at time
is true if event makes primitive relation no longer true at time .
Time is a parameter to and because the effect of an event can depend on what else is true at the time. For example, the effect of attempting to unlock a door depends on the position of the robot and whether it is carrying the appropriate key.
Relations are either true or false at any time. In the event calculus, relations are reified, where means that relation is true at time . This is analogous to having as the last argument to in the situation calculus. The use of the meta-predicate allows general rules that are true for all relations.
Derived relations are defined in terms of primitive relations and other derived relations for the same time.
Primitive relation holds at time if an event occurred before that made true, and there was no intervening event that made no longer true. This can be specified as follows:
The atom means there is an event between times and that makes no longer true; is true if time is before time . Here is negation as failure, and so these clauses mean their completion.
Actions are represented in terms of what properties they initiate and terminate. As in the situation calculus, the preconditions of actions are specified using the relation.
The action initiates a relation, and it terminates a relation as long as the preconditions for are true:
This implies that if a is attempted when the preconditions do not hold, nothing happens. It is also possible to write clauses that specify what happens under different circumstances, such as when a pickup is attempted for an object that is being held by something else.
Given particular action occurrences, and making the complete knowledge assumption that all intervening events are specified, the top-down proof procedure with negation as failure can be used to prove what is true.
The event calculus is different from the situation calculus in that it is based on a temporal representation rather than a state-based representation; the argument in the event calculus is a time and not a state or situation. This means that an agent can reason about discrete or continuous time. Multiple agents carrying out actions in time can be modeled by specifying when the various actions by the agents occurred. The situation calculus requires interleaving the actions by different agents. The event calculus also lends itself to the case where events have durations. Given the times that events occurred, the effect can depend on the duration between times. Planning in the situation calculus is done by constructing a proof of the existence of a situation. In the event calculus, planning is done by abduction, which is used to hypothesize the occurrence of events to make a goal true.