The Mystery of the Missing Variable
Welcome, future engineers! Today, we are diving into a classic statistics problem. It might look like a simple list of numbers, but statistics is the language of uncertainty, and mastering it is crucial for your JEE journey.
We are given a dataset: 7,8,9,7,8,7,λ,8. We know the mean is 8, and our mission is to find the variance. But wait—there is a ghost in the machine! A variable λ is hiding in our data. Before we can calculate the variance, we must unmask this variable.
Phase 1
Balancing the Seesaw
Imagine the mean as a fulcrum on a seesaw. For the system to be in equilibrium, the sum of all values must be perfectly balanced.
The definition of the mean, xˉ, is the sum of all observations divided by the total count, n. Mathematically, we write this as:
Here, we have 8 observations, and the mean is 8. So, we set up our equation:
Adding the known constants, we get 54+λ in the numerator. Cross-multiplying gives us 54+λ=64.
Solving this, we find λ=10. Just like that, the mystery is solved! Our dataset is complete: 7,8,9,7,8,7,10,8.
Phase 2
The Power of the Computational Formula
Now, we need the variance. You might be tempted to subtract the mean from every single term, square the result, and then average them. While that works, it is a recipe for disaster in a high-pressure exam environment.
Instead, let us use the elegant computational formula:
This formula is a gift to students. It separates the sum of squares from the square of the mean, allowing us to compute the variance in one clean sweep. We already know xˉ=8, so (xˉ)2=64.
Phase 3
The Final Execution
Let us calculate ∑xi2. We square each term: 72=49, 82=64, 92=81, 72=49, 82=64, 72=49, 102=100, and 82=64.
Summing these up: 49+64+81+49+64+49+100+64=520.
Now, we plug this into our variance formula:
Performing the division, 520÷8=65. Finally, we subtract: 65−64=1.
The variance is exactly 1. It is beautiful, isn't it? A complex-looking problem reduced to a clean, single integer. Keep this methodical approach in your toolkit, and no statistics problem will ever stand in your way!