0
$\begingroup$

A company made some tests for a material humidity with these results:

HUMIDITY ............... FREQUENCY

  • 18.75 - 19.75 % ... 3
  • 19.75 - 20.75 % ... 22
  • 20.75 - 21.75 % ... 123
  • 21.75 - 22.75 % ... 300
  • 22.75 - 23.75 % ... 201
  • 23.75 - 24.75 % ... 61
  • 24.75 - 25.75 % ... 6
  • 25.75 - 26.75 % ... 1

Using point estimation calculate the expected value and the standard deviation... I have no idea how to calculate it since I don't have values but intervals in percentage...

[RESULT: expect.value: 22.486, stand.dev. : 0.998%]

2 Answers 2

1

You have to make some assumptions about how the values are distributed inside the intervals. One such assumption is:

  • The values all appear at the midpoint of the interval.

and another one is:

  • The values are equi-spaced inside the intervals.

Fortunately, you have enough observations and they're regular enough that the result won't materially depend on the assumption that you make. I'd go with the simple option of assuming that the values are all at the midpoint of the intervals if I were you.

0

This is commonly called group averages. Each interval represents a group. You take the average of the end points (same as what Chris called the mid point) multiply by the number of points in the interval sum up all the intervals and divide by the total sample size. This is a weighted average of midpoints weighted by the number of points in the group. It is equivalent to assuming either that all the points were at the midpoint or that they are spread uniformly through the interval. I think the second assumption sounds a little more reasonable though it is mathematically equivalent to the first assumption. This is the same result as Chris is suggesting using a slightly different description. For the variance take the computed weighted mean subtract it from each of the midpoints, square the difference weigh it by the number of points in the interval and sum the squares up and divide by n. This is a weighted average of the squared deviations of the midpoints from the sample's weighted average. The weight are the same as what was used to get the mean.

  • 0
    Hey Michael, I posted o$n$e more question here: http://stats.stackexchange.com/questions/29168/how-to-calculate-expected-value-and-standard-deviation-if-i-have-100-values-divi Thank you so much!!! :o)2012-05-25