The Hidden Geometry of Sequences
Have you ever looked at a sequence of numbers and felt like they were just a random collection of digits? In the world of JEE Advanced, nothing is ever truly random. Every recurrence relation is a story waiting to be told.
Today, we are going to decode the story of a1,a2,…,a11.
Phase 1
Decoding the Recurrence
We are given the recurrence ak=2ak−1−ak−2. At first glance, this might look like a standard recursive definition.
If we rearrange this equation, we get ak−ak−1=ak−1−ak−2. This is the "Aha!" moment.
This equation tells us that the gap between the k-th term and the (k−1)-th term is exactly the same as the gap between the (k−1)-th term and the (k−2)-th term. This is the very definition of an Arithmetic Progression (A.P.).
We have a first term a1=15 and a common difference d. Our sequence is simply 15,15+d,15+2d,…,15+10d.
Phase 2
The Algebraic Grind
We are told that the mean of the squares of these eleven terms is 90. Mathematically, this is expressed as:
111i=1∑11ai2=90⇒i=1∑11ai2=990
To handle this, let us use the general term ai=15+(i−1)d. To make our lives easier, let us shift the index by setting j=i−1.
Now, our summation becomes:
Expanding this, we get ∑j=010(225+30jd+j2d2)=990. By distributing the summation, we obtain:
225j=0∑101+30dj=0∑10j+d2j=0∑10j2=990
Phase 3
The Quadratic Battle
Now, we use our standard summation formulas. The sum of 1 from j=0 to 10 is 11. The sum of j from 0 to 10 is 210×11=55.
The sum of j2 from 0 to 10 is:
Plugging these in, we get 225(11)+30d(55)+385d2=990. This simplifies to 2475+1650d+385d2=990.
Rearranging, we arrive at the quadratic:
Dividing by 55, we get 7d2+30d+27=0. Factoring this, we find (7d+9)(d+3)=0, giving us d=−3 or d=−9/7.
Phase 4
The Gatekeeper
We have two candidates for d. But we must respect the constraint 27−2a2>0.
Since a2=15+d, this becomes 27−2(15+d)>0, or −3−2d>0, which means d<−1.5.
Our candidate d=−3 is clearly less than −1.5, but d=−9/7≈−1.28 is not. Thus, we must reject −9/7 and accept d=−3.
Phase 5
The Elegant Finish
Finally, we need the mean of the sequence: 11a1+a2+⋯+a11. In an A.P. with an odd number of terms, the mean is simply the middle term, a6.
Since a6=a1+5d, we calculate:
The symmetry of the sequence around the middle term leads us to a beautiful, clean result of 0. You have conquered the problem!