7. Prolog

1
2
3
4
5
6
7
8
let val m = ref 0
    val n = ref 0
in
  m:=Int.fromString(input("Please enter an integer: "));
  n:=Int.fromString(input("Please enter another: "));
  while !m >= !n do m:=!m-!n;
  println(!m)
end

Fig. 7.1 A Small Sample

7.1. Getting Started with Prolog

parent(fred, sophusw). parent(fred, lawrence).
parent(fred, kenny). parent(fred, esther).
parent(inger,sophusw). parent(johnhs, fred).
parent(mads,johnhs). parent(lars, johan).
parent(johan,sophus). parent(lars,mads).
parent(sophusw,gary). parent(sophusw,john).
parent(sophusw,bruce). parent(gary, kent).
parent(gary, stephen). parent(gary,anne).
parent(john,michael). parent(john,michelle).
parent(addie,gary). parent(gerry, kent).
male(gary). male(fred).
male(sophus). male(lawrence).
male(kenny). male(esther).
male(johnhs). male(mads).
male(lars). male(john).
male(bruce). male(johan).
male(sophusw). male(kent).
male(stephen). female(inger).
female(anne). female(michelle).
female(gerry). female(addie).
father(X,Y):-parent(X,Y),male(X).
mother(X,Y):-parent(X,Y), female(X).

Fig. 7.2 The Family Tree

7.1.1. Example 7.2

7.2. Fundamentals

father(X,Y):-parent(X,Y), male(X).

Practice 7.1

What are the terms in example 7.2? What is the difference between an atom and a variable? Give examples of terms, atoms, and variables from example 7.2.

You can check your answer(s) here.

7.2.1. Example 7.3

% swipl
?- consult('family.prolog').
?- father(johan,sophus).
Yes
?-

7.2.2. Example 7.4

?- father(X, sophus).
X = johan
Yes
?- parent(X,kent).
X = gary ;
X = gerry ;
No
?-

7.3. The Prolog Program

7.3.1. Example 7.5

?- father(X,kent).
X = gary ;
No
?- father(gary,X).
X = kent ;
X = stephen ;
X = anne ;
No

Practice 7.2

Write predicates that define the following relationships.

  1. brother
  2. sister
  3. grandparent
  4. grandchild

Depending on how you wrote grandparent and grandchild there might be something to note about these two predicates. Do you see a pattern? Why?

You can check your answer(s) here.

7.4. Lists

7.4.1. Example 7.6

append([],Y,Y).
append([H|T1], L2, [H|T3]) :- append(T1,L2,T3).

7.4.2. Example 7.7

sublist(X,Y) :- append(_,X,L), append(L,_,Y).



.. container:: figboxcenter

   .. figure:: prologproof.png


**Fig. 7.3** A Unification Tree

Practice 7.3

What is the complexity of the append predicate? How many steps does it take to append two lists?

You can check your answer(s) here.

Practice 7.4

Write the reverse predicate for lists in Prolog using the append predicate. What is the complexity of this reverse predicate?

You can check your answer(s) here.

7.5. The Accumulator Pattern

fun reverse(L) =
    let fun helprev (nil, acc) = acc
          | helprev (h::t, acc) = helprev(t,h::acc)
    in
      helprev(L,[])
    end

Practice 7.5

Write the reverse predicate using a helper predicate to make a linear time reverse using the accumulator pattern.

You can check your answer(s) here.

7.6. Built-in Predicates

7.7. Unification and Arithmetic

Singleton variables: [X]

Practice 7.6

Write a length predicate that computes the length of a list.

You can check your answer(s) here.

7.8. Input and Output

7.8.1. Example 7.8

? - readln(L,_,_,_,lowercase).
|: + 5 S R
L = [+, 5, s, r] ;
No
?-

7.8.2. Example 7.9

?- print(X).
_G180
X = _G180 ;
No

7.9. Structures

7.9.1. Example 7.10

btnode(5,
  btnode(3,
    btnode(2, nil, nil),
    btnode(4, nil, nil)),
  btnode(8,
    btnode(7, nil, nil),
    btnode(9, nil,
      btnode(10, nil, nil))))
_images/bst.png

Fig. 7.4 Search Tree

Practice 7.7

Write a lookup predicate that looks up a value in a binary search tree like the kind defined in example 7.10.

You can check your answer(s) here.

7.10. Parsing in Prolog

7.10.1. Example 7.11

Sentence ::= Subject Predicate .

Subject ::= Determiner Noun

Predicate ::= Verb | Verb Subject

Determiner ::= a | the

