I am trying to compare two peano's number in prolog , but some resualt is wrong .
Anyone can help me , this is my code :
%Not Equal
notequal(0,s(A),X).
notequal(s(A),0,X).
notequal(s(A),s(B),C):- A/=B .
OR
%Not Equal
notequal(0,s(A),X).
notequal(s(A),0,X).
notequal(s(A),s(B),C):- minus(A,s(0),S1),minus(B,s(0),S2),notequal(S1,S2,C) .
The output :
?- notequal(s(0),s(s(0)),S).
false.
?- notequal(s(0),0,S).
true .
?- notequal(0,s(0),S).
true.
First output wrong
Thank you .
You don't need three arguments for such a predicate, after all you want to describe a relation between two numbers. And your last rule should call the predicate itself again:
This yields your desired answers:
You can also use this with only one argument instantiated:
As you can see all possibilities are covered with these two answers. Even the most general query is producing solutions: