Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a standard procedure for determining membership of a list:

member(X, [X|_]).  
member(X, [_|T]) :- member(X, T).

What I don't understand is why when I pose the following query:

?- member(a,[a,b]).

The result is

True;  
False.

I would have thought that on satisfying the goal using the first rule (as a is the head of the list) True would be returned and that would be the end of if. It seems as if it is then attempting to satisfy the goal using the second rule and failing?

Prolog interpreter is SWI-Prolog.

share|improve this question
what version SWI are you using? – Will Ness Jan 30 at 2:12
@WillNess 6.2.6 64bit for mac – Justin Jan 30 at 2:26

3 Answers

up vote 2 down vote accepted

Let's consider a similar query first: [Edit: Do this without adding your own definition ; member/2 is already defined]

?- member(a,[b,a]).
true.

In this case you get the optimal answer: There is exactly one solution. But when exchanging the elements in the list we get:

?- member(a,[a,b]).
true ;
false.

Logically, both are just the affirmation that the query is true.

The reason for the difference is that in the second query the answer true is given immediately upon finding a as element of the list. The remaining list [b] does not contain a fitting element, but this is not yet examined. Only upon request (hitting SPACE or ;) the rest of the list is tried with the result that there is no further solution.

Essentially, this little difference gives you a hint when a computation is completely finished and when there is still some work to do. For simple queries this does not make a difference, but in more complex queries these open alternatives (choicepoints) may accumulate and use up memory.

Older toplevels always asked if you want to see a further solution, even if there was none.

Edit:

The ability to avoid asking for the next answer, if there is none, is extremely dependent on the very implementation details. Even within the same system, and the same program loaded you might get different results. In this case, however, I was using SWI's built-in definition for member/2 whereas you used your own definition, which overwrites the built-in definition.

SWI uses the following definition as built-in which is logically equivalent to yours but makes avoiding unnecessary choice points easier to SWI — but many other systems cannot profit from this:

member(B, [C|A]) :-
        member_(A, B, C).

member_(_, A, A).
member_([C|A], B, _) :-
        member_(A, B, C).

To make things even more complex: Many Prologs have a different toplevel that does never ask for further answers when the query does not contain a variable. So in those systems (like YAP) you get a wrong impression.

Try the following query to see this:

?- member(X,[1]).
X = 1.

SWI is again able to determine that this is the only answer. But YAP, e.g., is not.

share|improve this answer
I actually still get the true and false answer for both of those queries. In the second query I dont see why it would continue trying to examine [b] when the first rule has already found a as the head of the list. – Justin Jan 30 at 2:09
@Justin Becasue you pressed the ; button. It examined the head, found it matches, and reported back true to you. But it still hasn't looked at the rest of the list. – Will Ness Jan 30 at 2:12
@WillNess so your saying even though rule 1 has satisfied the query, rule 2 will be evaluated (and therefore examining the tail of the list [b] and failing)? – Justin Jan 30 at 2:24
I can see now that I am running trace that what your saying is correct, It attempts to test member(a, [b]) and fails. Can anyone explain why it does this? Am I correct in saying that when matching a goal to the head of a rule, it will return when the goal is satisfied, but then still test other rules with a matching head when pressing ';'? – Justin Jan 30 at 2:37
@Justin When Prolog succeeds in satisfying a query it does not stop, but pauses. That is how Prolog is defined. It pauses, remembers where it's at, prints the results and waits for an operator's command: a ';', or 'Space', 'Enter', '?' etc. – Will Ness Jan 30 at 2:39
show 4 more comments

Are you using the ";" operator after the first result then pushing return? I believe this is asking the query to look for more results and as there are none it is coming up as false.

share|improve this answer
Yes I am. However my experience so far is that normally when posing a query which only has one possible result it only prints True and then returns to the ?- prompt. The ";" operator is normally available only when there is multiple answers. – Justin Jan 30 at 1:54

Do you know about Prolog's cut - !?

If you change member(X, [X|_]). to member(X, [X|_]) :- !. Prolog will not try to find another solution after the first one.

share|improve this answer
I have not yet reached cut in the book I am studying from :) – Justin Jan 30 at 2:39
Without a cut it behaves basically as you described in the question - "then attempting to satisfy the goal using the second rule and failing". – Sergey Dymchenko Jan 30 at 2:42
2  
I see. So basically if you know that an earlier rule is 'the best solution' you can add a cut. The downside being you will never know if another interesting solution existed. – Justin Jan 30 at 2:45
member(X,[1,2,3]) should give three answers/solutions not one. – false Jan 30 at 12:19
@Justin: Introducing cut in Prolog programs is extremely hairy. Many attempts as the one above go wrong for some cases. So better avoid the cut in the beginning, there is enough to learn from cut free programs. – false Jan 30 at 14:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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