A population of widgets produced by a machine has weights with mean of 200mg and standard deviation of 10mg. If a random sample of 36 was taken,
a) What is the probability that the mean weight is at least 196mg?
b) What is the probability that the total weight is at most 3100mg?
I think I'm on the right trick with part a), but my approach to part b) must contain some kind of mistake...
a) Standardizing...
$E(M_{36}) = 200$
$var(M_{36}) = \frac{10^2}{36} = \frac{25}{9}$
$P(M_{36} \geq 196) = P(\frac{M_{36} - 200}{\sqrt\frac{25}{9}} \geq \frac{196 - 200}{\sqrt\frac{25}{9}}) = P(Z \geq \frac{196 - 200}{\frac{5}{3}}) = P(Z \geq \frac{196 - 200}{\frac{5}{3}}) = P(Z \geq -2.4) = 1 - P(Z < 2.4) = 1 - .9918 = .0082$
b) Standardizing...
$E(S_{36}) = 36 * 200 = 7200$
$var(S_{36}) = 36 * 10^2 = 3600$
$P(S_{36} \leq 3100) = P(\frac{S_{36} - 7200}{\sqrt{3600}} \leq \frac{3100 - 7200}{\sqrt{3600}}) = P(Z \leq \frac{3100 - 7200}{60}) = P(Z \leq \frac{-205}{3})$
This is where I get stuck.
This, definitely, is not a complete answer, but I believe it might be helpful. The key point, I would say, is to understand how your samples are drawn, i.e., to define the joint distribution over 36 random variables
\begin{align} p(x_{1},\cdots,x_{36}), \label{eq:joint} \end{align} then your problems can be formalized through expectations and solved using Chebychev's inequality. That is,
(a) \begin{align} E[g(x_{1},\cdots,x_{36})] = \int g(x_{1},\cdots,x_{36})p(x_{1},\cdots,x_{36}) \end{align} where \begin{align} g(x_{1},\cdots,x_{36}) = \frac{1}{36}\sum^{36}_{i=1} x_{i} \end{align} (b) is define as \begin{align} E[f(x_{1},\cdots,x_{36})] = \int f(x_{1},\cdots,x_{36})p(x_{1},\cdots,x_{36}) \end{align} where \begin{align} f(x_{1},\cdots,x_{36}) =\sum x_{i} \end{align}
Hint on solving both equations:
The probablity of the samples can be factored as $p(x_{1},\cdots,x_{36}) = p(x_{1}\mid x_{2},\cdots,x_{36}),\cdots,p(x_{35}|x_{36})$. Now, this amounts to knowing how the samples are drawn. e.g., are the samples drwan independnetly of each other. Using such kind of prior knowldege about your samples, you can try to compute the expectations given in (a) and (b) and use the Chebychev’s inequality to solve for you specific problem. Fo instance,
\begin{align} p(f(x_{1},\cdots,x_{36}) \geq 3100) \leq \frac{E[f(x_{1},\cdots,x_{36})]}{3100} \end{align}
which you can use to compute the probability of it being $\leq$ 3100 directly.
Good luck.