Standard Deviation of test scores

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
10 replies · 5K views
priscilla98
Messages
93
Reaction score
0

Homework Statement



The scores of one class on the Unite 2 mathematics test are shown in the table below. Find the population standard deviation of these scores, to the nearest tenth.

Unit 2 Mathematics Test

Score - Number of people

96 - 1
92 - 2
84 - 5
80 - 3
76 - 6
72 - 3
68 - 2

Homework Equations



standard deviation formula

The Attempt at a Solution



I used this website to find the standard deviation for this problem. But my answer is higher than a 100 and i think i made some miscalculations.
http://www.gcseguide.co.uk/standard_deviation.htm
 
Physics news on Phys.org
What you are calculating is unbiased standard deviation. I think you have been asked to calculate biased SD for which the formula is

[tex]\sigma^2 = \overline{(x - \overline{x})^2}[/tex]

For large data sets, you do not have much issues with the two formulae. This difference in formulae is based on biased/unbiased estimators.
 
The mean is 79.8095.
 
Wouldn't you have to subtract the mean from the test scores?
 
in my understanding (please correct if wrong):

mean = (96*1+92*2+84*5+80*3+76*6+72*3+68*2)/sum(people) = 79.45

std deviation = sqrt( sum((score(i)-mean)^2) / (sum(people) - 1)) = 5.57 unbiased
= sqrt( sum((score(i)-mean)^2) / (sum(people))) = 5.44 biased
 
ehild:
Grateful if you could share the formula please. I am still learning this stuff...
 
Your formula is correct. Are you sure you did not make any mistake in the calculation? Did you multiplied the squares with the number they occur? I guess you did not. You have to sum for all people.

ehild
 
Last edited:
now I see, indeed haven't multiplied differences squared by number of people. It's the same as your result now.

Thank you!