This version of Learn Prolog Now! embeds SWI SH , SWI-Prolog for SHaring. The current version rewrites the Learn Prolog Now! HTML on the fly, recognising source code and example queries. It is not yet good at recognising the relations between source code fragments and queries. Also Learn Prolog Now! needs some updating to be more compatible with SWI-Prolog. All sources are on GitHub:
LearnPrologNow LPN SWISH Proxy SWISH

11.3 Exercises

Exercise  11.1 Suppose we start with an empty database. We then give the command:

?- assert(q(a,b)), assertz(q(1,2)), asserta(q(foo,blug)).

What does the database now contain?

We then give the command:

?- retract(q(1,2)), assertz( (p(X) :-  h(X)) ).

What does the database now contain?

We then give the command:

?- retractall(q(_,_)).

What does the database now contain?

Exercise  11.2 Suppose we have the following database:

q(blob,blug).
q(blob,blag).
q(blob,blig).
q(blaf,blag).
q(dang,dong).
q(dang,blug).
q(flab,blob).

What is Prolog’s response to the queries:

findall(X,q(blob,X),List).
findall(X,q(X,blug),List).
findall(X,q(X,Y),List).
bagof(X,q(X,Y),List).
setof(X,Y^q(X,Y),List).

Exercise  11.3 Write a predicate sigma/2 that takes an integer n > 0 and calculates the sum of all integers from 1 to n . For example:

?- sigma(3,X).
X = 6
yes
?- sigma(5,X).
X = 15
yes

Write the predicate so that results are stored in the database (there should never be more than one entry in the database for each value) and are reused whenever possible. For example, suppose we make the following query:

?- sigma(2,X).
X = 3
yes
?- listing.
sigmares(2,3).

Then, if we go on to ask

?- sigma(3,X).

Prolog should not calculate everything new, but should get the result for sigma(2,3) from the database and only add 3 to that. It should then answer:

X = 6
yes
?- listing.
sigmares(2,3).
sigmares(3,6).

eXTReMe Tracker
© 2006-2012 Patrick Blackburn, Johan Bos, Kristina Striegnitz