Let $X_i, i = 1,...,10$ denoted a random sample of size $n = 10$, from a distribution which is $N(\mu, \sigma^2)$. Find:
- $P[\sum_{i=1}^{10} \frac{(X_i-\mu)^2}{\sigma^2} < 18.31]$
- $P[\sum_{i=1}^{10} \frac{(X_i-\bar{X})^2}{\sigma^2} < 18.31]$
I'm not sure exactly how to approach this problem as no other information is given. I can see that the top probability is a summation of squared z-scores but I really do not know if that helps me at all.
In (1), clearly $Z_i = \frac{X_i -\mu}{\sigma} \sim \mathsf{Norm}(0, 1).$ Then you can use integration or moment generating functions (MGFs) to show that $Q = Z_i^2 \sim \mathsf{Chisq}(df = 1).$ An argument with MGFs also shows that $\sum_{i=1}^{10}Z_i^2 \sim \mathsf{Chisq}(df=10).$ (Both arguments are straightforward and you can do them whether or not your professor has already mentioned this use of chi-squared distributions.) Thus, using printed chi-squared tables or software you can find that $P(Q <18.31)=.95,$ as @Karl has Commented.
For (2), there is a standard theorem that for a random sample $X_1, X_2, \dots, X_n$ from $\mathsf{Norm}(\mu, \sigma),$ the sample variance $S^2 = \frac{1}{n-1}\sum_{i=1}^n (X_i - \bar X)^2$ has $\frac{(n-1)S^2}{\sigma^2} \sim \mathsf{Chisq}(df= n-1).$ Because you have not given clues about the context of this problem, I don't know if you are expected to use this result to solve (2). In any case, the degrees of freedom in (2) must be $n - 1.$
Simulation note: The following simulation in R statistical software illustrates (2) with $\mu = 100, \sigma = 15,$ and $Q = (n-1)S^2/\sigma^2 = \sum_{i=1}^{10}\frac{(X_i - \bar X)^2}{\sigma^2}.$ The histogram of $Q$'s from a million samples of size $n=10$ is well matched by the density of $\mathsf{Chisq}(9)$ (solid purple curve), but not by the density of $\mathsf{Chisq}(10)$ (dotted brown curve).