Hi Jenessa,
This is the same probability type, formula, and procedure as the other problem you posted about bird survival.
Binomial Probability Formula:
P(X=x) = C(n,x)*px*qn-x
x= Desired number of repeat offenders = 20 for part a
n= Total number of offenders = 34, all parts
p = Probability of repeat offender = 0.64 for all parts
q= Probability of non-repeat offender = 0.36 for all parts
C(n,x) = n!/x!(n-x)!; !="Factorial" i.e 4*3*2*1--you will need a calculator or software for this
a. P(X=20) = C(34, 20)*0.6420*0.3614 = 0.114
b. You want at most 24 repeat offenders, so you need probability for everything 24 and below. This is a lot of work. Instead, take probabilities for all x-values above 24 and apply the Complement Rule aka the "One Minus Trick."
P(X=25) = C(34, 25)*0.6425*0.369
P(X=26) = C(34, 26)*0.6426*0.368
P(X=27) = C(34, 27)*0.6427*0.367
....
Continue this until you reach 34, then add all probabilities together. This gives the probability of over 24 repeat offenders P(X>24).
Finally, apply the Complement Rule: P(X<=24) = 1 - P(X>24)
c. Same procedure without Complement Rule since you are interested in at least 20:
P(X=20) = C(34, 20)*0.6420*0.3614
P(X=21) = C(34, 21)*0.6421*0.3613
P(X=22) = C(34, 22)*0.6422*0.3612
....
Repeat until you reach X=34; note that you computed some of these in previous parts. Add all probabilities together to get P(X>=20).
d. Same procedure.
P(X=17) = C(34,17)*0.6417*0.3617
P(X=18) = C(34,18)*0.6418*0.3616
P(X=19) = C(34,19)*0.6419*0.3615
....
Continue until you reach X=21; add the probabilities together, and you will have the probability of between 17 and 21 repeat offenders. I hope this helps.