

InterviewSolution
Saved Bookmarks
1. |
For a group of 200 candidates the mean and S.D. were found to be 40 and15 respectively. Later on it was found that the score 43 was misread as 34.Find the correct mean and correct S.D. |
Answer» Incorrect mean is `40`. There are `200` candidates. `:. barX = 40` So, `sum x_i = 40**200 = 8000` This is incorrect `sum x_i` as `43` was misread as `34`. `:.` Corect `sum x_i = 8000-34+43 = 8009` `:.` Correct mean `= 8009/ 200 = 40.045` Now, we will find the correct standard deviation. We know, `sigma = sqrt(1/N sum (x_i)^2-(bar x)^2)` When incorrect observations was present, then standard deviation was `15`. `:. 15 = sqrt(1/200 sum (x_i)^2 - (40)^2)` `=>225 = 1/200 sum (x_i)^2 - 1600` `=>365000 = sum (x_i)^2` This is the sum when observations were incorrect. `:.` Correct sum`= 365000 -(34)^2+(43)^2 = 365693` `:.` Correct `sum (x_i)^2 = 365693` `:. sigma = sqrt(1/200(365693) - (40.045)^2) = 14.995` So, the correct standard deviation is `14.995`. |
|