Aan de slagGa gratis aan de slag

Joint probabilities

In this exercise we're going to calculate joint probabilities using the following table:

Joint probability table

Take the values from the table, create variables, and calculate the probability of the event in each step.

Deze oefening maakt deel uit van de cursus

Foundations of Probability in Python

Cursus bekijken

Praktische interactieve oefening

Probeer deze oefening eens door deze voorbeeldcode in te vullen.

# Individual probabilities
P_Eng_works = ____
P_GearB_works = ____

# Joint probability calculation
P_both_works = ____

print(P_both_works)
Code bewerken en uitvoeren