Each Xi follows a Poisson distribution of mean µ=1 and variance σ2=1.
By the central limit theorem, the distribution Y= Σi=1n Xi as n gets large approaches a normal distribution of mean nµ and variance nσ2. Our n=20 is not large, so Y=Σi=120 Xi only follows approximately a normal distribution of mean 20 and variance 20. Find the z-score for Y=15: z = (15-20)/√(20) = -1.118, then
P(Y≥15) = P(z≥-1.118) = 0.868
This is the approximate probability the problem asked for, however, we can also give the exact answer, since it is well-known that the sum Y of n independent Poisson distributions of mean µi follows a Poisson distribution of mean ∑µi, so in our case Poi(20). You can use the poissoncdf(20,15) function on your calculator to find the complement probability that Y≤15, so that the exact answer is
P(Y≥15) =1 - poissoncdf (20,15) = .84348.