Find variance and standard deviation of first 10 natural numbers

hard CBSE-9CBSE-10CBSE-11CBSE-12JEE-MAIN 3 min read

Question

Find the variance and standard deviation of the first 10 natural numbers: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10.

Solution — Step by Step

The first 10 natural numbers are: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10.

xˉ=xin=1+2+3++1010=n(n+1)/2n=10×112×10=5510=5.5\bar{x} = \frac{\sum x_i}{n} = \frac{1+2+3+\cdots+10}{10} = \frac{n(n+1)/2}{n} = \frac{10 \times 11}{2 \times 10} = \frac{55}{10} = 5.5

We need xi2=12+22+32++102\sum x_i^2 = 1^2 + 2^2 + 3^2 + \cdots + 10^2.

Using the formula: i=1ni2=n(n+1)(2n+1)6\sum_{i=1}^{n} i^2 = \dfrac{n(n+1)(2n+1)}{6}

xi2=10×11×216=23106=385\sum x_i^2 = \frac{10 \times 11 \times 21}{6} = \frac{2310}{6} = 385

The computational formula for variance is:

σ2=xi2nxˉ2\sigma^2 = \frac{\sum x_i^2}{n} - \bar{x}^2 σ2=38510(5.5)2=38.530.25=8.25\sigma^2 = \frac{385}{10} - (5.5)^2 = 38.5 - 30.25 = \mathbf{8.25}
σ=σ2=8.25=334=332\sigma = \sqrt{\sigma^2} = \sqrt{8.25} = \sqrt{\frac{33}{4}} = \frac{\sqrt{33}}{2} σ=5.74522.87\sigma = \frac{5.745\ldots}{2} \approx \mathbf{2.87}

Variance = 8.25, Standard Deviation = 3322.87\dfrac{\sqrt{33}}{2} \approx 2.87

Why This Works

Variance measures how spread out the data is from its mean. The formula σ2=xi2nxˉ2\sigma^2 = \frac{\sum x_i^2}{n} - \bar{x}^2 comes from expanding the definitional formula σ2=(xixˉ)2n\sigma^2 = \frac{\sum (x_i - \bar{x})^2}{n}.

The computational form avoids calculating (xixˉ)(x_i - \bar{x}) for each value individually — which is tedious. Instead, we compute the mean of squares minus the square of the mean. This is algebraically identical but computationally faster.

Standard deviation is just the positive square root of variance. It has the same units as the data, making it interpretable: our standard deviation of ~2.87 tells us the typical deviation from the mean of 5.5 is about 2.87 units.

Alternative Method — Direct Deviation Method

Calculate (xixˉ)2(x_i - \bar{x})^2 for each value:

xix_ixixˉx_i - \bar{x}(xixˉ)2(x_i - \bar{x})^2
1-4.520.25
2-3.512.25
3-2.56.25
4-1.52.25
5-0.50.25
60.50.25
71.52.25
82.56.25
93.512.25
104.520.25
Sum82.5
σ2=82.510=8.25\sigma^2 = \frac{82.5}{10} = 8.25 \quad \checkmark

Both methods agree. The computational method (Step 3) is faster for exams.

Common Mistake

Using n1n-1 instead of nn in the denominator. In CBSE/NCERT, population variance uses nn in the denominator: σ2=(xixˉ)2n\sigma^2 = \frac{\sum(x_i - \bar{x})^2}{n}. The formula with n1n-1 is sample variance (used in statistics courses). For board problems on the first nn natural numbers, always use nn.

For the first nn natural numbers, there’s a direct formula: variance =n2112= \dfrac{n^2 - 1}{12}. For n=10n = 10: σ2=100112=9912=8.25\sigma^2 = \dfrac{100-1}{12} = \dfrac{99}{12} = 8.25 ✓. Memorise this shortcut — it works for any arithmetic series with common difference 1 starting at 1.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next