-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1593 add the calculation script for 5.4-5
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import math | ||
|
||
|
||
def probability_exactly_i_pairs_have_matching_birthdays(i, k, n): | ||
return math.factorial(k) / n ** k * math.comb(n, i) * math.comb(n - i, k - 2 * i) / 2 ** i | ||
|
||
|
||
def probability_k_people_have_same_birthday(k, n): | ||
prob = 1.0 | ||
for i in range(0, k // 2 + 1): | ||
prob -= probability_exactly_i_pairs_have_matching_birthdays(i, k, n) | ||
return prob | ||
|
||
|
||
n = 365 | ||
k = 3 | ||
while probability_k_people_have_same_birthday(k, n) < 0.5: | ||
k += 1 | ||
print("""minimum number of people for which the probability\ | ||
that three people have the same birthday\ | ||
is at least 1/2:""", k) |