In the method of induction we take for granted the proposition P(k) and we want to prove P(k+1). Can we start from P(k+1) and prove from that that P(k) is true, or is it a wrong practise?
Mathematical induction method
49 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail AtThere are 3 best solutions below
On
That is wrong. Suppose, for instance that $T(n)$ is $n\leqslant1$. Then we have $T(1)$ (since it means that $1\leqslant1$). Now, suppose that we have $T(k)$; in other words, $k\leqslant 1$. But then $k-1<k\leqslant1$ and so $k-1\leqslant 1$. So, I proved that $T(k)\implies T(k-1)$. But I hope that I don't think that$$(\forall n\in\mathbb N):n\leqslant1$$is true.
On
The principle of induction is
prove for some $k_0$;
prove that if true for $k$, then true for $k+1$.
Combining these two pieces, the result is guaranteed true for
$$k_0, k_0+1, k_0+2, k_0+3, \cdots$$
If you reverse the inductive argument, the result is guaranteed true for
$$k_0, k_0-1, k_0-2, k_0-3, \cdots$$
Often, the statement to prove doesn't make sense for $k<0$ or $k\le0$, and usually you want to prove for all $k\ge k_0$, not the other way.
It is wrong/useless. In mathematical induction you want to move forward, not backward.