EZ Statistics

Covariance

2. Select Two Columns

Learn More

Understanding Covariance

Definition

Covariance is a measure of the joint variability of two variables. It indicates how two variables change together and quantifies the strength and direction of their linear relationship.

Formula

Sample Covariance:

cov(X,Y)=i=1n(xixˉ)(yiyˉ)n1cov(X,Y) = \frac{\sum_{i=1}^n (x_i - \bar{x})(y_i - \bar{y})}{n-1}

Where:

  • nn = sample size
  • xi,yix_i, y_i = individual values of variables X and Y
  • \ar{x}, \ar{y} = sample means of X and Y

Interpretation Guidelines

Positive covariance indicates variables tend to move in the same direction
Negative covariance indicates variables tend to move in opposite directions
Zero covariance suggests no linear relationship between variables

Important Considerations

  • The magnitude of covariance depends on the units of measurement
  • Covariance is sensitive to outliers and scale changes
  • Only measures linear relationships; may miss non-linear patterns

Practical Example

Let's calculate the covariance between hours studied and exam scores for 5 students:

StudentIdHours Studied (X)Exam Score (Y)
1275
2380
3485
4590
5695

Step 1: Calculate the means:xˉ=2+3+4+5+65=4\bar x = \frac{2 + 3 + 4 + 5 + 6}{5} = 4 yˉ=75+80+85+90+955=85\bar y = \frac{75 + 80 + 85 + 90 + 95}{5} = 85

Step 2: Calculate (xixˉ)(yiyˉ)(x_i - \bar x)(y_i - \bar y) for each pair:

  • (24)(7585)=20(2 - 4)(75 - 85) = 20
  • (34)(8085)=5(3 - 4)(80 - 85) = 5
  • (44)(8585)=0(4 - 4)(85 - 85) = 0
  • (54)(9085)=5(5 - 4)(90 - 85) = 5
  • (64)(9585)=20(6 - 4)(95 - 85) = 20

Step 3:Sum the results and divide by (n1n - 1): cov(X,Y)=20+5+0+5+2051=504=12.5cov(X,Y) = \frac{20 + 5 + 0 + 5 + 20}{5 - 1} = \frac{50}{4} = 12.5

Interpretation: The positive covariance (12.5)(12.5) indicates that there's a positive relationship between hours studied and exam scores. As the number of hours studied increases, exam scores tend to increase as well.

Related Links

Correlation Coefficient Calculator

Simple Linear Regression Calculator

Help us improve

Found an error or have a suggestion? Let us know!