Respuesta :
Answer:
a) Figure and code attached
b) [tex] E(X)=\mu = np = 8*0.2= 1.6[/tex]
[tex] Var(X) =\sigma^2= np(1-p) = 8*0.2*(1-0.2) = 1.28[/tex]
[tex] Sd(X)=\sigma= \sqrt{1.28}= 1.131[/tex]
c) [tex] P(X\geq 7) =0.97[/tex]
And we can calculate this with the complement rule.
[tex]P(X \geq 7) = 1-P(X<7) = 1-P(X\leq 6) =0.97[/tex]
So then we have:
[tex] P(X \leq 6) = 0.03[/tex]
And we are interested on the valueof n who satisfy this expression.
And for this we can verify this with the following code:
"=BINOM.DIST(6,E54,0.2,TRUE)"
And as we can see on the second figure attached the value who satisfy the condition would be n = 60.
Step-by-step explanation:
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".
Solution to the problem
Let X the random variable of interest, on this case we now that:
[tex]X \sim Binom(n=8, p=0.2)[/tex]
The probability mass function for the Binomial distribution is given as:
[tex]P(X)=(nCx)(p)^x (1-p)^{n-x}[/tex]
Where (nCx) means combinatory and it's given by this formula:
[tex]nCx=\frac{n!}{(n-x)! x!}[/tex]
Part a
We can use the following R code to generate the histogram for this case:
> x <- seq(0,8,by = 1)
> y <- dbinom(x,8,0.2)
> plot(x,y,type = "h",main="Histogram")
And as we can see we got the result on the figure attached. And the distribution seems to be skewed to the right.
Part b
For this case the expected value is given by:
[tex] E(X)=\mu = np = 8*0.2= 1.6[/tex]
The variance is given by:
[tex] Var(X) =\sigma^2= np(1-p) = 8*0.2*(1-0.2) = 1.28[/tex]
And the standard deviation would be:
[tex] Sd(X)=\sigma= \sqrt{1.28}= 1.131[/tex]
Part c
For this case we have the following inequality:
[tex] P(X\geq 7) =0.97[/tex]
And we can calculate this with the complement rule.
[tex]P(X \geq 7) = 1-P(X<7) = 1-P(X\leq 6) =0.97[/tex]
So then we have:
[tex] P(X \leq 6) = 0.03[/tex]
And we are interested on the valueof n who satisfy this expression.
And for this we can verify this with the following code:
"=BINOM.DIST(6,E54,0.2,TRUE)"
And as we can see on the second figure attached the value who satisfy the condition would be n = 60.
![Ver imagen dfbustos](https://us-static.z-dn.net/files/df2/a32fbdef1be9b2318db6ac60818fb5a5.jpeg)
![Ver imagen dfbustos](https://us-static.z-dn.net/files/ddb/643d29c69f561bac49057e85480863a8.png)
Binomial distribution is distribution tracking number of successes in a set of Bernoulli trials. The figures needed for given context are:
- Mean = 1.6
- Standard deviation = 1.13 approx
- Expected number of people = 2
- Number of people needed to interview to be 97% sure that at least seven of them can read is 60
How to find that a given condition can be modeled by binomial distribution?
Binomial distributions consists of n independent Bernoulli trials.
Bernoulli trials are those trials which end up randomly either on success (with probability p) or on failures( with probability 1- p = q (say))
Suppose we have random variable X pertaining binomial distribution with parameters n and p, then it is written as
[tex]X \sim B(n,p)[/tex]
The probability that out of n trials, there'd be x successes is given by
[tex]P(X =x) = \: ^nC_xp^x(1-p)^{n-x}[/tex]
[tex]E(X) = np\\Var(X) = np(1-p)[/tex]
For the given case, let the random variable X tracks the number of illiterates (success) in sample of 8 ( = n ) people taken from US.
Chance of a person being illiterate = 20% = 0.2 = probability of success = p
Thus, [tex]X \sim B(8, 0.2)[/tex]
Thus, mean = expectation = E(X) = np = 0.2 times 8 = 1.6
Standard deviation of X = [tex]\sqrt{Var(X)} = \sqrt{np(1-p)} = \sqrt{8\times 0.2\times (0.8)} \approx 1.13[/tex]
Expected value is mean itself. Thus, expected number of people = 1.6 [tex]\approx 2[/tex] (since number of people needs to be whole number)
Let we have same success probability(as it was given for whole US, not for those 8 people), and let we select n people such that at least 7 of them are literate can be said with being 97% sure.
Then
[tex]X \sim B(n, 0.2)[/tex]
P(at least 7 out of n people are literate) = P( at max n-7 people are illiterate) = P(X ≤ n-7) = 1 - P(X > n-7) = 0.97
or
P(X = n -6) + P(X = n-5) + P(X = n-4) + P(X = n-3) + P(X = n-2) + P(X = n-1) + P(X = n)] = 0.03
From calculator, we get n = 60
The figures needed for given context are:
- Mean = 1.6
- Standard deviation = 1.13 approx
- Expected number of people = 2
- Number of people needed to interview to be 97% sure that at least seven of them can read is 60
Learn more about binomial distribution here:
https://brainly.com/question/13609688