a model airplane has two engines. it can fly if one engine fails but is in serious trouble if both engines fail. The engines function independently of one another. On any given flight, the probability of a failure is 0.10 for each engine. Design a simulation to estimate the probability that the airplane will be in serious trouble the next time it goes up.

Respuesta :

Using the binomial distribution, it is found that there is a 0.0001 = 0.01% probability that the airplane will be in serious trouble the next time it goes up.

What is the binomial distribution formula?

The formula is:

[tex]P(X = x) = C_{n,x}.p^{x}.(1-p)^{n-x}[/tex]

[tex]C_{n,x} = \frac{n!}{x!(n-x)!}[/tex]

The parameters are:

  • x is the number of successes.
  • n is the number of trials.
  • p is the probability of a success on a single trial.

The values of the parameters are given as follows:

p = 0.1, n = 2.

The plane is in serious trouble if both engines fail, that is, the probability is P(X = 2), hence:

[tex]P(X = x) = C_{n,x}.p^{x}.(1-p)^{n-x}[/tex]

[tex]P(X = 2) = C_{2,2}.(0.1)^{2}.(0.9)^{0} = 0.0001[/tex]

0.0001 = 0.01% probability that the airplane will be in serious trouble the next time it goes up.

More can be learned about the binomial distribution at https://brainly.com/question/24863377

#SPJ1