Let's make a table of values:
Code:
n | n^3 | 2^n
---------------
1 | 1 | 2
2 | 8 | 4
3 | 27 | 8
4 | 64 | 16
5 | 125 | 32
In that table we see that n^3 should be > 2^n for every n which is > 1
Let's prove it by induction:
Is it true for 2?
2^3 = 8 > 4 = 2^2
It is.
Presume that n^3 > 2^n for all whole numbers <= n
Now let's see what is the deal with (n+1)^3 and 2^(n+1)
(n+1)^3 = n^3 + 3 > 2^n + 3 (because n^3 > 2^n)
(n+1)^3 > 2^n + 3 > 2^n + 2 (because 3 > 2)
(n+1)^3 > 2^n + 2 = 2^(n+1)
So, we have proved that if n^3 > 2^n for some n, then (n+1)^3 > 2^(n+1), and since n^3 > 2^n for n=2, then, by the principle of mathematical induction, it is true for every whole number n which is larger than or equal to 2.