Is there an equation $f(k,m,n)=n$ where $n$ is the number of applications of the Ackermann function needed?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












Using the definition of the Ackermann function on page 247 of this paper, (sidenote, great paper):
$$
alpha(k,m,n) =
begincases
m+n, & k=1 \
m, & n=1 \
alpha(k-1,m,alpha(k,m,n-1)),& textotherwise
endcases
$$



Is there some function $f$ such that $f(k,m,n)$ returns the number of times $alpha$ is used to calculate $alpha(k,m,n)$?



Some trivial values would be $f(1,m,n)=f(k,m,1)=1$, and $f(2,2,2)=2$, found manually by counting the number of $alpha$s in the expanded form of $alpha$.



Note: There is neither a tag for "ackermann-function" or "recursion", I lack the privilege to create these but I feel they would have some limited use.







share|cite|improve this question





















  • Your question doesn't make a whole lot of sense in the vocabulary of mathematics. Does there exist a function? Sure. You have just defined such a function. You mean is there a nice neat closed form? How many times does a recursive algorithm call upon itself might be a good CS question. I think your question might get more play on cs.stackexchange.com but I am not so sure of the community there and how they would respond.
    – Mason
    Jul 15 at 4:40






  • 1




    @Mason I initially intended to ask this on stackoverflow, but I felt it wasn't CS-related enough
    – user189728
    Jul 15 at 14:55










  • Oh no. Ackermann Function is right out of the CS Camp. They should be very interested: Check out: cs.stackexchange.com/questions/47227/…. The problem will be that you are going to have a more precise question to make much progress.
    – Mason
    Jul 15 at 17:58










  • @Mason is there a simple way to migrate questions?
    – user189728
    Jul 15 at 17:59










  • Look it up on the Meta and post the link here. I dunno know. but I need to.
    – Mason
    Jul 15 at 17:59















up vote
0
down vote

favorite












Using the definition of the Ackermann function on page 247 of this paper, (sidenote, great paper):
$$
alpha(k,m,n) =
begincases
m+n, & k=1 \
m, & n=1 \
alpha(k-1,m,alpha(k,m,n-1)),& textotherwise
endcases
$$



Is there some function $f$ such that $f(k,m,n)$ returns the number of times $alpha$ is used to calculate $alpha(k,m,n)$?



Some trivial values would be $f(1,m,n)=f(k,m,1)=1$, and $f(2,2,2)=2$, found manually by counting the number of $alpha$s in the expanded form of $alpha$.



Note: There is neither a tag for "ackermann-function" or "recursion", I lack the privilege to create these but I feel they would have some limited use.







share|cite|improve this question





















  • Your question doesn't make a whole lot of sense in the vocabulary of mathematics. Does there exist a function? Sure. You have just defined such a function. You mean is there a nice neat closed form? How many times does a recursive algorithm call upon itself might be a good CS question. I think your question might get more play on cs.stackexchange.com but I am not so sure of the community there and how they would respond.
    – Mason
    Jul 15 at 4:40






  • 1




    @Mason I initially intended to ask this on stackoverflow, but I felt it wasn't CS-related enough
    – user189728
    Jul 15 at 14:55










  • Oh no. Ackermann Function is right out of the CS Camp. They should be very interested: Check out: cs.stackexchange.com/questions/47227/…. The problem will be that you are going to have a more precise question to make much progress.
    – Mason
    Jul 15 at 17:58










  • @Mason is there a simple way to migrate questions?
    – user189728
    Jul 15 at 17:59










  • Look it up on the Meta and post the link here. I dunno know. but I need to.
    – Mason
    Jul 15 at 17:59













up vote
0
down vote

favorite









up vote
0
down vote

favorite











Using the definition of the Ackermann function on page 247 of this paper, (sidenote, great paper):
$$
alpha(k,m,n) =
begincases
m+n, & k=1 \
m, & n=1 \
alpha(k-1,m,alpha(k,m,n-1)),& textotherwise
endcases
$$



Is there some function $f$ such that $f(k,m,n)$ returns the number of times $alpha$ is used to calculate $alpha(k,m,n)$?



Some trivial values would be $f(1,m,n)=f(k,m,1)=1$, and $f(2,2,2)=2$, found manually by counting the number of $alpha$s in the expanded form of $alpha$.



Note: There is neither a tag for "ackermann-function" or "recursion", I lack the privilege to create these but I feel they would have some limited use.







share|cite|improve this question













Using the definition of the Ackermann function on page 247 of this paper, (sidenote, great paper):
$$
alpha(k,m,n) =
begincases
m+n, & k=1 \
m, & n=1 \
alpha(k-1,m,alpha(k,m,n-1)),& textotherwise
endcases
$$



Is there some function $f$ such that $f(k,m,n)$ returns the number of times $alpha$ is used to calculate $alpha(k,m,n)$?



Some trivial values would be $f(1,m,n)=f(k,m,1)=1$, and $f(2,2,2)=2$, found manually by counting the number of $alpha$s in the expanded form of $alpha$.



