I need help executing a mathematical Induction for the following equation:
add(x,succ(y)) = succ(add(x,y))
I know that I have to either substitute n or m for "zero" for the Base Case, but I don't know what exactly I have to do after this.
To show: add(x,succ(y)) = succ(add(x,y))
Proof: Induction over x
Base Case: x = zero
To show: add(zero,succ(y)) = succ(add(x,y))
Proof
add(zero,succ(y))
add(succ(y))
This is my attempt so far but I don't know how to follow up on this. I would really appreciate if someone could help me with this one.