top of page
Inaugurated by IN-SPACe
ISRO Registered Space Tutor

S7-SA3-0088

What is the Relationship between Variance and Standard Deviation?

Grade Level:

Class 12

AI/ML, Physics, Biotechnology, FinTech, EVs, Space Technology, Climate Science, Blockchain, Medicine, Engineering, Law, Economics

Definition
What is it?

Variance and Standard Deviation both measure how spread out data points are from the average (mean). Variance is the average of the squared differences from the mean, while Standard Deviation is simply the square root of the Variance. They are directly related: Standard Deviation is the 'un-squared' version of Variance, making it easier to understand in original units.

Simple Example
Quick Example

Imagine your cricket team's scores in 5 matches: 10, 90, 50, 60, 40. The average score is 50. If the Variance of these scores is 800, it means the scores are quite spread out. The Standard Deviation would be sqrt(800) which is about 28.28 runs, telling you that typically, scores differ from the average by about 28 runs.

Worked Example
Step-by-Step

Let's find the relationship for a small dataset: [2, 4, 6, 8].

1. Find the Mean (Average): (2 + 4 + 6 + 8) / 4 = 20 / 4 = 5.
---
2. Calculate the squared difference from the Mean for each data point:
(2 - 5)^2 = (-3)^2 = 9
(4 - 5)^2 = (-1)^2 = 1
(6 - 5)^2 = (1)^2 = 1
(8 - 5)^2 = (3)^2 = 9
---
3. Calculate the Variance: Sum of squared differences / Number of data points.
Variance = (9 + 1 + 1 + 9) / 4 = 20 / 4 = 5.
---
4. Calculate the Standard Deviation: Square root of the Variance.
Standard Deviation = sqrt(5) approx 2.236.
---
Answer: For this data, Variance is 5 and Standard Deviation is approx 2.236. Standard Deviation is the square root of Variance.

Why It Matters

Understanding variance and standard deviation is super important for many fields! In AI/ML, they help models understand data spread. In FinTech, they measure investment risk. In Medicine, they help analyze drug effectiveness. Knowing these can lead to exciting careers in data science, finance, or research.

Common Mistakes

MISTAKE: Confusing Variance with Standard Deviation, thinking they are the same thing. | CORRECTION: Remember that Standard Deviation is the square root of Variance. Variance is in squared units, while Standard Deviation is in the original units of the data.

MISTAKE: Forgetting to square the differences from the mean when calculating Variance. | CORRECTION: Always square (multiply by itself) the difference (data point - mean) before adding them up. This ensures positive values and gives more weight to larger deviations.

MISTAKE: Not taking the square root at the end to find Standard Deviation. | CORRECTION: After calculating Variance, the final step to get Standard Deviation is always to take its positive square root.

Practice Questions
Try It Yourself

QUESTION: If the Variance of a dataset is 100, what is its Standard Deviation? | ANSWER: Standard Deviation = sqrt(100) = 10.

QUESTION: A small shop sells chai at these prices (in Rupees) on 3 days: 10, 12, 14. Calculate the Variance and Standard Deviation. | ANSWER: Mean = (10+12+14)/3 = 12. Squared differences: (10-12)^2=4, (12-12)^2=0, (14-12)^2=4. Variance = (4+0+4)/3 = 8/3 approx 2.67. Standard Deviation = sqrt(8/3) approx 1.63.

QUESTION: If the Standard Deviation of daily mobile data usage (in GB) is 2.5 GB, what is the Variance of the data usage? | ANSWER: Variance = (Standard Deviation)^2 = (2.5)^2 = 6.25.

MCQ
Quick Quiz

Which statement correctly describes the relationship between Variance and Standard Deviation?

Variance is the square root of Standard Deviation.

Standard Deviation is the square root of Variance.

They are unrelated measures of spread.

Variance is always smaller than Standard Deviation.

The Correct Answer Is:

B

Standard Deviation is calculated by taking the square root of the Variance. This makes Standard Deviation easier to interpret as it is in the original units of the data.

Real World Connection
In the Real World

In cricket analytics, statisticians use Variance and Standard Deviation to understand how consistently a batsman scores or how unpredictable a bowler is. For example, a batsman with a high average but also high standard deviation in scores might be brilliant sometimes but also fail often, making him less reliable than one with a slightly lower average but very low standard deviation.

Key Vocabulary
Key Terms

VARIANCE: A measure of how spread out data points are from the mean, calculated as the average of the squared differences from the mean. | STANDARD DEVIATION: The square root of the variance, representing the typical distance of data points from the mean. | MEAN: The average of a set of numbers. | DATA SPREAD: How far apart the data values are from each other and from the mean.

What's Next
What to Learn Next

Great job understanding Variance and Standard Deviation! Next, you can explore 'Normal Distribution' and 'Z-scores'. These concepts use Standard Deviation to understand how common or rare a particular data point is within a dataset, which is super useful in data science!

bottom of page