Analyzing the Setup
Welcome, fellow traveler on the path to JEE mastery. Today, we are not just solving a problem; we are uncovering the hidden architecture of a sequence.
We are given a recurrence relation:
an+2=2an+1−an+1
with the starting conditions
a0=0 and
a1=0.
Our mission is to find the value of the infinite sum:
S=n=2∑∞7nan
At first glance, this looks like a daunting task. The secret lies in seeing the 'soul' of the sequence.
Decoding the Recurrence
Let us look at the recurrence relation again:
an+2=2an+1−an+1. If we rearrange this, we get:
an+2−an+1=an+1−an+1
This is the 'Aha!' moment. If we define a new sequence bn=an+1−an, the equation becomes bn+1=bn+1.
This tells us that the difference between consecutive terms is increasing by exactly 1 at every step. Since b0=a1−a0=0−0=0, the sequence bn is simply the sequence of natural numbers: bn=n.
The Quadratic Nature
Now that we know the differences, we can reconstruct
an. We know that:
an=a0+k=0∑n−1(ak+1−ak)
Since
a0=0 and
ak+1−ak=bk=k, we have:
an=k=0∑n−1k=2n(n−1)
Our sequence is quadratic. If you were to plot these points, you would see a perfect parabola emerging from the discrete values.
The Power Series Magic
Now, we tackle the infinite sum:
S=n=2∑∞7nan=n=2∑∞2⋅7nn(n−1)
We can pull the constant
1/2 out:
S=21n=2∑∞n(n−1)(71)n
This is where the beauty of calculus shines. We start with the geometric series:
n=0∑∞xn=1−x1
Differentiating once gives:
n=1∑∞nxn−1=(1−x)21
Differentiating a second time gives:
n=2∑∞n(n−1)xn−2=(1−x)32
To match our target sum, we multiply by
x2 to get:
n=2∑∞n(n−1)xn=(1−x)32x2
The Grand Finale
We are almost there. We substitute
x=1/7 into our derived formula. Our sum
S is:
S=21×(1−x)32x2=(1−x)3x2
Plugging in
x=1/7: the numerator is
(1/7)2=1/49, and the denominator is:
(1−1/7)3=(6/7)3=343216
Thus, the final calculation yields:
S=216/3431/49=491×216343=2167
The elegance of this result—the way the powers of 7 cancel out—is the hallmark of a well-crafted JEE problem. You have successfully navigated the recurrence, the summation, and the power series.