SOLUTION: If the dice is rolled 120 and the number 3 occurs 23 times, making the empirical number .19 1. what is the probability of getting number 3 twenty times or less 2.What is the pr

Algebra ->  Probability-and-statistics -> SOLUTION: If the dice is rolled 120 and the number 3 occurs 23 times, making the empirical number .19 1. what is the probability of getting number 3 twenty times or less 2.What is the pr      Log On


   



Question 848123: If the dice is rolled 120 and the number 3 occurs 23 times, making the empirical number .19
1. what is the probability of getting number 3 twenty times or less
2.What is the probability of getting the number 3 forty times or more
3.What is the probability of getting the number 3 between twenty and forty times?
Thanks

Answer by ewatrrr(24785) About Me  (Show Source):
You can put this solution on YOUR website!
 
Hi,
p = .19 , n = 120
binomcdf(n, p, largest x-value).
1. what is the probability of getting number 3 twenty times or less
binomcdf(120, .19, 23)= .3024
2.What is the probability of getting the number 3 forty times or more
1- binomcdf(120, .19, 39)= 1- .9999 = .0001
3.What is the probability of getting the number 3 between twenty and forty times? .9999-.3024
Thanks