Noun ::= professor | home | group

Verb ::= walked | discovered | jailed

Practice 7.8

Construct the parse tree for “the professor discovered a group.” using the grammar in example 7.11.

You can check your answer(s) here.

7.10.2. Example 7.12

_images/prologsen.png

Fig. 7.5 A Transition Graph

_images/prologsub2.png

Fig. 7.6 Sentence Structure

_images/prologsennum.png

Fig. 7.7 Labeled Graph

the(1,2).
professor(2,3).
discovered(3,4).
a(4,5).
group(5,6).
period(6,7).
subject(K,L) :- determiner(K,M), noun(M,L).

Practice 7.9

Construct the predicates for the rest of the grammar.

You can check your answer(s) here.

7.10.3. Example 7.13

?- sentence(1,7).
yes
? - sentence(X,Y).
X = 1
Y = 7

7.10.4. Example 7.14

_images/sengraph.png

Fig. 7.8 An Upside Down Parse Tree

7.10.5. Difference Lists

7.10.6. Example 7.15

_images/difflists.png

Fig. 7.9 Difference Lists

7.10.7. Example 7.16

c([H|T],H,T).
determiner(K,L) :- c(K,a,L).
determiner(K,L):- c(K,the,L).

noun(K,L) :- c(K,professor,L).
noun(K,L) :- c(K,home,L).
noun(K,L) :- c(K,group,L).

verb(K,L) :- c(K,walked,L).
verb(K,L) :- c(K,discovered,L).
verb(K,L) :- c(K,jailed,L).
?- sentence([the,professor,discovered,a,group,'.'], [ ]).
yes
?- sentence(S,[ ]).
Subject ::= Determiner Noun | Determiner Noun Subject

7.11. Prolog Grammar Rules

7.11.1. Example 7.17

sentence --> subject, predicate,['.'].
subject --> determiner, noun.
predicate --> verb, subject.
determiner --> [a].
determiner --> [the].
noun --> [professor]; [home]; [group].
verb --> [walked]; [discovered]; [jailed].

7.12. Building an AST

7.12.1. Example 7.18

sentence(sen(N,P)) --> subject(N), predicate(P), ['.'].
sentence(sen(N,P),K,L) :- subject(N,K,M),
                              predicate(P,M,R),c(R,'.',L).
?- sentence(Tree, [the,professor,discovered,a,group,'.'],[]).
Tree = sen(sub(det(the),noun(professor)),
                 pred(verb(discovered),sub(det(a),noun(group))))

Practice 7.10

Write a grammar for the subset of English sentences presented in this text to parse sentences like the one above. Include parameters to build abstract syntax trees like the one above.

You can check your answer(s) here.

7.13. Attribute Grammars

_images/attrtree.png

Fig. 7.10 Annotated AST for + S 4 R

AST = prog of AST
    | add of AST * AST
    | sub of AST * AST
    | prod of AST * AST
    | div of AST * AST
    | negate of AST
    | num of number
    | store of AST
    | recall

Fig. 7.11 AST Definition

7.13.1. Example 7.19

G=(\mathcal{N,T,P,}E) where

\mathcal{N} = {E}
\mathcal{T} = {S,R,number,~,+,-,*,/}
\mathcal{P} is defined by the set of productions

E \rightarrow +~E~E \mid -~E~E \mid *~E~E \mid /~E~E \mid \sim E \mid S~E \mid R \mid number
AST –> Prog AST
(1) AST1.min = 0
(2) AST0.val = AST1.val

AST –> op AST AST
(3) AST1.min = AST0.min
(4) AST2.min = AST1.mout
(5) AST0.mout = AST2.mout
(6) AST0.val = AST1.val op AST2.val
where op is one of +,-,*,/

AST –> Store AST
(7) AST1.min = AST0.min
(8) AST0.mout = AST1.val
(9) AST0.val = AST1.val

AST –> Negate AST
(10) AST1.min = AST0.min
(11) AST0.mout = AST1.mout
(12) AST0.val = -1 * AST1.val

AST –> Recall
(13) AST0.val = AST0.min
(14) AST0.mout = AST0.min

AST –> number
(15) AST0.mout = AST0.min
(16) AST0.val = number

Fig. 7.12 Attribute Grammar

Practice 7.11

Justify the annotation of the tree given in figure 7.10 by stating which rule was used in assigning each of the attributes annotating the tree.

You can check your answer(s) here.

7.13.2. Synthesized vs Inherited

Practice 7.12

Is the min attribute synthesized or inherited? Is the mout attribute synthesized or inherited?

