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
1
vote
2 answers

How many ways can the 60 people from 20 countries be seated so that each president are sitting consecutively?

The full question is: How many ways can the 60 people from 20 countries be seated around a table so that each president, vice president, and poet laureate are sitting consecutively? The answer I come up with is : (19!)*6 19! = the number of ways to…
JTJung
  • 37
1
vote
1 answer

Combination Problem: Solving for $n$ such that $C(n, 2) = 10$

Solve for n , $C(n, 2) = 10$ What I have done so far: $\frac{n!}{2!(n-2)!} = 10$ $\frac{n!}{2!(n-2)(n-1)n!} =10$ $\frac{1}{2n^2 - 6n-4} = 10$ $ 1 = 20n^2-6n-40$ I think I did something wrong along the way
Rose
  • 289
1
vote
1 answer

How many different 3-faced domino blocks can be made using "n" different numbers?

A "normal" domino piece has two faces or numbers on each side, but this problem requires using pieces with 3 faces. Furthermore, a (x,y,z) block is considered to be identical to a (z,y,x) block owing to their symmetry. I know that 28 different…
Sam202
  • 245
1
vote
1 answer

$(\frac{x +1}{x^{2/3}-x^{1/3}+1} -\frac{x+1}{x-x^{1/2}})^{10}$ which term doesn't contain ${x}$?

As I know $T_{r+{1}}$=$C(n,r)$ I can't able to apply the formula for the Term which not contain $x$,which is applicable for this (${x +\frac{1}{x}})^n$ So, please help me to solve this problem . Any help will be appreciated
user475389
1
vote
0 answers

Letter digit combinations to generate 5billion variations, repeats are OK.

I am trying to generate a unique code made up of four alphabetical letters and then digits that could have at least 4billion variations (repeat digits and letters are allowed). I would like the maximum number of letters to be four (but could be…
Tomo
  • 11
1
vote
2 answers

Combinations: answers are wrong?

Here's the first part to the question: From a group of 9 people, including Mr and Mrs X, a committee of 5 people is to be chosen. Mr X will not join the committee without his wife but his wife will join the committee without her husband. In how…
Jeremy Lindsay
  • 914
  • 6
  • 13
1
vote
1 answer

Calculating the total number of sets from multiple choices

I'm trying to calculate the number of potential options in creating characters for Dungeons and Dragons. Most of this is simple multiplication, but sometimes a character is allowed to choose two of something with no duplication and order doesn't…
1
vote
2 answers

Explanation of this theorem on combinations

There is this theorem in my book in the chapter of permutations and combinations which states: The total number of combinations of n different things taken any number of them at a time is $2^n$. Its proof is given as: Each thing may be disposed of…
MrAP
  • 3,003
1
vote
1 answer

In how many ways can three numbers be selected from the set $\{0, 1, 2, 3, 4, 5, 6, 7, 8, 9\}$ with replacement?

Question: We want to choose three numbers from $\{0,1,2,3,4,5,6,7,8,9\}$ with replacement. The order doesn't matter, so $\{1,1,2\} = \{2,1,1\}$ count as same. How many outcomes in total? What I've tried so far: I tried to get the result using an…
Olivia
  • 27
1
vote
1 answer

Find the number of possible outcomes

So, we have 3 types of items (a,b,c) in a collection and the number of items available is unlimited. If every time we choose 3 random items from the above collection. What is the number of possible distinct outcomes - if we are not interested in…
PKey
  • 113
1
vote
0 answers

Combination with neighbor books

How many options there are to choose 5 books from 12 different books, that the books are not neighbors. There are 2 cases: 1. The order of the choosing is matter. 2. The order doesn't matter. I really don't know where to start.
Fayubla
  • 15
1
vote
0 answers

Stars and Bars problem with conditions

$50$ prizes to be distribute among $4$ teams $A$ ,$B$, $C$ ,$D$ , provided that the team $A$ gets $15$ prizes at most ; and team B gets $20$ prizes at most, How many ways could we do that ? My try follows : answer by complement ; By using…
Medo
  • 367
1
vote
0 answers

permutation and combination idea to solve

How to get maximum number of groups from some ''n'' elements so that no two groups have more than one element in common and no restriction on size of the group .
j s s
  • 21
1
vote
1 answer

integer solutions combinations

How many solutions are there for this equation: $$x_1 + x_2 + x_3 = 17$$ when they are all non negative integers and $x_1 > 6$. I was thinking to solve the original equation then subtracting $x_1 + x_2 + x_3 = 11$ from it. Would this be the…
jillon
  • 11
1
vote
1 answer

Number of ways to get a sum 11 using numbers 1,3 and 5?

How can we find the number of ways to get sum $11$ using numbers $\{1,3,5\}$? Repetition of numbers is allowed. For example, one way is to take number $1$ and sum it $11$ times. Another is $5+5+1$. Ordering of numbers does not matter.
bornfree
  • 131