You are viewing a single comment's thread. Return to all comments →
p_defect_product = 1/3 n = 5 p_first_defect = 0 for i in range(1, n+1): p_first_defect += pow((1 - p_defect_product), i-1)*p_defect_product print(round(p_first_defect, 3))
Seems like cookies are disabled on this browser, please enable them to open this website
Day 4: Geometric Distribution II
You are viewing a single comment's thread. Return to all comments →