vu

Notes for Vanderbilt University

View the Project on GitHub

Lecture 02-13-17

Ackermann’s Function

What is it?

A(m, n) = 
    n + 1                       if m = 0
    A(m - 1, 1)                 if m > 0 and n = 0
    A(m - 1, A(m, n - 1))       if m > 0 and n > 0

Computability of Ackermann’s Function