Reputation: 313
I am currently learning about predicate logic in Prolog. I am having trouble answering a question on the topic and would like to know the steps one one take to solve such a question using Prolog predicates. I have a scenario which must be represented in Prolog predicates using only two different predicate names.
Upvotes: 1
Views: 691
Reputation: 71119
Just write down what it says.
are_married(a,b).
likes(b,c).
And so on. We've used two names of predicates so far.
In Prolog, atoms are denoted by identifiers starting with a lower case letter. Identifiers starting with an upper case letter or an underscore _
denote logical variables.
Upvotes: 2