Home Archives Search Feed Football Squares How To Use


ATP Rogers Cup (#8 D. Medvedev v. #2 D. Thiem): Will there be a BREAK POINT in ANY of the FIRST FOUR GAMES?


12:40PM
Yes: Break point in first four games
No: No break point in first four game


Inputs To Solve

Probability of a Game going to BREAK POINT

##### User Estimates #####

p_BREAK = .15
## Inputs Defined in the Problem

games = 4

Method to Solve

## [1]

p_BREAK

    0.15

## [2]

p_BREAKPOINT = 1 - ((1 - p_BREAK)**(games))

Solution

print("The probability there will be a BREAK POINT in ANY of the FIRST FOUR GAMES is ~%s" % round(p_BREAKPOINT,3))

    The probability there will be a BREAK POINT in ANY of the FIRST FOUR GAMES is ~0.478

Posted on 8/9/2019






← Next post    ·    Previous post →