Every day Alice tries the stroke playing tennis until she reaches $50$ strokes. If each stroke is good with a probability of $0,4$, independently from others, approximately what is the probability that at least $100$ attemps are necessary to success?
Let X be a binomial random variable with parameters $$n=100$$ and $$p=0,4$$
Since n is large we can approximate with a normal distribution with parameters $$\mu=40$$ and $$\sigma=\sqrt{0,4*100*0,6}=\sqrt{24}$$
Appling the normal approximation \begin{align}P(X> 49,5)&=1-P(x<49,5)\\&=1-P((X-\mu )/\sigma < (49,5-40 )/ \sqrt{24} )\\&=1-P((X-\mu )/\sigma < 1,939 )\\&=1-\Phi (1,939)\\&=1-0,9737\\&=0,0263\end{align}
But the solution on the book is $0,974$ (it could be $P(x<49,5)$).
You have a couple of answers using different methods, so this is to show that they are both correct approaches (+1 and +1). I do not see that any method leads to exactly the answer 0.974, but the discrepancy may have to do with the method of approximation used.
By thinking the problem through carefully, you can work the problem using either the binomial or the negative binomial distribution.
Binomial. Following @SiongThyeGoh's logic, if $X$ is the number of successes in $n = 99$ tries, and you have $X \le 49,$ then you will need at least 100 tries to get 50 successes. So we have $X \sim Binom(99, .4)$ and we seek $P(X \le 49).$
Using R statistical software, the statement
pbinom(49, 99, .4)returns $0.9781,$ rounded to four places.If you use the normal approximation with $\mu = np = 99(.4) = 39.6$ and $\sigma = 4.8944,$ then you have $$P(X \le 49) = P(X \le 49.5) \approx P\left(Z < \frac{49.5-39.6}{4.8744} = 2.03\right),$$ where $Z$ is standard normal. Printed tables give $P(Z \le 2.03) = .9788.$ You can avoid some round-off error in R, using
pnorm(49.5, 39.6, 4.8744)to get $0.9789.$Negative Binomial (counting failures) There are several parameterizations of the negative binomial distribution. One of them defines $Y = 0, 1, 2, \dots$ to be the number of failures occurring before the $r$th success. You would need at least 50 failures before the 50th success in order to require 100 or more tries.
This is the version of the negative binomial distribution implemented in R. So we need $P(Y < 50) = P(Y \le 49),$ which can be found in R with the statement
pnbinom(49, 50, .6)to get $0.9781,$ rounded to four places.Negative Binomial (counting trials). In @heropup's Answer, the negative binomial random variable $X$ is the number of trials, not failures, required to get $X$ successes, where the probability of success on any one trial is 0.4. You can use a normal approximation with her $\mu$ and $\sigma$ in the R statement
1 - pnorm(99.5, 125, 13.693)to get $0.9687,$ rounded to four places.Ordinarily, you cannot depend on more than about two decimal places of accuracy form a normal approximation to the binomial or negative binomial distribution. You can see what you get using normal tables.
The illustration below shows the skewness of this negative binomial distribution and the less-than-ideal normal approximation. Here, you are interested in the probability to the right of the vertical red line.
If you are going to use the negative binomial distribution, you should look to see what version your text or lectures are using, and learn that.