The given recursive algorithm is as follows:
If an algorithm $P$ has one argument $n$ of type natural, it terminates when called with the argument $0$. When called with an argument $x > 0$, it terminates, except possibly for a call to itself with argument $y$, with $y < x$.
The statement: Such algorithm eventually terminates for all input.
I am supposed to prove the validity of this rule by using a strong induction.
So, to begin, I believe I am supposed to use $P(0)$ as the base case. But I am having trouble understanding what am I supposed to be proving from $P(0)$. Is it just the given information that $P(0)$ terminates?