63.8k views
1 vote
USA Today reported that about 20% of all people in the United States are illiterate. Suppose you take eleven people at random off a city street. (a) Make a histogram showing the probability distribution of the number of illiterate people out of the eleven people in the sample.

2 Answers

2 votes

Final answer:

To create a histogram showing the probability distribution of the number of illiterate people out of eleven people in a sample, you can use the binomial probability formula. Calculate the probability for each possible number of illiterate people and represent it in a histogram.

Step-by-step explanation:

This question is asking for a histogram showing the probability distribution of the number of illiterate people out of eleven people in a sample, based on the information that about 20% of all people in the United States are illiterate.

To create the histogram, we can use the binomial probability formula. The formula is P(X = k) = C(n, k) * p^k * (1 - p)^(n - k), where C(n, k) represents combinations, n is the number of trials, k is the number of successes, and p is the probability of success.

We can calculate the probability for each possible number of illiterate people out of the eleven, ranging from 0 to 11, and represent it in a histogram.

User Maxflow
by
5.6k points
4 votes

Answer:

Seee explanation below.

Step-by-step explanation:

1) Previous concepts

The binomial distribution is a "DISCRETE probability distribution that summarizes the probability that a value will take one of two independent values under a given set of parameters. The assumptions for the binomial distribution are that there is only one outcome for each trial, each trial has the same probability of success, and each trial is mutually exclusive, or independent of each other".

2) Solution to the problem

Let X the random variable of interest, on this case we now that:


X \sim Binom(n=11, p=0.2)

The probability mass function for the Binomial distribution is given as:


P(X)=(nCx)(p)^x (1-p)^(n-x)

Where (nCx) means combinatory and it's given by this formula:


nCx=(n!)/((n-x)! x!)

For this case in order to do the plot we can use the following R code:

> x <- seq(0,11,by = 1)

> y <- dbinom(x,11,0.2)

> plot(x,y,main = "Binomial distribution n=11, p=0.2")

> plot(x,y,main = "Binomial distribution n=11, p=0.2",type = "h")

And the results are represented in the figure attached.

We can see that the distribution is right skewed with the higher probabilities for values of X between 0 and 4

USA Today reported that about 20% of all people in the United States are illiterate-example-1
User IvanAtBest
by
6.0k points