How many even subsets are there?

  • Context: Graduate 
  • Thread starter Thread starter xnull
  • Start date Start date
  • Tags Tags
    Subsets
Click For Summary
SUMMARY

The discussion centers on calculating the number of even and odd subsets of a finite set S with cardinality m. The conclusion is that there are exactly 2m-1 even subsets and 2m-1 odd subsets. This result is derived from the binomial theorem, which states that the total number of subsets of a set with m elements is 2m, and that the number of subsets with k elements can be expressed using binomial coefficients, denoted as &binom;{m}{k}. The relationship between even and odd subsets is established through the symmetry of binomial coefficients.

PREREQUISITES
  • Understanding of set theory and cardinality
  • Familiarity with binomial coefficients, denoted as &binom;{m}{k}
  • Knowledge of the binomial theorem
  • Basic concepts of recurrence relations
NEXT STEPS
  • Study the binomial theorem in detail
  • Explore combinatorial proofs related to subsets
  • Learn about recurrence relations and their applications in combinatorics
  • Investigate advanced topics in set theory and combinatorial mathematics
USEFUL FOR

Mathematicians, computer scientists, and students studying combinatorics or discrete mathematics who are interested in subset enumeration and related mathematical proofs.

xnull
Messages
16
Reaction score
0
Given a finite set S of cardinality m:
Decide how many even or odd subsets there are of S (finding one should give you the other).

Here is what I've done so far.

First, I looked to a multiplication out by hand.

(m * (m-1)) + (m * (m-1) * (m-2) * (m-3)) + (m * (m-1) * (m-2) * (m-3) * (m-4) * (m-5)) + ...

Well, I noticed I could factor (m * (m-1)) out which gives

(m * (m-1)) * (1 + ((m-2) * (m-3)) + ((m-2) * (m-3) * (m-4) * (m-5)) + ...)

Inside the second group of parenteses I noticed I could factor out ((m-2) * (m-3)) and so on

(m * (m-1)) * (1 + ((m-2) * (m-3) * (1 + ((m-4) * (m-5) * (1 + ... )))))))

Because this was a tad ugly I made a recurrence relation from it

R_{k} = 0
R_{i} = (m-2i)(m-2i-1)(1+R_{i+1})
R_{0} would give the solution for the number of even subsets.

I can't seem to find the closed form.

This is the only direction I've gone with the problem so far.

Does anyone have any directions to go on this or a previously published solution to the problem? I looked all over and couldn't find one but it's the kind of problem I would expect to have already been solved.
 
Physics news on Phys.org
Solved it.

Heh. Silly to have missed it.

2^{m-1} even subsets and odd subsets.
 
Remember that the number of subsets (of a set with m elements) with k elements is given by:

\binom{m}{k}

Now, from the binomial theorem (or the fact that there are as many odd subsets as even ones) and the fact that the total number of subsets is 2m, you should be able to deduce that the number of odd subsets is:

\sum_{k\;odd}\binom{m}{k}=2^{m-1}
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 29 ·
Replies
29
Views
6K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 9 ·
Replies
9
Views
3K
  • · Replies 2 ·
Replies
2
Views
3K
Replies
0
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 0 ·
Replies
0
Views
563
  • · Replies 19 ·
Replies
19
Views
4K
  • · Replies 29 ·
Replies
29
Views
2K