SOLUTION: first calculate the number of subsets for the set, then calculate the number of proper subsets.
{ 19, 20, 0, 10 }
Algebra ->
Subset
-> SOLUTION: first calculate the number of subsets for the set, then calculate the number of proper subsets.
{ 19, 20, 0, 10 }
Log On
One way to think about it: when forming a given subset, as you scan through the elements of the set, you can choose to (1) include that element in the subset or (2) exclude that element from the subset, hence each element multiplies by two the number of possible subsets.
The number of of proper subsets is as each subset must contain elements from the set, but not contain ALL of the elements of the set. There is only one subset that has all the elements from the set, so the -1 subtracts that one out. For the posted problem, there are 15 proper subsets.