F(n) = F(n-1) + F(n-2) is a Fibonacci number(F(1) = 1, F(2) = 1, F(3) = 2 so on...) I wonder why we need two base cases: $n = 3$ and $n = 4$ for the induction to show $F(n) \ge 2^{(n-1)/2} \;\forall n \ge 3.$ I keep thinking, but I need one base case, $n=3$. I might miss something.
I could see F(3) = 2 is true as (3)≥2 then I could assume that F(k) is true for ≥3 then I could prove $F(n) \ge 2^{(n-1)/2}$ is true for n = +1 as an inductive step. As a result, I could not find out why we need 3 and 4 instead of just 3
HINT: $F(2)=1$ is NOT greater than $2^{(2-1)/2}$, so you need two initial numbers $F(3)$ and $F(4)$ for the induction step.