Note: There is neither a tag for "ackermann-function" or "recursion", I lack the privilege to create these but I feel they would have some limited use.









share|cite|improve this question












share|cite|improve this question




share|cite|improve this question








edited Aug 10 at 12:50









Simply Beautiful Art

49.4k572172




49.4k572172









asked Jul 15 at 4:05









user189728

33329




33329











  • Your question doesn't make a whole lot of sense in the vocabulary of mathematics. Does there exist a function? Sure. You have just defined such a function. You mean is there a nice neat closed form? How many times does a recursive algorithm call upon itself might be a good CS question. I think your question might get more play on cs.stackexchange.com but I am not so sure of the community there and how they would respond.
    – Mason
    Jul 15 at 4:40






  • 1




    @Mason I initially intended to ask this on stackoverflow, but I felt it wasn't CS-related enough
    – user189728
    Jul 15 at 14:55










  • Oh no. Ackermann Function is right out of the CS Camp. They should be very interested: Check out: cs.stackexchange.com/questions/47227/…. The problem will be that you are going to have a more precise question to make much progress.
    – Mason
    Jul 15 at 17:58










  • @Mason is there a simple way to migrate questions?
    – user189728
    Jul 15 at 17:59










  • Look it up on the Meta and post the link here. I dunno know. but I need to.
    – Mason
    Jul 15 at 17:59

















  • Your question doesn't make a whole lot of sense in the vocabulary of mathematics. Does there exist a function? Sure. You have just defined such a function. You mean is there a nice neat closed form? How many times does a recursive algorithm call upon itself might be a good CS question. I think your question might get more play on cs.stackexchange.com but I am not so sure of the community there and how they would respond.
    – Mason
    Jul 15 at 4:40






  • 1




    @Mason I initially intended to ask this on stackoverflow, but I felt it wasn't CS-related enough
    – user189728
    Jul 15 at 14:55










  • Oh no. Ackermann Function is right out of the CS Camp. They should be very interested: Check out: cs.stackexchange.com/questions/47227/…. The problem will be that you are going to have a more precise question to make much progress.
    – Mason
    Jul 15 at 17:58










  • @Mason is there a simple way to migrate questions?
    – user189728
    Jul 15 at 17:59










  • Look it up on the Meta and post the link here. I dunno know. but I need to.
    – Mason
    Jul 15 at 17:59
















Your question doesn't make a whole lot of sense in the vocabulary of mathematics. Does there exist a function? Sure. You have just defined such a function. You mean is there a nice neat closed form? How many times does a recursive algorithm call upon itself might be a good CS question. I think your question might get more play on cs.stackexchange.com but I am not so sure of the community there and how they would respond.
– Mason
Jul 15 at 4:40




Your question doesn't make a whole lot of sense in the vocabulary of mathematics. Does there exist a function? Sure. You have just defined such a function. You mean is there a nice neat closed form? How many times does a recursive algorithm call upon itself might be a good CS question. I think your question might get more play on cs.stackexchange.com but I am not so sure of the community there and how they would respond.
– Mason
Jul 15 at 4:40




1




1




@Mason I initially intended to ask this on stackoverflow, but I felt it wasn't CS-related enough
– user189728
Jul 15 at 14:55




@Mason I initially intended to ask this on stackoverflow, but I felt it wasn't CS-related enough
– user189728
Jul 15 at 14:55












Oh no. Ackermann Function is right out of the CS Camp. They should be very interested: Check out: cs.stackexchange.com/questions/47227/…. The problem will be that you are going to have a more precise question to make much progress.
– Mason
Jul 15 at 17:58




Oh no. Ackermann Function is right out of the CS Camp. They should be very interested: Check out: cs.stackexchange.com/questions/47227/…. The problem will be that you are going to have a more precise question to make much progress.
– Mason
Jul 15 at 17:58












@Mason is there a simple way to migrate questions?
– user189728
Jul 15 at 17:59




@Mason is there a simple way to migrate questions?
– user189728
Jul 15 at 17:59












Look it up on the Meta and post the link here. I dunno know. but I need to.
– Mason
Jul 15 at 17:59





Look it up on the Meta and post the link here. I dunno know. but I need to.
– Mason
Jul 15 at 17:59
















active

oldest

votes











Your Answer




StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);








 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2852175%2fis-there-an-equation-fk-m-n-n-where-n-is-the-number-of-applications-of-the%23new-answer', 'question_page');

);

Post as a guest



































active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes










 

draft saved


draft discarded


























 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2852175%2fis-there-an-equation-fk-m-n-n-where-n-is-the-number-of-applications-of-the%23new-answer', 'question_page');

);

Post as a guest













































































Comments

Popular posts from this blog

Color the edges and diagonals of a regular polygon

Relationship between determinant of matrix and determinant of adjoint?

What is the equation of a 3D cone with generalised tilt?