Reasoning with structured knowledge#

A physical object is structured if it consists of several components having certain spatial relationships to each other. Likewise, knowledge is structured if its components have certain logical relationships. For instance, a description of the London underground system consists of a list of stations (the components) plus a list of connections between stations (the relationships). As can be seen in Figure 1.1 in Chapter 1, such structured knowledge has a convenient graphical representation, in which components are represented by points or nodes, and relationships are represented by lines or arcs between nodes. In mathematics, such graphical structures are called graphs.

Tip

Nodes are also called vertices (from the singular vertex), and arcs are more commonly called edges.

A characteristic property of structured knowledge is the distinction that is made between explicit and implicit relationships. For instance, in the underground example the direct connections which exist between two stations are the explicit relationships. All other relationships (i.e. connections between stations that are further apart) are only implicitly represented, and must be reconstructed from the explicit relationships. Therefore, reasoning forms an integral part of any form of structured knowledge.

Other examples of structured knowledge, encountered in Part I, include Prolog terms, proof trees, and SLD-trees. Among these, SLD-trees constitute a special case, since they are not given a priori as part of the knowledge describing a certain Universe of Discourse, but are instead derived from problem specifications of the form ‘given program \(P\), find all answers to query \(Q\)’. By means of SLD-trees, such problems are translated to problems of the form ‘given SLD-tree \(T\), find all paths from the root of the tree to the empty clause’. Problems of the latter kind are called search problems, and the graph being searched is called a search space. Most problems in intelligent reasoning are search problems of one kind or the other.

../../../_images/image0021.svg

Figure 1 The Towers of Hanoi: Starting position.#

../../../_images/image0041.svg

Figure 2 The Towers of Hanoi: Intermediate position.#

../../../_images/image0061.svg

Figure 3 The Towers of Hanoi: Goal position.#

In principle, any given problem can be defined as a search problem. To this end, we must identify:

  1. the nodes in the search space;

  2. the arcs between nodes;

  3. the starting node;

  4. the goal node.

For instance, when searching for an answer to a query by means of SLD-resolution, the nodes in the search space are resolvents, the arcs are resolution steps by means of a program clause, the starting node is the query, and the goal node is the empty clause. As another example, we consider the puzzle known as The Towers of Hanoi. This puzzle consists of three pegs and \(n\) disks of decreasing size. Initially, all the disks are on the left peg, such that no disk is placed on a smaller one. This rule is to be obeyed throughout the game. The goal is to move all the disks to the right peg by moving one disk at a time. This problem is easily reformulated as a search problem, where nodes are allowed positions, and arcs are moves of the upper disk on one peg to another. Starting node and goal node are as in Figure 1, Figure 2 and Figure 3.

An analytic solution to the Towers of Hanoi#

In the case of the Towers of Hanoi, there is a simple analytic solution based on the following observation: suppose we are able to solve the problem for \(n-1\) disks, then we can solve it for \(n\) disks also: move the upper \(n-1\) disks from the left to the middle peg1, move the remaining disk on the left peg to the right peg, and move the \(n-1\) disks from the middle peg to the right peg. Since we are able to solve the problem for \(0\) disks, it follows by complete induction that we can solve the problem for any number of disks. The inductive nature of this argument is nicely reflected in the following recursive program:

:-op(900,xfx,to).

% hanoi(N,A,B,C,Moves) <- Moves is the list of moves to
%                         move N disks from peg A to peg C,
%                         using peg B as intermediary peg
hanoi(0,_A,_B,_C,[]).
hanoi(N,A,B,C,Moves):-
    N1 is N-1,
    hanoi(N1,A,C,B,Moves1),
    hanoi(N1,B,A,C,Moves2),
    append(Moves1,[A to C|Moves2],Moves).
/** <examples> ?- hanoi(3,left,middle,right,M). */

For instance, the query ?-hanoi(3,left,middle,right,M) yields the answer

M = [ left to right, left to middle, right to middle,
      left to right,
      middle to left, middle to right, left to right ]

The first three moves move the upper two disks from the left to the middle peg, then the largest disk is moved to the right peg, and again three moves are needed to move the two disks on the middle peg to the right peg.

Since the number of allowed positions is \(3^n\), the search space for the Towers of Hanoi grows exponentially with the number of disks. In practice, this means that the problem will be unsolvable for large \(n\), no matter how efficient the search program, or how powerful the computer. This is a common characteristic of search problems. Search is a problem solving method which, although applicable to almost any problem, has considerable practical limitations. Therefore, search is only applied to problems for which no analytic solutions are known.

For many problems in intelligent reasoning such analytic solutions simply do not exist, and search is the best we can do. In Chapters 5 and 6, we will present and analyse various methods for searching graphs. Since graphs are not only important for search problems, but for all forms of structured knowledge, Chapter 4 is devoted to a discussion of various ways to represent structured knowledge in clausal logic.


1

The remaining disk on A can safely be ignored, since it is the largest.