Pred S.
asked 06/23/22Python Question regarding normal distribution probability
Suppose the annual rainfall, in inches, in some region is normally distributed with μ=10 and σ=5. What is the probability that it takes (strictly) more than 10 years before a year with 20 inches of rain occurs (assuming each year's rainfall is independent)?
To specify a different mean, μ, and standard deviation, σ, use the loc and scale keywords like so: norm.cdf(a, loc = mu, scale = sigma)
Use norm.cdf as appropriate and, once again, assign your answer to the variable ans. Do NOT round your answer.
Only use norm.cdf and no other imports. The 3rd and 4th decimal places for the answer equal 44.
1 Expert Answer

Raymond C. answered 07/24/23
Bio-Physics PhD with 4+ years tutoring in Python/Machine Learning
Still looking for help? Get the right answer, fast.
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.
Joshua H.
07/13/22