LIS 4273 Module #4 Assignment
Hello,
Based on this table, what is the probability of:
| B | B1 | |
| A | 10 | 20 |
| A1 | 20 | 40 |
A1: Event A
Total occurrences for A = 10 (B) + 20 (B1) = 30
Total occurrences (all events) = 10 + 20 + 20 + 40 = 90
P(A∪B) = P(A) + P(B) − P(A∩B) (changed this equation to make it work)
P(A)= 0.3333
P(B)= 0.3333
P(A∩B) = 10/90 = 0.1111
Is this answer True or False?
Please explain why?
The weatherman said it will rain, but the real chance of rain is still only 11%. This is because rain falls in this area very infrequently—only five days a year—so even on rare occasions when it does rain, the overall likelihood of rain is still low based on past frequency.
C: Last assignment from our textbook, pp. 55 Exercise # 2.3.
> # Calculate the probability of 0 complications in 10 patients
> result <- dbinom(0, size = 10, prob = 0.2)
> print(result)
[1] 0.1073742
Comments
Post a Comment