216k views
4 votes
Based on past experience, the main printer in a university computer centre is operating properly 90% of the time. Suppose inspections are made at 10 randomly selected times. A) What is the probability that the main printer is operating properly for exactly 9 inspections. B) What is the probability that the main printer is operating properly for at least 3 inspections? C) What is the expected number of inspections in which the main printer is operating properly?

User Kyurem
by
4.7k points

1 Answer

5 votes

Answer:

a) 38.74% probability that the main printer is operating properly for exactly 9 inspections.

b) Approximately 100% probability that the main printer is operating properly for at least 3 inspections.

c) The expected number of inspections in which the main printer is operating properly is 9.

Explanation:

For each inspection, there are only two possible outcomes. Either it is operating correctly, or it is not. The probability of the printer operating correctly for an inspection is independent of any other inspection, which means that the binomial probability distribution is used to solve this question.

Binomial probability distribution

The binomial probability is the probability of exactly x successes on n repeated trials, and X can only have two outcomes.


P(X = x) = C_(n,x).p^(x).(1-p)^(n-x)

In which
C_(n,x) is the number of different combinations of x objects from a set of n elements, given by the following formula.


C_(n,x) = (n!)/(x!(n-x)!)

And p is the probability of X happening.

Based on past experience, the main printer in a university computer centre is operating properly 90% of the time.

This means that
p = 0.9

Suppose inspections are made at 10 randomly selected times.

This means that
n = 10

A) What is the probability that the main printer is operating properly for exactly 9 inspections.

This is
P(X = 9). So


P(X = x) = C_(n,x).p^(x).(1-p)^(n-x)


P(X = 9) = C_(10,9).(0.9)^(9).(0.1)^(1) = 0.3874

38.74% probability that the main printer is operating properly for exactly 9 inspections.

B) What is the probability that the main printer is operating properly for at least 3 inspections?

This is:


P(X \geq 3) = 1 - P(X < 3)

In which


P(X < 3) = P(X = 0) + P(X = 1) + P(X = 2)

So


P(X = x) = C_(n,x).p^(x).(1-p)^(n-x)


P(X = 0) = C_(10,0).(0.9)^(0).(0.1)^(10) \approx 0


P(X = 1) = C_(10,1).(0.9)^(1).(0.1)^(9) \approx 0


P(X = 2) = C_(10,2).(0.9)^(2).(0.1)^(8) \approx 0

Thus:


P(X < 3) = P(X = 0) + P(X = 1) + P(X = 2) = 0 + 0 + 0 = 0

Then:


P(X \geq 3) = 1 - P(X < 3) = 1 - 0 = 1

Approximately 100% probability that the main printer is operating properly for at least 3 inspections.

C) What is the expected number of inspections in which the main printer is operating properly?

The expected value for the binomial distribution is given by:


E(X) = np

In this question:


E(X) = 10(0.9) = 9

User John Bollinger
by
5.0k points