- A term in an NBA team's lease agreement states that it must pay a penalty fee every time it fails to reach $17,000$ attendees in three consecutive home games.
- The onerous fee has caused the team to request assistance in assessing its risk. The team estimates the probability it will reach $17,000$ attendees in a home game is $75$%, and each game has an equal likelihood of eclipsing the $17,000$ threshold.
- Given the $75\ \%$ likelihood of hitting that number each game, what are the odds that the team will avoid a three-game streak with attendance under $17,000$ for the entire season ?.
- Please build a simple simulator to determine your answer ( note that there are $41$ regular season home games; assume each game is independent ).
How do I approach this problem and simulate, perhaps with python script ?.
If I understand correctly,assuming independence, you can find $1-P$(1 or 2 games only will fall below $75 \%$). The probability that exactly one game will miss out is $41C1(.25)(.75)^{40}$ ( $41C1$ ways of choosing that one game, with probability $.25\%$ and for $2$ games, it is $41C2 (.25)^2(.75)^{39}$ ; choose the 2 games that will not hit the target in $41C2$ ways , each combination having probability $(0.25)^2 (.75)^{39}$ , where $nCm$ stands for "$n$ Choose $m$". EDIT: As pointed out, I missed the part on consecutive games. Will be back to reqrite ASAP.