0

How do I prove that $n<2^n$ for any natural number $n$, assuming basic facts about the algebra of exponents?

Benji Altman
  • 1,237
3.14Pie
  • 93
  • 1
  • 2
  • 7

1 Answers1

2

This proof is by induction on $n$. For the base case consider when $n = 1$ so we get $1 < 2^{1}$ which is true. Now suppose the property that $n < 2^{n}$ is true for all $n \in \mathbb{N}$. Then for some integer $k = n + 1$ we get

\begin{align*} k &< 2^{k}\\ n + 1 &< 2^{n + 1}\\ n + 1 &< 2^{n} + 2^{n}\\ 1 &< 2^{n} \end{align*} Which is true by the induction hypothesis.