Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 6/24/83; site spuxll.UUCP Path: utzoo!watmath!clyde!burl!ulysses!mhuxr!ihnp4!cbosgd!cbdkc1!desoto!packard!edsel!bentley!hoxna!houxm!whuxlm!spuxll!ech From: ech@spuxll.UUCP (Ned Horvath) Newsgroups: net.math Subject: Re: Beyond Exponentiation Message-ID: <616@spuxll.UUCP> Date: Wed, 30-Jan-85 18:36:44 EST Article-I.D.: spuxll.616 Posted: Wed Jan 30 18:36:44 1985 Date-Received: Thu, 31-Jan-85 07:24:39 EST References: <186@ihnet.UUCP> Organization: AT&T Information Systems, South Plainfield NJ Lines: 12 I suggest you look at Ackermann's classic function, at least over the naturals. The first few "rows" of that function correspond roughly to "take the successor", "add", "multiply", "exponentiate", etc. The recursion is (for n,m >= 0) A(0, n) = n+1 A(n+1, 0) = A (n, 1) A(n+1, m+1) = A (n, A (n+1,m)) How to generalize this to the reals is not obvious... =Ned=