Respuesta :
Answer:
a) [tex]P(X=5)=(5C5)(0.8)^5 (1-0.8)^{5-5}=0.32768[/tex]
And we can use the following excel code: "=BINOM.DIST(5,5,0.8,FALSE)"
b) [tex]P(X=4)=(5C4)(0.6)^4 (1-0.6)^{5-4}=0.2592[/tex]
And we can use the following excel code: "=BINOM.DIST(4,5,0.6,FALSE)"
c) [tex] P(X<2) = P(X \leq 1) = P(X=0) +P(X=1) =0.16807+0.36015=0.52822[/tex]
And the excel code would be: "=BINOM.DIST(1,5,0.3,TRUE)"
d) [tex] E(X) =n*p= 5*0.5 =2.5[/tex]
e) [tex] Var (X) = np(1-p) = 5*0.4*(1-0.4)=1.2[/tex]
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 know that:
[tex]X \sim Binom(n=5, p)[/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 the value of p =0.8 and we want to find this probability:
[tex]P(X=5)=(5C5)(0.8)^5 (1-0.8)^{5-5}=0.32768[/tex]
And we can use the following excel code: "=BINOM.DIST(5,5,0.8,FALSE)"
Part b
For this case the value of p =0.6 and we want this probability:
[tex]P(X=4)=(5C4)(0.6)^4 (1-0.6)^{5-4}=0.2592[/tex]
And we can use the following excel code: "=BINOM.DIST(4,5,0.6,FALSE)"
Part c
The value of p assumed is 0.3. For this case we want this probability:
[tex] P(X<2) = P(X \leq 1) = P(X=0) +P(X=1)[/tex]
[tex]P(X=0)=(5C0)(0.3)^4 (1-0.3)^{5-0}=0.16807[/tex]
[tex]P(X=1)=(5C1)(0.3)^4 (1-0.3)^{5-1}=0.36015[/tex]
[tex] P(X<2) = P(X \leq 1) = P(X=0) +P(X=1) =0.16807+0.36015=0.52822[/tex]
And the excel code would be: "=BINOM.DIST(1,5,0.3,TRUE)"
Part d
The expected value for the binomial distribution is given by [tex]np[/tex] and since we are assuming p=0.5 we got:
[tex] E(X) =n*p= 5*0.5 =2.5[/tex]
Part e
Assuming the value of p=0.4. The variance for the binomial distribution is given by:
[tex] Var (X) = np(1-p) = 5*0.4*(1-0.4)=1.2[/tex]