So I need to proof $n - n = 0$ for all n in the natural numbers, what we are allowed to use is: The predecessor and the $(-)$ operation
The predecessor base case: $P(0) = 0$
The predecessor step case: $P(S(n)) = n$, where $S(n)$ is the successor of $n$
$(-)$ base case: $n - 0 = n$
$(-)$ step case: $n - S(m) = P(n-m)$
My attempt:
For the base case: $0-0=0$ using base case of $(-)$
My induction hypothesis is that $n-n=0$ for all n in the natural numbers
Then my step case: $$S(n)-S(n)=P(S(n) -n)$$
I'm stuck right here I didn't know what to apply next. If I was able to switch $S(n)-n$ then I'll be able to apply the step case of $(-)$ then would have got my answer