I am new to prolog and would like to have some advice.
I have some facts:
male(tom).
male(james).
male(john).
female(elly).
female(joanne).
female(evonne).
brother(john,tom).
brother(john,joanne).
sister(elly,joanne).
parent_of(evonne,john).
parent_of(james,john).
Is is possible to define a parent_of
rule without using sister
and brother
?