We have a function that is defined recursively by $f(0)=f_0$, $f(1)=f_1$ and $f(n+2) = f(n)+f(n+1)$ for $n\geq0$
For $n\geq0$, let $c(n)$ be the total number of additions for calculating $f(n)$ using $f_0$ and $f_1 $ as input with $c(0) = 0$ and $c(1) = 0$. For $n \geq 2$, express $c(n)$ using $c(n-1) $ and $c(n-2)$
Determine if $c(n)\geq2^{(n-2)/2}$ for $n\geq2$ and prove your answer.
I'm lost as to what to do with this question.
Try doing by induction:
Base step: $$ c(2) = 2 \ge 2^{(2-2)/2} = 1$$
Inductive step:
if $c(n) \ge 2^{(n-2)/2} \rightarrow c(n+1) \ge 2^{((n+1)-2)/2}$
You probably need to think the way to calculate how $c(n)$ increases whit each value of $n$