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
A. 219
B. 228
C. 235
D. 256
Answer by math_tutor2020(3816) (Show Source):
You can put this solution on YOUR website!
Construct two example sets
A = {a, b, c, d}
B = {e, f}
A x B = cartesian product
A x B = set of ordered pairs of form (p,q) where p is from set A and q is from set B
A x B = {
(a,e), (a,f),
(b,e), (b,f),
(c,e), (c,f),
(d,e), (d,f)
}
If you want you can flatten the set into one single line like this
A x B = { (a,e), (a,f), (b,e), (b,f), (c,e), (c,f), (d,e), (d,f) }
But it might be preferable to have it broken up into rows.
4 items in set A, 2 items in set B, n = 4*2 = 8 ordered pairs in AxB.
There are 2^n = 2^8 = 256 possible subsets of AxB (see Power Set)
This includes the set AxB itself and the empty set.
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.
All of those values in that row add to 256.
The first three items of this row correspond to:- 1 empty set
- 8 subsets that are singletons. These are the subsets that have exactly one ordered pair.
- 28 subsets that have two ordered pairs
Add up those first three values to get 1+8+28 = 37
There are 37 subsets with at most 2 ordered pairs.
Then 256-37 = 219 is the amount of subsets that have between 3 ordered pairs and 8 ordered pairs.
Answer: Choice A
|
|
|