ppois(8,3) - ppois(3,5)
1) Y ~ Bin(n = 10, p = 0.4).
#P(Y>=8) = 1 - P(Y<=7)
1 - pbinom(7,10,0.4)
0.01229455
# not recommended
pbinom(7,10,0.4,lower.tail = FALSE)
0.012294552) X ~ Pois(lambda = 5).
ppois(8,5) - ppois(3,5)
0.66688043) H ~ Geom(p = 0.6).
1 - pgeom(10,0.6)
4.194304e-054) Suppose Z ~ Bin(n = 20, p = 0.5). Find z s/t = 0.2517223)
qbinom(0.2517223, 20, 0.5)
85) A ~ Pois(lambda=2) bruh how
round(dpois(2,2),4)
0.2707