how can I accomplish this:
Give a tail-recursive definition for each of the following predicates.
power(X,Y,Z)
: XY=Z.
gcd(X,Y,Z)
: The greatest common divisor of X and Y is Z.
sum(L,Sum)
: Sum is the sum of the elements in L.
so far I have done this but not sure if that's correct
power(_,0,1) :- !.
power(X,Y,Z) :- Y1 is Y - 1,power(X,Y1,Z1),Z is X * Z1.
sum(void,0).
sum(t(V,L,R),S) :- sum(L,S1),sum(R,S2), S is V + S1 + S2.