Tetration Forum
A MAPLE QUESTION - Printable Version

+- Tetration Forum (https://tetrationforum.org)
+-- Forum: Tetration and Related Topics (https://tetrationforum.org/forumdisplay.php?fid=1)
+--- Forum: Mathematical and General Discussion (https://tetrationforum.org/forumdisplay.php?fid=3)
+--- Thread: A MAPLE QUESTION (/showthread.php?tid=410)



A MAPLE QUESTION - daniel127 - 01/04/2010

Does any one know how to make the function f(x)=x^(x^(x... work recursively in Maple 8 - the code to put in i.e.?


RE: A MAPLE QUESTION - bo198214 - 01/04/2010

(01/04/2010, 08:16 PM)daniel127 Wrote: Does any one know how to make the function f(x)=x^(x^(x... work recursively in Maple 8 - the code to put in i.e.?

Code:
tet := proc(x,n); if n = 0 then return 1; else return x^tet(x,n-1); end if; end proc;