Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Combined Standard Deviation: Meaning, Formula, and Example

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

A scientific measure of dispersion, which is widely used in statistical analysis of a given set of data is known as Standard Deviation. Another name for standard deviation is Root Mean Square Deviation. Standard Deviation is denoted by a Greek Symbol σ (sigma). Under this method, the deviation of values is taken from the arithmetic mean of the given set of data. 

According to Spiegel, “The Standard Deviation is the square root of the arithmetic mean of the squares of all deviations. Deviations being measured from arithmetic mean of the items.”

Standard Deviation is considered to be the best way of determining the dispersion of a data set. It is because standard deviation takes into account every value of a data set along with its algebraic signs. 

What is Combined Standard Deviation?

Calculating standard deviation of two or more series is known as Combined Standard Deviation. The formula of Combined Standard Deviation in the case of two series is:

\sigma_{1,2}=\sqrt{\frac{N_1\sigma_1^2+N_2\sigma_2^2+N_1d_1^2+N_2d_2^2}{N_1+N_2}}

Where,

\sigma_{1,2} = Combined Standard Deviation of two groups

\sigma_{1} =Standard Deviation of first group

\sigma_{2} = Standard Deviation of second group

d_1^2=(\bar{X_1}-\bar{X}_{1,2})^2

d_2^2=(\bar{X_2}-\bar{X}_{1,2})^2

\bar{X}_{1,2} = Combined Arithmetic Mean of two groups

\bar{X}_1 = Arithmetic Mean of first group

\bar{X}_2 = Arithmetic Mean of second group

N_1 = Number of Observations in the first group

N_2 = Number of Observations in the second group

The formula of Combined Standard Deviation can be extended up to N number of series. For example, if there are three series, then the formula for Combined Standard Deviation will be:

\sigma_{1,2,3}=\sqrt{\frac{N_1\sigma_1^2+N_2\sigma_2^2+N_3\sigma_3^2+N_1d_1^2+N_2d_2^2+N_3d_3^2}{N_1+N_2+N_3}}

Where,

d_1^2=(\bar{X}_1-\bar{X}_{1,2,3})^2

d_2^2=(\bar{X}_2-\bar{X}_{1,2,3})^2

d_3^2=(\bar{X}_3-\bar{X}_{1,2,3})^2

Example:

With the help of the following information, calculate Combined Standard Deviation.

Information Table

 

Solution:

First of all, we have to calculate Combined Mean of the given two series.

Combined~Mean(\bar{X}_{1,2})=\frac{N_1\bar{X}_1+N_2\bar{X}_2}{N_1+N_2}

In the given question,

\bar{X}_1=20,\bar{X}_2=30,N_1=30,N_2=20

\bar{X}_{1,2}=\frac{(30\times20)+(20\times30)}{30+20}

=\frac{1,200}{50}=24

Combined Standard Deviation:

\sigma_{1,2}=\sqrt{\frac{N_1\sigma_1^2+N_2\sigma_2^2+N_1d_1^2+N_2d_2^2}{N_1+N_2}}

d_1=\bar{X}_1-\bar{X}_{1,2}=20-24=-4

d_2=\bar{X}_2-\bar{X}_{1,2}=30-24=6

\sigma_{1,2}=\sqrt{\frac{30(4)^2+20(5)^2+30(-4)^2+20(6)^2}{30+20}}

\sigma_{1,2}=\sqrt{\frac{480+500+480+720}{50}}=\sqrt{43.6}=6.6

Combined Standard Deviation = 6.6


My Personal Notes arrow_drop_up
Last Updated : 06 Apr, 2023
Like Article
Save Article
Similar Reads
Related Tutorials