Inductive proof with $2 k$ instead of $k+1$

335 Views Asked by At

Is it valid to perform an induction proof using $2 k$ as opposed to using $k + 1$ in your inductive step? I tried searching but all I saw is that induction is done using $k + 1$.

2

There are 2 best solutions below

0
On BEST ANSWER

Induction is done with $(k+1)$ so that the proposition can be proved for all integers.

If you prove a base case $n$ and prove the inductive step using $(n+1)$ then you have proved the proposition for $n,\,n+1,\,n+2\,...$ i.e. all integers greater than or equal to $n$.

If you use $2n$ then you have instead proved that the proposition is true for $n,\,2n,\,4n,\,8n,\,16n\,...$ which is valid, but generally not as useful.

0
On

It depends on what you want to prove. You could use the induction step $2k \rightarrow$ $2k+2$ to prove something for even numbers $n\in \mathbb Z$

You might as well make it arbitrary and choose a different step. $k \rightarrow k+m$ to prove something for integers of the form $n_o+t*m$ where $n_o$ is the base case

An example of "odd-steps" would be Cauchy-Induction which is also called "forward/backward-induction"