0

What is the recursive relation for H(m)=2^(m^2) using successor function recursive relation for multiplication: mult(x,0)=0; mult(x,S(y))=add(x,mult(x,y)) recursive relation for addition: add(x,0)=x; add(x,S(y))=S(add(x,y)) H function is a composite function, I want to come up with recursive relation for that function. Thanks much in advance!!!

flag
This is more appropriate to ask a math.stackexchange, as this is not a research-level question. – Per Alexandersson Feb 3 at 17:19
Hint: $(m+1)^2=m^2+2m+1$ – François G. Dorais Feb 3 at 19:17

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.