document.write( "Question 1208798: Let A and B be two sets containing 4 and 2 elements respectively. Then the number of subsets of the set AxB, each having at least three elements is
\n" );
document.write( "A. 219
\n" );
document.write( "B. 228
\n" );
document.write( "C. 235
\n" );
document.write( "D. 256 \n" );
document.write( "
Algebra.Com's Answer #847248 by math_tutor2020(3816)![]() ![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "Construct two example sets \n" ); document.write( "A = {a, b, c, d} \n" ); document.write( "B = {e, f}\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "A x B = cartesian product \n" ); document.write( "A x B = set of ordered pairs of form (p,q) where p is from set A and q is from set B \n" ); document.write( "A x B = { \n" ); document.write( "(a,e), (a,f), \n" ); document.write( "(b,e), (b,f), \n" ); document.write( "(c,e), (c,f), \n" ); document.write( "(d,e), (d,f) \n" ); document.write( "}\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "If you want you can flatten the set into one single line like this \n" ); document.write( "A x B = { (a,e), (a,f), (b,e), (b,f), (c,e), (c,f), (d,e), (d,f) } \n" ); document.write( "But it might be preferable to have it broken up into rows.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "4 items in set A, 2 items in set B, n = 4*2 = 8 ordered pairs in AxB. \n" ); document.write( "There are 2^n = 2^8 = 256 possible subsets of AxB (see Power Set) \n" ); document.write( "This includes the set AxB itself and the empty set. \n" ); document.write( "Refer to Pascal's Triangle. Look at the row that starts with \"1,8,28...\". Each value in Pascal's Triangle can be computed using the nCr combination formula. \n" ); document.write( "All of those values in that row add to 256. \r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "The first three items of this row correspond to:
\n" ); document.write( "There are 37 subsets with at most 2 ordered pairs. \n" ); document.write( "Then 256-37 = 219 is the amount of subsets that have between 3 ordered pairs and 8 ordered pairs.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Answer: Choice A \n" ); document.write( " \n" ); document.write( " |