You can check your answer(s) here.

7.14. Chapter Summary

7.15. Review Questions

  1. What is a term made up of in Prolog? Give examples of both simple and complex terms.
  2. What is a predicate in Prolog?
  3. In Standard ML you can pattern match a list using (h::t). How do you pattern match a list in Prolog?
  4. According to the definition of append, which are the input and the output parameters to the predicate?
  5. How do you get more possible answers for a question posed to Prolog?
  6. In the expression X = 6 * 5 + 4 why doesn’t X equal 34 when evaluated in Prolog? What does X equal? What would you write to get X equal to 34?
  7. Provide the calls to lookup to look up 7 in the binary tree in example 7.10 and figure 7.4. Be sure to write down the whole term that is passed to lookup each time. You can consult the answer to practice problem 7.7 to see the definition of the lookup predicate.
  8. What symbol is used in place of the :- when writing a grammar in Prolog?
  9. What is a synthesized atrribute?
  10. What is an inherited attribute?

7.16. Exercises

In these early exercises you should work with the relative database presented at the beginning of this chapter.

  1. Write a rule (i.e. predicate) that describes the relationship of a sibling. Then write a query to find out if Anne and Stephen are siblings. Then ask if Stephen and Michael are siblings. What is Prolog’s response?

  2. Write a rule that describes the relationship of a brother. Then write a query to find the brothers of sophusw. What is Prolog’s response?

  3. Write a rule that describes the relationship of a niece. Then write a query to find all nieces in the database. What is Prolog’s response?

  4. Write a predicate that describes the relationship of cousins.

  5. Write a predicate that describes the ancestor relationship.

  6. Write a predicate called odd that returns true if a list has an odd number of elements.

  7. Write a predicate that checks to see if a list is a palindrome.

  8. Show the substitution required to prove that sublist([a,b],[c,a,b]) is true. Use the definition in figure 7.3 and use the same method of proving it’s true.

  9. Write a predicate that computes the factorial of a number.

  10. Write a predicate that computes the nth fibonacci number in exponential time complexity.

  11. Write a predicate that computes the nth fibonacci number in linear time complexity.

  12. Write a predicate that returns true if a third list is the result of zipping two others together. For instance,

    zipped([1,2,3],[a,b,c],[pair(1,a),pair(2,b),pair(3,c)])
    

    should return true since zipping [1,2,3] and [a,b,c] would yield the list of pairs given above.

  13. Write a predicate that counts the number of times a specific atom appears in a list.

  14. Write a predicate that returns true if a list is three copies of the same sublist. For instance, the predicate should return true if called as

    threecopies([a, b, c, a, b, c, a, b, c]).
    

    It should also return true if it were called like

    threecopies([a,b,c,d,a,b,c,d,a,b,c,d]).
    
  15. Implement insert, lookup, and delete on a binary search tree. The structure of a binary search tree was discussed in this chapter. Your main run predicate should be this:

    buildtree(T) :- readln(L,_,_,_,lowercase), processlist(L,nil,T).
    
    run :- print('Please enter integers to build a tree: '), buildtree(T),
           print('Here is the tree:'), print(T), print('\n'),
           print('Now enter integers to delete: '), readln(L,_,_,_,lowercase),
           delListFromTree(L,T,DT), print(DT).
    

    The run predicate calls the buildTree predicate to build the binary search tree from the list read by the readline. If 5 8 2 10 is entered at the keyboard, L would be the list containing those numbers. To complete this project there should be at least three predicates: insert, lookup, and delFromTree.

    The lookup predicate was a practice problem and the solution is provided if you need it. The insert predicate is somewhat like the lookup predicate except that a new node is constructed when you reach a leaf. Deleting a node is simliar to looking it up except that if it is found, the tree is altered to delete the node. Deleting a node from a binary search tree has three cases.

    1. The node to delete is a leaf node. If this is the case, then deleting it is simple because you just return an empty tree. In figure 7.4 this occurs when 2,4,7, or 10 is deleted.
    2. The node to delete has one child. If this is the case, then the result of deleting the node is the subtree under the deleted node. In figure 7.4, if the 9 is deleted, then the 10 is just moved up to replace the 9 in the tree.
    3. The node to delete has two children. If this is the case, then you have to do two things. First, find the left-most value from the right subtree. Then, delete the left-most value from the right subtree and return a new tree with the left-most value of the right subtree at its root. Consider delete 5 from figure 7.4. The left-most value of the right subtree is 7. To delete 5 we put the 7 at the root of the tree and then delete 7 from the right subtree.

    To make this project easy, write it incrementally. Print the results as you go so you can see what works and what doesn’t. The print predicate will print its argument while the nl predicate will print a newline. Don’t start by writing the entire run predicate right away. Write one piece at a time, test it, and then move on to the next piece.

  16. Implement a calculator prefix expression interpreter in Prolog as described in the section on attribute grammars in this chapter. The interpreter will read an expression from the keyboard and print its result. The interpreter should start with a calc predicate. Here is the calc predicate to get you started.

    calc :- readln(L,_,_,_,lowercase), preprocess(L,PreL), print(PreL), nl,
            expr(Tree,PreL,[]), print(Tree), nl, interpret(Tree,0,_,Val),
            print(Val), nl.
    

    The program reads a list of tokens from the keyboard. The preprocess predicate should take the list of values and add num tags to any number it finds in the list. This makes writing the grammar a lot easier. Any number like 6 in L should be replaced by num((6) in the list PreL. The expr predicate represents the start symbol of your grammar. Finally, the interpret predicate is the attribute grammar evaluation of the AST represented by Tree.

    To make this project easy, write it incrementally. Print the results as you go so you can see what works and what doesn’t. The print predicate will print its argument while the nl predicate will print a newline. Don’t write the entire calc predicate right away. Write one piece, test it, and then move on to the next piece.

7.17. Solutions to Practice Problems

These are solutions to the practice problem s. You should only consult these answers after you have tried each of them for yourself first. Practice problems are meant to help reinforce the material you have just read so make use of them.

7.17.1. Solution to Practice Problem 7.1

Terms include atoms and variables. Atoms include sophus, fred, sophusw, kent, johan, mads, etc. Atoms start with a lowercase letter. Variables start with a capital letter and include X and Y from the example.

7.17.2. Solution to Practice Problem 7.2

  1. brother(X,Y) :- father(Z,X), father(Z,Y), male(X).
  2. sister(X,Y) :- father(Z,X), father(Z,Y), female(X).
  3. grandparent(X,Y) :- parent(X,Z), parent(Z,Y).
  4. grandchild(X,Y) :- grandparent(Y,X).

Grandparent and grandchild relationships are just the inverse of each other.

7.17.3. Solution to Practice Problem 7.3

The complexity of append is O(n) in the length of the first list.

7.17.4. Solution to Practice Problem 7.4

reverse([],[]).
reverse([H|T],L) :- reverse(T,RT), append(RT,[H],L).

This predicate has O(n^2) complexity since append is called n times and append is O(n) complexity.

7.17.5. Solution to Practice Problem 7.5

reverseHelp([],Acc,Acc).
reverseHelp([H|T], Acc, L) :- reverseHelp(T,[H|Acc],L).
reverse(L,R):-reverseHelp(L,[],R).

7.17.6. Solution to Practice Problem 7.6

len([],0).
len([_|T],N) :- len(T,M), N is M + 1.

7.17.7. Solution to Practice Problem 7.7

lookup(X,btnode(X,_,_)).
lookup(X,btnode(Val,Left,_)) :- X < Val, lookup(X,Left).
lookup(X,btnode(Val,_,Right)) :- X > Val, lookup(X,Right).

7.17.8. Solution to Practice Problem 7.8

_images/profparsetree.png

7.17.9. Solution to Practice Problem 7.9

sentence(K,L) :- subject(K,M), predicate(M,N), period(N,L).
subject(K,L) :- determiner(K,M), noun(M,L).
predicate(K,L) :- verb(K,M), subject(M,L).
determiner(K,L) :- a(K,L); the(K,L).
verb(K,L) :- discovered(K,L); jailed(K,L); walked(K,L).
noun(K,L) :- professor(K,L); group(K,L); home(K,L).

7.17.10. Solution to Practice Problem 7.10

sentence(sen(N,P)) --> subject(N), predicate(P), ['.'].
subject(sub(D,N)) --> determiner(D), noun(N).
predicate(pred(V,S)) --> verb(V), subject(S).
determiner(det(the)) --> [the].
determiner(det(a)) --> [a].
noun(noun(professor)) --> [professor].
noun(noun(home)) --> [home].
noun(noun(group)) --> [group].
verb(verb(walked)) --> [walked].
verb(verb(discovered)) --> [discovered].
verb(verb(jailed)) --> [jailed].

7.17.11. Solution to Practice Problem 7.11

_images/attrtreejustify.png

7.17.12. Solution to Practice Problem 7.12

The val attribute is synthesized. The min value is inherited. The mout value is synthesized.