Smartphone battery example
One of the most important things to consider when buying a smartphone is how long the battery will last.
Suppose the period of time between charges can be modeled with a normal distribution with a mean of 5 hours and a standard deviation of 1.5 hours.
A friend wants to buy a smartphone and is asking you the following questions.
norm
is already imported from scipy.stats
.
This exercise is part of the course
Foundations of Probability in Python
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Probability that battery will last less than 3 hours
less_than_3h = norm.____(____, loc=____, scale=____)
print(less_than_3h)