WGC St. Jude Invitational - 2nd Rd: Will J. Rose, M. Kuchar AND J. Spieth ALL record PAR or BETTER on the Par 4 10th?
12:42 AM
Yes: All 3 record par or better on Hole 10
No: At least 1 records bogey or worse on Hole 10
Inputs Needed to Solve
##### User Estimates #####
p_parorbetter = float(11+44)/(11+44+6+2)
print("The probability that any golfer records a par of better on the par 4 10th: %s" % round(p_parorbetter,3))
The probability that any golfer records a par of better on the par 4 10th: 0.873
Method to Solve
The probability that all 3 golfers record par or better is (the probability that any golfer records par or better) ^ 3
p_all = p_parorbetter**3
Solution
print("The probability that Will J. Rose, M. Kuchar AND J. Spieth ALL record PAR or BETTER on the Par 4 10th ~%s" % round(p_all,3))
The probability that J. Rose, M. Kuchar AND J. Spieth ALL record PAR or BETTER on the Par 4 10th ~0.665
Posted on 7/26/2019