I have been trying to learn Prolog, and am totally stumped on what the predicate s() does. I see it used often and there is so little resources on the internet about prolog that I cannot find an answer.

Ex.

    /* sum(Is,S) is true if S is the sum of the list of integers Is.           */
    sum([],0).
    sum([0|Is],S):-sum(Is,S).
    sum([s(I)|Is], s(Z) ):-sum([I|Is],Z).

Please help!

link|improve this question
What version of prolog interpreter do you use? – ДМИТРИЙ МАЛИКОВ Nov 19 '11 at 20:42
I use: SWI-Prolog version 5.10.1 for amd64 – okin33 Nov 19 '11 at 20:49
feedback

3 Answers

up vote 8 down vote accepted

s/1 does not do anything in itself, and it's not really a predicate. They are just terms, a representation of the successor of their argument. So, s(0) is used to represent the successor of 0 (i.e. 1), s(s(0)) is used to represent the successor of s(0) (i.e. 2), and so on and so forth. They are so widespread in Prolog because Prolog is quite fine a language to perform symbolic computation, whereas even simple arithmetic operations feel clunky, meaning that they are not seamlessly integrated with the programming paradigm.

link|improve this answer
4  
nicely said, +s(0) XD – thanosQR Nov 19 '11 at 21:58
1  
This explains, very well, why the output of my programs using s/1 were so strange. Thank you very much, great explanation! – okin33 Nov 19 '11 at 21:59
feedback

s/1 stands for successor. It's used to represent numbers in a logically accessible ways.

link|improve this answer
1  
That makes sense thank you very much! However when I try run a program count that uses s/1 I get strange output in the form of: ?- mycount(a,[a,a],N). N = s(s(0)) ; N = s(0) ; N = s(0) ; N = 0 ; false. – okin33 Nov 19 '11 at 21:02
feedback

It is Prolog-implementation specific. It refers to a successor-predicate, see this for some more info

link|improve this answer
s(X) is not implementation specific. It's an arbitrary functor. Try t(X) or succ(X) in its place. – false Nov 25 '11 at 13:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.