Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
602 B
4
Indexable
Never
from scipy import stats as st

mu = 720
sigma = 16900

distr = st.norm(mu, sigma) 

x1 = 735
x2 = 750

result1 = 1- distr.cdf(x1)
result2 = distr.cdf(x2) - distr.cdf(x1)
result3 = 1 -distr.cdf(x2)
print('Вероятность получить грамоту:', result1 ) # рассчитайте вероятность )
print('Вероятность получить грамоту без медали:', result2) # рассчитайте вероятность )
print('Вероятность получить медаль:', result3 )# рассчитайте вероятность )