|
We start with a sequence of numbers a1,a2,a2,... . Is it possible to simplify the expression: (a1-a2) + (a2-a3) + (a3-a4) + ... + (an-1-an)? Of course, the answer is yes. This problem is not difficult, for we inmediately notice that all terms but two (the first and the last) cancel each other out. So, the expression equals a1 - an. A sum like this is called a telescopic sum or an accordion sum. |
|
|
Another example: Calculate 1 + 3 + 5 + 7 + ... + (2n+1). You may wonder how to apply the telescopic property in this case. How do you replace each term by a difference? Well, 2k+1 = - k2 + (k+1)2, thus 1 + 3 + 5 + 7 + ... + (2n+1) = (-02 + 12) + (-12 + 22) + (-22 + 32) + ... + (-n2 + (n+1)2) = (n+1)2. Every time, the greastest problem is, how to replace a term by a difference. The telescopic property can often be used in sums with Fibonacci numbers. |