Rule Mode
For rules, if a variable is defined newly in the rule, then those variables are bound existentially.
sibling(X,Y) :- parent(P, X), parent(P,Y).Expressed as:
For rules, if a variable is defined newly in the rule, then those variables are bound existentially.
sibling(X,Y) :- parent(P, X), parent(P,Y).Expressed as:
∀X,Y,sibling(X,Y)←∃P,parent(P,X)∧parent(P,Y)