Analyzing the Setup
Welcome, fellow traveler on the path to JEE excellence. Today, we are going to peel back the layers of a seemingly intimidating recurrence relation.
Our sequence
⟨an⟩ is defined by the relation:
2an+2=5an+1−3an
The starting points are given as
a0=0 and
a1=21. At first glance, it looks like a standard linear recurrence, but there is a hidden elegance waiting to be discovered.
The Art of Rearrangement
Whenever you see a recurrence where the coefficients sum to zero, pause. Look at the equation: 2an+2−5an+1+3an=0.
Since
2−5+3=0, we can rewrite this as:
2an+2−2an+1=3an+1−3an
By factoring, we obtain:
2(an+2−an+1)=3(an+1−an)
Imagine you are standing on a staircase. If we define
dn=an+1−an, our equation becomes
2dn+1=3dn, or:
dn+1=23dn
We have just unmasked a
geometric progression. The differences between consecutive terms scale by a factor of
23 at every step.
Telescoping
The Bridge to the General Term
We know
dn is a geometric progression with the first term
d0=a1−a0=21. Thus, its general term is:
dk=21(23)k
Think of
an as the sum of all the "jumps" taken to reach the
n-th term:
an=a0+k=0∑n−1(ak+1−ak)
Since
a0=0, we sum the geometric progression:
an=k=0∑n−121(23)k
Using the sum formula for a G.P.,
S=ar−1rn−1, we get:
an=21⋅23−1(23)n−1
The denominator
23−1 is exactly
21, which cancels out perfectly. We are left with the elegant result:
an=(23)n−1
The Final Summation
We need to calculate the sum
∑k=1100ak. Substituting our expression for
ak, we have:
k=1∑100((23)k−1)=k=1∑100(23)k−k=1∑1001
The second part is trivial: it is simply
100. The first part is a geometric series sum:
23−123((23)100−1)=3((23)100−1)
Putting it all together, our total sum is:
3((23)100−1)−100
Since
a100=(23)100−1, the final result can be expressed as:
3a100−100
This is the essence of JEE mathematics—not just calculation, but the discovery of structure. You have mastered the sequence; now go forth and master the exam.