• S
    SwaseekhGATE Preparation
General
  • Dashboard
  • Syllabus
  • Questions
  • Aptitude
  • Mock Tests
  • TCS NQT 2026
Account
  • Pricing
  • Contact
  1. GATE CS
  2. PYQs
  3. Discrete Mathematics

Let A be a set with n elements. Let C be a collection of distinct subsets of A such that for any two subsets S_1 and S_2 in C, either S_1 ⊆ S_2 or S_2 ⊆ S_1. What is the maximum cardinality of C? A. n - 1 B. n + 1 C. 2^(n-1) + 1 D. n!

GATE 2005 · Discrete Mathematics · Set Theory · medium

Answer: The maximum cardinality of C is n + 1.

  1. Construct the maximum chain: List subsets of A by including exactly one of each size: {}, {a_1}, {a_1, a_2}, ..., {a_1, a_2, ..., a_n} = A. Each consecutive pair satisfies the inclusion condition, giving a valid chain of n + 1 subsets.
  2. Show n+1 is the maximum: A chain in 2^A has strictly increasing sizes at each step. The sizes must be a strictly increasing subsequence of {0, 1, 2, ..., n}, which has n+1 elements. So any chain has at most n+1 elements.