A binomial setting involves repeated trials of a random process, where the following conditions are met
In a binomial setting, the random variable X, which equals the number of successes, is called the binomial random variable.
The probability distribution of X is called the binomial distribution.
<aside> ⭐ The probability of getting exactly x successes in n trials is
$P(X=x) = \binom nx p^x(1-p)^{n-x}$
You can also just use binompdf(n, p, x)
</aside>
The probability a tropical storm becomes a hurricane is 0.53. If the weather service predicts 6 more tropical storms, what is the probability that exactly 5 of them become hurricanes?
This satisfies all the conditions for the binomial distribution.