You are viewing a single comment's thread. Return to all comments →
import math n=100 mu = 500 sigma=80 sample_mu=mu sample_sigma=sigma/math.sqrt(n) zed = 1.96 A = sample_mu - zed*sample_sigma B = sample_mu + zed*sample_sigma print(A,B, sep='\n', end='')
Seems like cookies are disabled on this browser, please enable them to open this website
The Central Limit Theorem #4
You are viewing a single comment's thread. Return to all comments →