Respuesta :
Answer:
a) Figure attached
b) [tex] E(X) =\mu= np = 9*0.7=6.3[/tex]
[tex] Sd(X) =\sigma= \sqrt{np(1-p)}= \sqrt{9*0.7*(1-0.7)}=1.375[/tex]
c) For the case n= 6
[tex] P(X \leq 2) = 0.9891[/tex]
For the case n= 5
[tex] P(X \leq 2) = 0.9692[/tex]
So then we need at least n=5 or n=6 to satisfy the condition required.
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=9, p=0.7)[/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
For this case we can use the following R code:
> x <- seq(0,9,by = 1)
> y <- dbinom(x,9,0.7)
> plot(x,y,main="Histogram",type = "h")
And we can see on the figure attached the solution.
We see that the higher probabilities are from 4 to 9
Part b
The expected value is given by:
[tex] E(X) =\mu= np = 9*0.7=6.3[/tex]
The variance is given by:
[tex] Var (X) =\sigma^2= np(1-p) = 9*0.7*(1-0.7)= 1.89[/tex]
And the standard deviation is:
[tex] Sd(X) =\sigma= \sqrt{np(1-p)}= \sqrt{9*0.7*(1-0.7)}=1.375[/tex]
Part c
First we can find the probability that at least two addresses will be found in the list of 9 that we have like this:
[tex] P(X \geq 2) [/tex]
We can use the complement rule and we have:
[tex] P(X \geq 2) = 1-P(X<2) = 1-P(X\leq 1)= 1-[P(X=0)+P(X=1)][/tex]
We find the indicidual probabilities:
[tex]P(X=0)=(9C0)(0.7)^0 (1-0.7)^{9-0}=0.00001968[/tex]
[tex]P(X=1)=(9C1)(0.7)^1 (1-0.7)^{9-1}=0.000413[/tex]
[tex] P(X \geq 2) = 1-[0.00001968+0.000413]=0.9996[/tex]
If we use the case of n=8 and we find [tex]P(X\leq 2)[/tex], we got:
[tex] P(X \leq 2) = 0.9987[/tex]
For the case n= 7
[tex] P(X \leq 2) = 0.9962[/tex]
For the case n= 6
[tex] P(X \leq 2) = 0.9891[/tex]
For the case n= 5
[tex] P(X \leq 2) = 0.9692[/tex]
So then we need at least n=5 or n=6 to satisfy the condition required.

The question has multiple sub parts which are solved below:
Given that:
Success rate = 70%
Number of friends whose addresses have to be found = 9
Since every search results in success or failure thus, being Bernoulli trial. Since we've got 9 names of friend, thus the number of success follows a Binomial distribution.
Let X = number of successes in searching addresses of 9 friends, then:
X ~ B(9, 0.7) (since 70% success = 0.7 probability of success)
The probability of x successes is given by:
[tex]P(X = x) = \: ^nC_xp^x (1-p)^{n-x}[/tex]
Mean of binomial distribution B(n,p) is given by:
[tex]\mu = np[/tex]
Standard deviation of binomial distribution B(n,p) is given by:
[tex]\sigma = \sqrt{np(1-p)}[/tex]
Calculations for given parts of question is as follows:
A) : Histogram is plotted as in attached figure, given below.
B): The mean and standard deviation of this probability distribution is given as follows:
Since n = 9 and p = 0.7, thus:
[tex]\rm Mean = \mu = np = 9 \times 0.7 = 6.3[/tex]
[tex]\rm Variance = \sigma = \sqrt{np(1-p)} = \sqrt{0.7\times 9(1-0.7)} = \sqrt{1.89} = 1.3747.. \approx 1.375[/tex]
C): Probability that at least two friends are found at giving n numbers of names is given by:
[tex]P(X \geq 2) = 1-(\: ^nC_2{0.7}^20.3^{n-2}+\: ^nC_1{0.7}^10.3^{n-1} + ^nC_0{0.7}^00.3^{n})[/tex]
For that probability to be at least 97%, we have:
At n = 6 we have probability of at least 2 friends found as 0.989065
At n = 5 it is 0.96922
Thus, for at least 97% sureness, we take n = 6.
Learn more here:
https://brainly.com/question/795909
