Joint probabilities
In this exercise we're going to calculate joint probabilities using the following table:
Take the values from the table, create variables, and calculate the probability of the event in each step.
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.
# Individual probabilities
P_Eng_works = ____
P_GearB_works = ____
# Joint probability calculation
P_both_works = ____
print(P_both_works)