Given 2n objects, number of ways to select n objects

  • Thread starter Thread starter nowimpsbball
  • Start date Start date
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 5K views
nowimpsbball
Messages
13
Reaction score
0

Homework Statement


Given N identical objects and N additional objects that are different from these and from each other, find the number of ways to select n objects out of these 2N objects.


Homework Equations


Either P(n,k) or C(n,k) or n^k or maybe even (n+k+1)/k


The Attempt at a Solution


Looking at these...so half the set is identical and the other half is distinct from the first half and from them selves. So I will call the first set S and the second set T to help me keep them apart.
So for the first set everything is identical and w can select up to N of them... my notes seem to indicate i would go about it as (S+N+1)/N and then the second set they are distinct from each other and we can select N of them, so T^N? Are those two formulas in the right direction? If so would I multiply those together to get the correct answer?
 
Physics news on Phys.org
Just count them. Number of ways to select n of A, 0 of B is 1.
n-1 of A, 1 of B is n
n-2 of A, 2 of B is n(n-1), etc.

So you get sum{i=0..n}(n choose i) = 2^n.