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
.
Cet exercice fait partie du cours
Foundations of Probability in Python
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Probability that battery will last less than 3 hours
less_than_3h = norm.____(____, loc=____, scale=____)
print(less_than_3h)