まず、これは宿題なので、ヒントだけ教えてください!
%Here is a rule that defines sum/3 that returns yes if Z is sum of X and Y
sum(X,Y,Z) :-
Z is X + Y.
%How can I make product/3
product(X,Y,Z) :- % based on sum/3 above?
また、X * Y の答えを返し、それが単なる真ではないような製品のクエリをどのように書くことができますか?