MJ

"Determining the total number of subsets of a set"

Key Concept: Number of Subsets in a Set

  • If a set has n elements, the total number of subsets it has can be calculated using the formula:

    • Total subsets = 2^n
  • The number of proper subsets (subsets that do not contain all elements of the set) is:

    • Proper subsets = Total subsets - 1 = 2^n - 1

Example Explanation

  • Sample Set: Let the set S = {a, b}.

    • Number of elements, n = 2
    • Therefore, total subsets = 2^2 = 4
    • Which are:
      • {} (empty set)
      • {a}
      • {b}
      • {a, b}
    • Proper subsets = Total subsets - 1 = 4 - 1 = 3
    • Proper subsets are:
      • {}
      • {a}
      • {b}
  • Further Example: Given a set A = {p, d, w, z},

    • Number of elements, n = 4
    • Total subsets = 2^4 = 16
    • Proper subsets = 16 - 1 = 15
    • Note: All subsets except A itself.

Calculation Practice

  1. Find the total number of subsets for a set with 3 elements.

    • n = 3
    • Total subsets = 2^3 = 8
  2. Find the proper subsets for a set with 3 elements.

    • Proper subsets = 8 - 1 = 7

Important Definitions

  • Subset: A set that contains some or all elements of another set.
  • Proper Subset: A subset that does not contain every element of the original set (i.e., it must have fewer elements).
  • Empty Set (Null Set): The set with no elements, denoted by {}.