Questions tagged [combinations]

Combinations are subsets of a given size of a given finite set. All questions for this tag have to directly involve combinations; if instead the question is about binomial coefficients, use that tag.

A combination is a way of choosing elements from a set in which order does not matter.

A wide variety of counting problems can be cast in terms of the simple concept of combinations, therefore, this topic serves as a building block in solving a wide range of problems.

The number of combinations is the number of ways in which we can select a group of objects from a set.

The difference between combinations and permutations is ordering. With permutations we care about the order of the elements, whereas with combinations we don’t.

Notation: Suppose we want to choose $~r~$ objects from $~n~$ objects, then the number of combinations of $~k~$ objects chosen from $~n~$ objects is denoted by $~n \choose r~$ or, $~_nC_r~$ or, $~^nC_r~$ or, $~C(n,~r)~$.

$~n \choose r~$$=\frac{1}{r!}~^nP_r=\frac{n!}{r!~(n-r)!}$

Example: Picking a team of $~3~$ people from a group of $$~10\cdot C(10,3) = \frac{10!}{7! \cdot 3!} = \frac{10 \cdot 9 \cdot 8}{3 \cdot 2 \cdot 1} = 120.~$$

7786 questions
0
votes
1 answer

Optimal solution for maximum value for product of combination

Suppose we have to choose $mm_1$ items out of $m_1$ and $mm_2$ items out of $m_2$ such that $mm_1 + mm_2 = k$ where $k$ is fixed and known. This also constrains us such that $mm_1 < m_1$ and $mm_2 < m_2$. I want to maximize the value of…
Budhapest
  • 117
0
votes
2 answers

Prove $\binom{n}{k} = \frac {n!}{k!(n - k)!} \text { where } 0 \le k \le n.$

Proof(incomplete): There are $\frac {n!}{(n - k)!} k$- permutations. Each $k$-element subset can be listed in $k!$ ways. The number of ways to first choose a $k$ element subset and to list the elements of that subset is $\binom{n}{k} \cdot \frac…
0
votes
1 answer

You have eight razors to distribute among $12$ men. In how many ways can you do this?

Here we choose multisets of men who get to have a certain number of razors. Are we dealing with a set of $12$ men or a multiset of $12$ men? The formula for $\text {$n$ multichoose $k$}$ is $\left(\!\!\binom{n}{k}\!\!\right) = \binom{n + k -…
0
votes
1 answer

Combinations Problem

I first calculated the total amount of ways to have a committee of 6 members without the given restrictions and found that to be $(12*11*10*9*8*7/6!)$ = 924 Then I subtracted from 924 the total amount of ways that I could arrange of committee of…
user203373
-1
votes
1 answer

Having an issue with a problem my friend showed me. Can you help me please?

A college offers 2 introductory courses in history, 1 in Science, 2 in Math, 2 in Philosophy, and 4 in English. If a freshman takes one course in each area during her 1st semester, how many course selections are possible?
SYO
  • 3
-1
votes
1 answer

Combinatorial Proof that $\binom{n\vphantom{d}}{c}\binom{n-d}{b-c}=\binom{n\vphantom{d}}{d}\binom{d}{c}$

So I have that $\binom{n}{ c}\times \binom{n-d}{b-c} = \binom{n }{ d}\times \binom{d}{c}$. I am trying to prove it by using number of players to prove this. What should be the best way to prove this? I can't seem to figure out what should go in…
-1
votes
2 answers

Combinations with limitations on the most you can choose.

I got this question correct, but I feel there has to be a more intuitive way to formulate the combinations when you choose at most x from a specific type instead of using cases like I did. Any help is appreciated!
-1
votes
2 answers

Seating arrangement at a round table

I am struggling to solve this proplem which goes as follows: we have a round table with 6 seats, on 3 of those seats sits 3 people, with an empty chair between each two, after this 3 more come and sit in the 3 vacant seats, how many diffrent ways…
-1
votes
2 answers

In how many ways can we create a team of 6 such that players of every age are represented?

Let's say that there is a team of 28 girls, out of which 8 are 10 years old, 11 are 11 and 9 are 12 years old. In how many ways can we create a team of 6 such that players of every age are represented? The text book solution is: $299046$…
Jakov Gl.
  • 133
-1
votes
2 answers

Why denominator is $^{15}\rm C_{10}$?

Question: Fifteen telephones have just been received at an authorized service center. Five of these telephones are cellular, five are cordless, and the other five are corded phones. Suppose that these components are randomly allocated the numbers…
-1
votes
1 answer

Find the number of ways in which India can win the series of 11 matches (If no match is drawn and all matches played).

Q) Find the number of ways in which India can win the series of 11 matches (If no match is drawn and all matches played). My answer:${11\choose 6}\cdot2^5$ Answer provided in book:$2^{10}$ My approach For winning a series India must win at least 6…
user932147
-1
votes
1 answer

question about combination

How many ways are there to assign each of five professors in a math department to two courses in the Fall semester (that is 10 different math courses in all) and then assign each professor two courses in the spring semester such that no professor…
ssss
  • 1
-1
votes
1 answer

show that the ways to pick 2 subsets A and B of [n] when A is subset of B equals to n^3

I know that the total of subsets of a set is 2^n. I am assuming I have to use combinations but I cannot think of something to start. Anybody can help Thanks in advance
gav
  • 31
-1
votes
1 answer

How Many Unique Combinations

How many unique combinations of 3 products can be made from 5 products. Repetitions are allowed (ex 1,1,1 or 1,1,2 etc)but since these are products for sale, groupings such as 1,2,3 & 3,2,1 are not allowed because both groups contain the same…