A MAPLE QUESTION
#1
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.?
Reply
#2
(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;
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [Question] Classifying dynamical system by connected components MphLee 6 7,988 10/22/2025, 11:53 AM
Last Post: MphLee
  A question about tetration from a newbie TetrationSheep 2 6,268 08/26/2024, 12:38 PM
Last Post: TetrationSheep
  Question about the properties of iterated functions Shanghai46 9 11,359 04/21/2023, 09:07 PM
Last Post: Shanghai46
  Matrix question for Gottfried Daniel 6 9,120 12/10/2022, 09:33 PM
Last Post: MphLee
  [question] Local to global and superfunctions MphLee 8 10,979 07/17/2022, 06:46 AM
Last Post: JmsNxn
  A random question for mathematicians regarding i and the Fibonacci sequence. robo37 1 7,917 06/27/2022, 12:06 AM
Last Post: Catullus
  Question about tetration methods Daniel 17 22,722 06/22/2022, 11:27 PM
Last Post: tommy1729
  A question concerning uniqueness JmsNxn 4 16,933 06/10/2022, 08:45 AM
Last Post: Catullus
  Math.Stackexchange.com question on extending tetration Daniel 3 7,551 03/31/2021, 12:28 AM
Last Post: JmsNxn
  Kneser method question tommy1729 9 25,924 02/11/2020, 01:26 AM
Last Post: sheldonison



Users browsing this thread: 1 Guest(s)