I want to get the number of additions fib(n) performs in the entire course of it's execution. We know:
int fib(int n) {
if (n==1||n==2) {
return 1;
} else {
return fib(n-1) + fib(n-2);
}
}
I get the formula that for the nth term the number of additions is fib(n)-1. I want to prove by induction that this formula generally holds. I can satisfy the base conditions, but how to prove it for the (n+1)th term? Can you help me out?
