A ( m , n ) = ⎩ ⎨ ⎧ n + 1 A ( m − 1 , 1 ) A ( m − 1 , A ( m , n − 1 ) ) if m = 0 if m > 0 and n = 0 if m > 0 and n > 0
Consider the Ackermann function as described above.
Find A ( 3 , 3 ) .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Anyone trying to solve this by hand: the Ackermann fucntion itself is called 2432 times, so just don't.
1 2 3 4 5 6 7 8 9 |
|
This outputs 61 as your answer.
Contrary to what @Kai Ott recommends, I actually did the problem by hand. After 45 minutes of writing 65 Ackermann functions, I noticed certain patterns that allowed me to finish the problem in other 15 minutes, having written only 105 out of the 2432 Ackermann functions.
Document of my resolution https://drive.google.com/file/d/0B6ZL97ZT42IhQzVDZFJuZlhsMG8/view?usp=sharing
I'm curious. Why waste so much time ?
Didn't actually think it would take that long. Plus, it was really entertaining and challenging, and I like being challenged.
That's what I did. I started off by finding the pattern for A(1,x) which always gives x+2 and then I found it for A(2,x) which always gives 2x+3. With these things in mind, you can solve in 9 lines.
Problem Loading...
Note Loading...
Set Loading...
A simple C++ code :