Analyzing the Setup
Imagine standing on a vast, perfectly flat plain. You have 1000 markers placed at intervals of k.
This is not just a sequence; it is an Arithmetic Progression, a rhythmic heartbeat of numbers: k,2k,3k,…,1000k.
In the world of JEE, recognizing the structure of a problem is half the battle won.
The Median Trap
In statistics, the median is the heart of the data. However, we face a classic JEE trap here because we have 1000 terms, which is an even number.
There is no single middle term. We must find the average of the two middlemost terms, which are the 500th term (500k) and the 501st term (501k).
Their average is our pivot point, the axis of symmetry:
The Mean Deviation
Now, we calculate the Mean Deviation (MD), which is the average distance of all points from this median.
Mathematically, this is expressed as:
MD=10001i=1∑1000∣ik−500.5k∣
Factoring out the constant k, we simplify the expression to:
MD=1000ki=1∑1000∣i−500.5∣
The Power of Symmetry
Do not calculate 1000 absolute values individually. Look at the sequence: the distance of the 1st term (1k) from 500.5k is identical to the distance of the 1000th term (1000k) from 500.5k.
By exploiting this symmetry, we can calculate the sum for the first 500 terms and simply double it:
MD=1000k×2i=1∑500(500.5−i)
The Final Calculation
Expanding the summation, we get:
2×[(500×500.5)−i=1∑500i]
Using the sum of natural numbers formula, 2n(n+1), the sum of the first 500 natural numbers is:
The first part of the expression is 500×500.5=250,250. Subtracting these values gives 125,000, and multiplying by 2 yields 250,000.
Thus, the Mean Deviation is:
Given MD=500, we solve 250k=500 to find k=2. The question asks for k2, therefore:
Result = 4