Inizia subitoInizia gratis

Free throws example

Suppose you know that a basketball player has a 0.3 probability of scoring a free throw. What is the probability of them missing with the first throw and scoring with the second?

Questo esercizio fa parte del corso

Foundations of Probability in Python

Visualizza corso

Istruzioni dell'esercizio

  • Import geom from scipy.stats.
  • Use the probability mass function (pmf()) with p=0.3 and specify the appropriate k value.

esercizio interattivo pratico

Prova questo esercizio completando questo codice di esempio.

# Import geom from scipy.stats
from ____

# Probability of missing first and scoring on second throw
probability = ____.____(k=____, p=____)

# Print the result
print(probability)
Modifica ed esegui il codice