vote up 0 vote down star

hi guys, 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.

please help. my email is b4b123456@yahoo.com

flag
1  
If you're not sure it's correct, TEST IT. – Bears will eat you Oct 12 at 14:57
Frank: if you indent text 4 spaces, it will format it as code. Edit your question and give it a try. The orange question mark in the editor toolbar links to a document with other formatting markup. – outis Nov 15 at 6:59

3 Answers

vote up 2 vote down

These are not tail recursive. You can write tail recursive variants by using an accumulator, see this answer.

Your sum is over a tree, which is unusual, normally one would use a list. In Prolog [] is the empty list and [X|R] is the pattern for a nonempty list with the head X and the tail R.

link|flag
Sir, please can u help me write the power in recursive fashion? I just started learning it and can't do it.Please help me with one of them at least. Thanks Frank – FRANK Oct 12 at 15:28
1  
It's your homework, not mine. I'm not even your instructor. Sorry, I won't give you specific solutions, you are supposed to learn thinking for yourself. – starblue Oct 12 at 16:09
vote up 0 vote down

anybody else can help me but starblue? I like to learn at the begining by seeing examples... not an easy language to handle.

link|flag
Read: meta.stackoverflow.com/questions/10811/…. Also, don't answer a question with a question. You can edit your own question and, when you have 50 points, add comments. StackOverflow is a Q&A site, not a forum. – outis Nov 15 at 6:51
vote up 0 vote down

I found some code here: http://fmi.spiruharet.ro/bodorin/aicl.html Claudio

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.