document.write( "Question 919389: Q3: Assume the number of episodes per year of otitis media, “a common disease of the middle ear in early childhood” is 1.6 episodes per year.
\n" );
document.write( "a. Find the probability of not getting any episodes of otitis media in the first year of life.
\n" );
document.write( "b. Find the probability of getting 2 or more episodes of otitis media in the first 2 years of life.
\n" );
document.write( "c. Find the probability of getting 2 episodes of otitis media in the first 6 months of life.
\n" );
document.write( "d. Find the Expected number and variance of episodes of otitis media in the first 1.5 years of life? \n" );
document.write( "
Algebra.Com's Answer #557703 by ewatrrr(24785) You can put this solution on YOUR website! Poisson Distribution: avg = 1.6/yr \n" ); document.write( "a. P = poissonpdf(1.6,0) \n" ); document.write( "b. P = 1 - posissoncdf(3.2,1) \n" ); document.write( "c. P = poissonpdf(.8,2) \n" ); document.write( "d. Exp(1.5yrs) = 2.4 , variance the same: 2.4 \n" ); document.write( " |