confidence about range of standard deviation

39 Views Asked by At

Suppose $X_1, X_2$ is a random sample of size 2 from a normal population known to have mean $0$ and variance $\sigma^2$; further assume $x_1 = -0.75$, $x_2=0.16$. How sure (or confident) would you be that:

(a) $\sigma^2 \ge 1.0221$ ?

(b) $\sigma^2 \ge 0.4242$ ?

(c) $\sigma^2 \ge 2.7908$ ?

I reason that this problem should be able to be solved using the following logic:

We know that if $Z_i$ is a standard normal random variable, $(Z_i - \bar{Z})$ is also an independent random variable with normal distribution, and therefore $(Z_i - \bar{Z})^2$ is $\chi^2$. However, we can use the definition of sample variance $S^2 = \frac{1}{n-1}\sum{(X_i - \bar{X})^2}$ to show that:

$$\sum_{i=0}^n{(Z_i - \bar{Z})}^2 = \frac{(n-1)S^2}{\sigma^2}$$

So, $\frac{(n-1)S^2}{\sigma^2}$ is $\chi^2$ with $n-1$ degrees of freedom.


I used the above reasoning to try and solve this problem in the following manner:

$$P(\sigma^2 \ge t) = P\left(\frac{\sigma^2}{S^2} \ge \frac{t}{S^2}\right) = P\left(\frac{S^2}{\sigma^2} \le \frac{S^2}{t}\right) = F_{\chi^2_{df=1}} \left(\frac{S^2}{t}\right)$$

Using the values in the problem to solve for $S^2$:

$$S^2 = \frac{1}{2-1}\left((-0.75-\bar{x})^2 + (0.16 - \bar{x})^2\right) = 0.41405$$

(since $\bar{x} = \frac{0.16-0.75}{2} = -0.295$ )

Therefore the answers should be:

(a) $F_{\chi^2_{df=1}}(\frac{0.41405}{1.0221}) = F_{\chi^2_{df=1}}(0.4051) = 0.48$

(b) $F_{\chi^2_{df=1}}(\frac{0.41405}{0.4242}) = F_{\chi^2_{df=1}}(0.976) = 0.68$

(c) $F_{\chi^2_{df=1}}(\frac{0.41405}{2.7908}) = F_{\chi^2_{df=1}}(0.148) = 0.3$

However, the solutions in the back of the book gives the following answers:

(a) 0.25

(b) 0.5

(c) 0.1

1

There are 1 best solutions below

4
On BEST ANSWER

$\dfrac{(n-1)S^2}{\sigma^2}$ is $\chi^2$ with $n-1$ degrees of freedom.

That much is true. But at the outset you said this is from a population that is KNOWN to have expectation $0$. Unrealistic perhaps, but it is clearly intended that you would use that information, and you did not.

You defined the sample variance: $\displaystyle S^2 = \frac{1}{n-1}\sum{(X_i - \bar{X})^2}$. This uses the sample mean $\bar X$ as an estimator of of the population mean. There is no reason to do that when the population mean is known with certainty. Instead, the appropriate thing is $$ S^2 = \frac 1 n \sum_{i=1}^n (X_i - 0)^2, $$ so you have $$ \frac{nS^2}{\sigma^2} \sim \chi^2_n. $$ Your confidence intervals should be based on that.