On the previous midterm, there was a question that I couldn't solve. It gave us this sequence
The sequence $$a_0, a_1, a_2,... $$is defined by $$a_0 = 1,$$ and for all integers $$n > 0,$$ $$a_n = a_{\lfloor n/2 \rfloor} + a_{\lfloor 2n/3 \rfloor} + n. $$
Prove by Strong Induction that $a_n >4n$ for all integers $n>a$. where a is the integer you chose in part (b).
I got to the part where I figured out that the lowest integer that could be used was 3, but I didn't know how to prove by strong induction, as I had forgotten the difference between regular induction and strong induction.
Would 3 be the basis of our proof? If so? What would the inductive step look like?
You can check that $$\left\lfloor\frac{n}2\right\rfloor\ge\frac{n-1}2\qquad\text{and}\qquad\left\lfloor\frac{2n}3\right\rfloor\ge\frac{2n-2}3$$ for all $n$. If $\frac{1}2(n-1)$ and $\frac{1}3(2n-2)$ are both at least $3$, your induction hypothesis tells you that
$$a_{\lfloor n/2\rfloor}>4\cdot\frac{n-1}2=2n-2$$
and
$$a_{\lfloor 2n/3\rfloor}>4\cdot\frac{2n-2}3=\frac{8}3n-\frac{8}3\;.$$
Add those and $n$, and you find that
$$a_{\lfloor n/2\rfloor}+a_{\lfloor 2n/3\rfloor}+n>\frac{17}3n-\frac{14}3\;.$$
This is good enough provided that
$$\frac{5}3n-\frac{14}3\ge 0\;,$$
or $5n\ge 14$. In particular, it holds for all $n\ge 3$. However, you need $n\ge 7$ to ensure that $\frac{1}2(n-1)\ge 3$ and $\frac{1}3(2n-2)\ge 3$, so your basis step in this approach has to be to check by hand lthat the result holds for $n=3,4,5,6$.