vote up -2 vote down star

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?

flag
6  
This sounds like homework. – Kevin Sep 29 at 17:36
i am a teaching assistant and i am supposed to tell the proof for students. – unknown (yahoo) Sep 29 at 17:39
37  
I pity your students. – jeffamaphone Sep 29 at 17:40
2  
Just look at the code; to calculate f(n+1) you have to calculate f(n) and f(n-1), then add them together. So a(n+1) = a(n) + a(n-1) + 1. Can you take it from there? – Beta Sep 29 at 17:50
2  
If you're a teaching assistant, then shouldn't you already know this stuff? – George Stocker Sep 29 at 18:06
show 7 more comments

closed as not a real question by jeffamaphone, George Stocker, Adam Rosenfield, ChssPly76, Ólafur Waage Sep 30 at 8:35

4 Answers

vote up 1 vote down

I know you asked for the proof by induction, but say you couldn't tell the answer right away.. since this is a programming forum, you can try to get the result from experiment. Define a global variable, and each time you perform an addition, increment the counter. Do this for say all number 2 to 10

int count = 0;

int fib(int n)
{
    if (n==1||n==2) {
        return 1;
    } else {
        ::count++;
        return fib(n-1) + fib(n-2);
    }
}

int main()
{
    for (int i=2; i<10; ++i) {
        ::count = 0;
        cout << "fib(" << i << ")=" << fib(i) << " --> " << ::count << endl;
    }

    return 0;
}

This will give you:

fib(2)=1 --> 0
fib(3)=2 --> 1
fib(4)=3 --> 2
fib(5)=5 --> 4
fib(6)=8 --> 7
fib(7)=13 --> 12
fib(8)=21 --> 20
fib(9)=34 --> 33
fib(10)=55 --> 54
link|flag
1  
why the downvote, the answer is simple and already given by @ralu. This is just to show how to to go about solving a similar problem in case you didn't have an obvious answer – Amro Sep 30 at 8:36
vote up 4 vote down

Each time you calculate recursion you have to make exactly

a(n)=a(n-1)+a(n-2)+1 sums (that is number of sums for fib(n-1),fib(n-2), and +1 for current sum and this is equaion you have probaby missed)

than

a(n)= (fib(n-1)-1)+(fib(n-2)-1)+1 =fib(n-1)+fib(n-2)-1 =fib(n)-1

That is it

link|flag
vote up 1 vote down

You are given the formula no. of additions

a(n) = fib(n)-1

Now, you prove n = 1 and n = 2.

Then assume a(k) = fib(k) - 1 (*) is true.

Use (*) to prove for a(k+1)

link|flag
thats where i got struck......... – unknown (yahoo) Sep 29 at 17:43
You need to express a(k+1) with an expression using a(k), a(k-1), ..., a(1) somehow, so you can apply your assumption. – David Sep 29 at 17:54
See Beta's comment above. – David Sep 29 at 17:58
ya i am able to get a(k+1)=a(k)+a(k-1)+1 so what can i infer from that – unknown (yahoo) Sep 29 at 17:59
Using the assumption: a(k) = fib(k) -1, a(k-1) = fib(k-1) -1. Is the answer obvious now? – David Sep 29 at 18:10
vote up 5 vote down

Write out a few steps and the answer should pop out at you.

And if you're a TA this is a great learning opportunity for you.

link|flag
you want me to write the few steps i have dong.......... – unknown (yahoo) Sep 29 at 17:40
No, calculate a few fib(n) explicitly and you'll see what the answer is in terms of n. – John W Sep 29 at 17:44
i did those steps but i got it as fib(n)-1 i want it to prove by mathematical induction – unknown (yahoo) Sep 29 at 17:47
Actually, I don't think induction is the best way. Start with Beta's formula a(n) = a(n-1) + a(n-2) + 1 and substitute the appropriate expressions on the right side until you get to values you know, like a(1) and a(2). – John W Sep 29 at 19:35

Not the answer you're looking for? Browse other questions tagged or ask your own question.