You are viewing a single comment's thread. Return to all comments →
import math as m def cdf(mn, std, x): return 1/2 * (1 + m.erf((x-mn)/(std*m.sqrt(2)))) print(f'{cdf(205*49, 15*m.sqrt(49), 9800):.4f}')
Seems like cookies are disabled on this browser, please enable them to open this website
Day 6: The Central Limit Theorem I
You are viewing a single comment's thread. Return to all comments →