document.write( "Question 940217: Please help ! One enterprising gambler decides to take a bet that if he flips a coin 7 times in a row and rolls a die 7 times in a row, he will get exactly 3 heads or 2 sixes. What are his odds of winning the bet ? (answer to the nearest hundredth percent ) \n" ); document.write( "
| Algebra.Com's Answer #573005 by ewatrrr(24785)     You can put this solution on YOUR website! p(heads) = 1/2, p(six) = 1/6, n = 7 \n" ); document.write( "P(3H 0r 2 6s) = binompdf(7,.5,3) + binompdf(7, 1/6, 2) \n" ); document.write( " |