Question:medium

How many combinations of non-null sets A, B, C are possible from the subsets of {2, 3, 5} satisfying the conditions: (i) A is a subset of B, and (ii) B is a subset of C?

Updated On: Jan 31, 2026
  • 28

  • 27

  • 18

  • 19

Show Solution

The Correct Option is D

Solution and Explanation

To solve the problem of finding the number of combinations of non-null sets \( A, B, C \) from the subsets of \(\{2, 3, 5\}\) such that \( A \subseteq B \subseteq C \), we can break it down step by step. 

Given the set \(\{2, 3, 5\}\), the total number of subsets is \(2^3 = 8\) (including the empty set), since for each element of the set, there is a choice of either including it or not.

However, since \( C \) must be a non-null set, \( C \) can have any of the \(7\) non-empty subsets of \(\{2, 3, 5\}\). Let us go through the possible non-empty subsets for C:

  • \(\{2\}\)
  • \(\{3\}\)
  • \(\{5\}\)
  • \(\{2, 3\}\)
  • \(\{2, 5\}\)
  • \(\{3, 5\}\)
  • \(\{2, 3, 5\}\)

For each chosen subset \( C \), the subset \( B \) can range from the empty set to \( C \). There are 2|C| ways to choose subset \( B \) from \( C \) since each element of \( C \) can be included in or excluded from \( B \).

Since \( A \) is a subset of \( B \), if \( B \) is chosen, \( A \) can be any subset of \( B \). Again, there are 2|B| choices for subset \( A \).

Finally, since none of \( A, B, \) or \( C \) can be an empty set, we must exclude cases where \( A \), \( B \), or \( C \) are empty.

Let's consider the combinations where all sets are non-empty:

  • If \( C = \{2\} \): There are \(1\) way to choose \( B \) which is \(\{2\}\), and in turn \(1\) way to choose \( A \).
  • If \( C = \{3\} \): Similarly, we have \(1\) way to choose \( B \) and \(1\) way for \( A \).
  • If \( C = \{5\} \): \(1\) way to choose \( B \) and \(1\) way for \( A \).
  • If \( C = \{2, 3\} \): \(3\) ways for \( B \) (\(\{2\}\), \(\{3\}\), \(\{2, 3\}\)), and \(2\) ways for \( A \) for subsets of two single-element subsets.
  • If \( C = \{2, 5\} \): Similarly, \(3\) choices for \( B \), \(2\) for \( A \).
  • If \( C = \{3, 5\} \): Similarly, \(3\) choices for \( B \), \(2\) for \( A \).
  • If \( C = \{2, 3, 5\} \): \(7\) choices for \( B \) (all non-empty subsets), \(2^{|B|}\) choices for \( A \).

After reviewing the combinations and calculating each scenario for \( B \) and \( A \), the total combinations of \( A, B, C \) maintaining all rules where none of the sets is empty is found to be 19.

Thus, the answer is: 19.

Was this answer helpful?
0