All Powers of 2 Are Equal to 1

We are going to prove by induction that,

For all integer n ≥ 0, 2 n = 1.

The claim is verified for n = 0; for indeed, 20 = 1.

Assume the equation is correct for all n ≤ k, that is

20 = 1, 21 = 1, 22 = 1, ..., 2k = 1.

From these we now derive that also 2k+1 = 1:

2k+1 = 22k / 2k-1 = 2k × 2k / 2k-1 = 1×1/1 = 1.

Induction is complete.

What went wrong?

References

  1. P. Brown, Proof by Induction Test

|Contact| |Front page| |Contents| |Geometry| |Up|

Copyright © 1996-2018 Alexander Bogomolny

The error in the proof is subtle. The inductive step had to be formulated as

Assume the equation is correct for all 0 ≤ n ≤ k, where k ≥ 0.

The derivation then clearly fails for k = 0; for,

21 = 20 / 2-1 = 21,

which is 2k+1 = 22k / 2k-1 for k = 0. So 21 = 21 does not actually establish that 21 = 1. And this then can't be used in deriving 22 = 1, and so on.

|Contact| |Front page| |Contents| |Geometry| |Up|

Copyright © 1996-2018 Alexander Bogomolny

71544899