document.write( "Question 250032: 37. In this exercise we study the connection between sets (from Chapter 7) and combinations
\n" );
document.write( "(from Chapter 8).
\n" );
document.write( "a. Given a set with n elements, what is the number of subsets of size 0? of size 1? of
\n" );
document.write( "size 2? of size n?
\n" );
document.write( "b. Using your answer from part a, give an expression for the total number of subsets of
\n" );
document.write( "a set with n elements.
\n" );
document.write( "c. Using your answer from part b and a result from Chapter 7, explain why the following
\n" );
document.write( "equation must be true: (n) + (n) + (n) + ... + (n) =2n
\n" );
document.write( " (0) (1) (2) (n)
\n" );
document.write( "d. Verify the equation in part c for n=4 and n=5
\n" );
document.write( "e. Explain what the equation in part c tells you about Pascal’s triangle \n" );
document.write( "
Algebra.Com's Answer #185510 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! a. Given a set with n elements, what is the number of subsets \n" ); document.write( "of size 0?---------nC0 = 1 \n" ); document.write( "of size 1? of------nC1 = n \n" ); document.write( "size 2?------------nC2= (n(n-1))/2 \n" ); document.write( "of size n?---------nCn = 1 \n" ); document.write( "---------------------------------------------- \n" ); document.write( "b. Using your answer from part a, give an expression for the total number of subsets of a set with n elements.-------------- \n" ); document.write( "Total number of subsets = nC0 + nC1 + nC2 + ... + nCn = 2^n \n" ); document.write( "---------------------------------------- \n" ); document.write( "c. Using your answer from part b and a result from Chapter 7, explain why the following \n" ); document.write( "equation must be true: nC0 + nC1 + nC2 + ... + nCn = 2^n \n" ); document.write( "Ans: Every element in the set of \"n\" is either chosen or not \n" ); document.write( "chosen in each subset. So the number of possible subsets \n" ); document.write( "is 2^n (a choice with 2 possible outcomes made n times) \n" ); document.write( "------------------------------------------------------------------ \n" ); document.write( "d. Verify the equation in part c for n=4 and n=5 \n" ); document.write( "4C0 + 4C1 + 4C2 + 4C3 + 4C4 \n" ); document.write( "= 1 + 4 + 6 + 4 + 1 \n" ); document.write( "= 16 \n" ); document.write( "= 2^4 \n" ); document.write( "--------------------------------- \n" ); document.write( "Note: I'll leave n = 5 to you \n" ); document.write( "--------------------------------- \n" ); document.write( "e. Explain what the equation in part c tells you about Pascal’s triangle \n" ); document.write( "The sum of the elements in the kth row is 2^(k-1) \n" ); document.write( "==================================================== \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "--------------------------------- \n" ); document.write( " \n" ); document.write( " |