
Laura G. answered 04/29/14
Is math confusing? I've been in your shoes. Let me help!
It looks like that you're working with here is the Fibonacci sequence, which basically looks like this:
1 + 1 + 2 + 3 + 5+ 8 + 13+ ....
Each term in the Fibonacci sequence is the sum of the two terms before it. So, Fn= Fn-1+ Fn-2
So, how is that related to this? Well, here you're adding up the squares of each Fibonacci term. Let's do a few of these terms and see if we notice a pattern:
12 + 12 + 22=6
12 + 12 + + 22 + 32 =15
12 + 12 + + 22 + 32 + 52 =40
12 + 12 + + 22 + 32 + 52 + 82= 104
What I'm going to do now is factor these terms:
6 = 3 *2
15 = 3 * 5
50 = 5 * 8
104 = 8 * 13
If you notice, we're seeing a pattern where the sum of the squares of the sequence is the product of the the nth term in the Fibonacci sequence times the the next term in the sequence. So, we can say that the sum can be written as:
Fn* Fn+1
To prove it, let's plug in what we figured out to be the sum and see if the sum would be the same for the next term- this is called a proof by induction:
(Fn* Fn+1) = our sum of the sequence up to this point
(Fn+1)2 = the next term in the sequence
So, we can write the sum of the sequence when adding the next term as:
(Fn*Fn+1) + (Fn+1)2
We can factor out an Fn+1 term:
Fn+1(Fn+Fn+1)
Based on our definition of what Fn is, we can say that the terms in the parentheses combine to Fn+2. So, our new product is:
= Fn+1* Fn+2
Hope this helps!
Karen M.
04/29/14