You are viewing a single comment's thread. Return to all comments →
#python import math def cdf(m, std, x): return 0.5 * (1 + math.erf((x-m)/(std*2**.5))) n, m0, std0, x=100, 2.4, 2, 250 m=n*m0 std=math.sqrt(n)*std0 print(round(cdf(m, std, x), 4))
Seems like cookies are disabled on this browser, please enable them to open this website
Day 6: The Central Limit Theorem II
You are viewing a single comment's thread. Return to all comments →