Question #96943
An MBA graduate is applying for nine jobs, and believes that she has in each of the nine cases a constant and independent 0.48 probability of getting an offer.
a. What is the probability that she will have at least three offers?
b. If she wants to be 95% confident of having at least three offers, how many more jobs should she apply for? (Assume each of these additional applications will also have the same probability of success.)
c. If there are no more than the original nine jobs that she can apply for, what value of probability of success would give her 95% confidence of at least three offers?
1
Expert's answer
2019-10-22T08:04:03-0400

Let be XX the amount of offers. Because we have a deal with independent experiments with two outcomes (offer or not), XX is distributed according to the Binomial distribution XB(n,p)X \sim B(n,p) where nn is the amount of possible 'jobs' and pp is the probability of success (in our case p=0.48p = 0.48). The PMF function is

fX(k)=Cnkpk(1p)k{f_X}(k) = C_n^k{p^k}{(1 - p)^k}

where Cnk=n!k!(nk)!C_n^k = {{n!} \over {k!(n - k)!}} , CDF function can be calculated as


FX(k)=i=0kCnipi(1p)ni{F_X}(k) = \sum\limits_{i = 0}^k {C_n^i{p^i}{{(1 - p)}^{n - i}}}

Part a)



We need to find P(X3)P(X \ge 3). Let's rewrite it and use the definition of CDF


P(X3)=1P(X2)=1FX(2)P(X \ge 3) = 1 - P(X \le 2) = 1 - {F_X}(2)

Let's calculate FX(2){F_X}(2) (in this case n=9n = 9)


FX(2)=9!0!9!0.4800.529+9!1!8!0.4810.528+9!2!7!0.4820.5270.11115{F_X}(2) = {{9!} \over {0!9!}}{0.48^0} \cdot {0.52^9} + {{9!} \over {1!8!}}{0.48^1}{0.52^8} + {{9!} \over {2!7!}}{0.48^2}{0.52^7} \approx 0.11115

Thus


P(X3)10.111150.88885P(X \ge 3) \approx 1 - 0.11115 \approx 0.88885

Part b)


We need to find such minimal nn that P(X3)=0.95P(X \ge 3) = 0.95 . Actually, we need to solve the equation


1i=02Cnipi(1p)ni0.951 - \sum\limits_{i = 0}^2 {C_n^i{p^i}{{(1 - p)}^{n - i}}} \ge 0.95

but it's impossible to do without using advenced math (such as incomplete beta-fucntions), so we shall just use brute-force.

We shall calculate FX(2){F_X}(2) for dirrerent nn (starting with 10) until we have


FX(2)10.950.05{F_X}(2) \le 1 - 0.95 \le 0.05

Let's start with n=10n = 10


FX(2)=10!0!10!0.4800.5210+10!1!9!0.4810.529+10!2!8!0.4820.5280.07022{F_X}(2) = {{10!} \over {0!10!}}{0.48^0} \cdot {0.52^{10}} + {{10!} \over {1!9!}}{0.48^1}{0.52^9} + {{10!} \over {2!8!}}{0.48^2}{0.52^8} \approx 0.07022

It doesn't fit, thus continue with n=11n = 11


FX(2)=11!0!11!0.4800.5211+11!1!10!0.4810.5210+11!2!9!0.4820.5290.04361{F_X}(2) = {{11!} \over {0!11!}}{0.48^0} \cdot {0.52^{11}} + {{11!} \over {1!10!}}{0.48^1}{0.52^{10}} + {{11!} \over {2!9!}}{0.48^2}{0.52^9} \approx 0.04361

We got it, thus she needs to apply for 11 jobs, and the answer is '2 more'.


Part c)


We need to do the same thing but now we should resolve it for pp


FX(2)=i=02Cnipi(1p)ni=0.05{F_X}(2) = \sum\limits_{i = 0}^2 {C_n^i{p^i}{{(1 - p)}^{n - i}}} = 0.059!0!9!p0(1p)9+9!1!8!p1(1p)8+9!1!7!p2(1p)7=0.05{{9!} \over {0!9!}}{p^0}{(1 - p)^9} + {{9!} \over {1!8!}}{p^1}{(1 - p)^8} + {{9!} \over {1!7!}}{p^2}{(1 - p)^7} = 0.05

(1p)9+9p(1p)8+36p2(1p)7=0.05{(1 - p)^9} + 9p{(1 - p)^8} + 36{p^2}{(1 - p)^7} = 0.05

It is the polynomial equation of 9th degree and can't be solved analytically. Thus let's use Newton's method and rewrite our problem as finding a real root of the function


g(p)=(1p)9+9p(1p)8+36p2(1p)70.05g(p) = {(1 - p)^9} + 9p{(1 - p)^8} + 36{p^2}{(1 - p)^7} - 0.05

Newton's method says (wery briefly) that we can find the root by iterative process


pk+1=pkg(pk)g(pk){p_{k + 1}} = {p_k} - {{g({p_k})} \over {g'({p_k})}}

and with appropriate initial approximation p0{p_0} we can get the solution p=limkpkp = \mathop {\lim }\limits_{k \to \infty } {p_k} . We can use p=0.5p = 0.5 as initial approximation (slightly more then our pp in the problem). The derivative is g(p)=252p2(1p)6g'(p) = - 252{p^2}{(1 - p)^6}. Calculate


g(p0)=(10.5)9+90.5(10.5)8+360.52(10.5)70.039844g({p_0}) = {(1 - 0.5)^9} + 9 \cdot 0.5{(1 - 0.5)^8} + {360.5^2}{(1 - 0.5)^7} \approx 0.039844

and


g(p0)=2520.52(10.5)60.984375g'({p_0}) = - 252 \cdot {0.5^2}{(1 - 0.5)^6} \approx - 0.984375

and we get for the first approximation


p1=p0g(p0)g(p0)=0.50.0398440.9843750.540476{p_1} = {p_0} - {{g({p_0})} \over {g'({p_0})}} = 0.5 - {{0.039844} \over { - 0.984375}} \approx 0.540476

The same procedure for the second approximation give us


p20.5404760.0060850.6931110.5490.55{p_2} \approx 0.540476 - {{0.006085} \over { - 0.693111}} \approx 0.549 \approx 0.55

We shall stop at this point and approximately says that p0.55p \approx 0.55 , this is the answer.




Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!
LATEST TUTORIALS
APPROVED BY CLIENTS