-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbasic_probability.py
32 lines (22 loc) · 1.03 KB
/
basic_probability.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
'''
Mike wants to go fishing this weekend to nearby lake. His neighbour
Alice (is the one Mike was hoping to ask out since long time) is also planing to go to the same spot for fishing this weekend.
The probability that it will rain this weekend is p1.There are two possible ways to reach the fishing spot (bus or train).
The probability that Mike will take the bus is Pmb and that Alice will take the bus is Pab.
Travel plans of both are independent of each other and rain.
What is the probability Prs that Mike and Alice meet each other only (should not meet in bus or train)
in a romantic setup (on a lake in rain)?
Input format
FIrst line: Pmb
Second line: Pab
Third line: p1
Output format
Prs, rounded up to six decimal places.
'''
import math
pmb = float(input().strip())
pab = float(input().strip())
p1 = float(input().strip())
# Probability that Mike and Alice meet each other only (should not meet in bus or train) in a romantic setup (on a lake in rain)
prs = p1 * ((pmb * (1 - pab)) + ((1 - pmb) * pab))
print ("%.6f" % (prs))