How can we prove by induction the relation $A(x,y)>y, \forall x,y$, where A(x,y) is the Ackermann function?
When we have to prove a relation $P(n), n\geq 0$, we do the following steps:
we show that it stands for $n=0$
we assume that it stands for n=k (Induction hypothesis)
we want to shw that it stands for $n=k+1$ using the Induction hypothesis.
Which are the steps in this case where we have two variables??
For a general function (ignoring for the moment that you want Ackermann) it depends upon the way you want to traverse the pairs $(x, y)$.
Three ways occur to me:
For each $x$, do all the $y$'s.
For each $y$, do all the $x$'s.
For each $n$, do all the $(x, y)$ pairs with $x+y = n$. You can have $x$ go from $1$ to $n-1$ (so $y$ goes from $n-1$ to $1$), or $y$ go from $1$ to $n-1$ (so $x$ goes from $n-1$ to $1$).
Each of these requires a different proof strategy.
By looking how the function is defined recursively, you can decide which of these would work best. Essentially, choose the one that mimics how the function recurses.