We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Artificial Intelligence
- Probability & Statistics - Foundations
- The Central Limit Theorem #3
- Discussions
The Central Limit Theorem #3
The Central Limit Theorem #3
Sort by
recency
|
15 Discussions
|
Please Login in order to post a comment
python3 solution with scipy.stats yields 0.7887, deemed incorrect by the checker.
n = 100 s = 80 u = 500 sample_s = 80/10 = 8 e are given µ = 500, σ = 80, n = 100. a. P(490 < x <¯ 510) = P((490−500)/(√80/100)< z < (490−500)/(√80/100)) = P(−1.25 < z < 1.25) = 0.8944 − (1 − 0.8944) = 0.7888.
According to CTG, if you have X1...Xn independent variables with same distribution (here it's N(500,80)), their mean X has a normal distribution N( µ; σ/sqrt(n)) (sorry, can't write proper math symbols in browser) So in this case we have µ = 500, σ = 80, sqrt(n) = 10. So mean of X has the distribution of N(500;8)
Now once you have a distribution, you need to calculate P(490 < mean X < 510) Once you normalize, it's P (-1.25 < Z < 1.25). That should be easy to calculate