57.2k views
2 votes
Give A={a,b,c},how many subsets does A have including 0?

User Daniel Kim
by
7.2k points

1 Answer

7 votes
Answer: 8 subsets

----------------------------------------------------------------------
----------------------------------------------------------------------

There are n = 3 elements in the given set, so there are 2^n = 2^3 = 2*2*2 = 8 subsets. Those 8 subsets are listed below

{a,b,c}
{a,b}, {a,c}, {b, c}
{a}, {b}, {c}
{ }

The first row is the original set. Any set is a subset of itself.
The second row represents subsets with exactly 2 elements.
The third row represents subsets with exactly 1 element
The fourth row is the empty set which can be written as
\varnothing
User Sarcastron
by
8.1k points