LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Foundations of Probability in Python

Kurs anzeigen

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Probability that battery will last less than 3 hours
less_than_3h = norm.____(____, loc=____, scale=____)
print(less_than_3h)
Code bearbeiten und ausführen