I have a general question regarding induction, with an example provided. I'd also like any critique in my proof.
Suppose I'm trying to prove the following.
Define a sequence of integers a0, a1, a2, ... as follows:
$a_i$ = 2 if 0 $\le$ i $\le$ 2
$a_i$ = $a_{i-1}$ + $a_{i-2}$ + $a_{i-3}$ for i > 2
Prove that $a_n$ < $2^n$ for every integer n $\ge$ $2.$
I approach the proof as follows, using complete induction.
Base case:
1) Let i = 2, then $a_2$ = 2, and $2$ $\lt$ $2^2$ is true.
2) Let i = 3, then
$a_3$ = $a_{3-1}$ + $a_{3-2}$ + $a_{3-3}$
= 2 + 2 + 2
= 6 $\lt$ $2^3$ is true.
Induction Hypothesis: Suppose P(j) holds such that 2 $\le$ j < k. We need to show that p(k) holds, ie, $a_k$ $\lt$ $2^k$.
Induction Step:
$a_k$ = $a_{k-1}$ + $a_{k-2}$ + $a_{k-3}$
$\lt$ $2^{k-1}$ + $2^{k-2}$ + $2^{k-3}$ [By our induction hypothesis, k - 1, k - 2, and k-3 are all less than k and hold by IH.]
$\lt$ $2^k ({2^{-1} + 2^{-2} + 2^{-3}})$ [Algebra]
$\lt$ $2^k$(${7/8}$)
$\lt$ $2^k(7/8)$ $\lt$ $2^k$ [This to me is trivially true, and where I would like critique on. Is there a better way of showing this is true?]
We have that $a_k$ < $2^k$, which is what we wanted to show.
Generally with my induction proofs I always get the inequality in some form such that it is evident to see that it is less than what we want to show or "substitute" into the inequality (ie: if a > b and b > c then a > c). Sometimes this involves a smaller remark on the side that I attempt to build an inequality to show this is true).
How can I show these sorts of steps better? It's even more tricky with polynomials and such.