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

How would I solve a combination problem where one combination equals 5 times another combination.

I have $ \frac{n!}{4!(n-4)!} = 5\frac{n!}{6!(n - 6)!} $ and $n \geq 6$ I tried putting the equation into wolfram alpha and receive a solution, but couldn't see a step by step guide on how to perform the manipulation correctly.
ZeroPhase
  • 229
0
votes
2 answers

Finding how many Combination possible of recurring object

The question : If i have a box that for example have 3 different color ball (R, G, B) I would like to know how many combination of color that can occur in specific circumstances ex : If I take out the ball randomly and put it back, 5 times, how many…
0
votes
1 answer

Combinations of two letters

Find a word of length $N$ such that the word contains either 'H', 'E', or both, but the word should not contain consecutive 'E's. For example, if $N=3$, then the word can be HHE, HEH, HHH, EHH, or EHE but not EEH or HEE.
0
votes
1 answer

Possible combinations of a 13 letter string of words

How can I work out the amount of possible combinations contained within the string 'cheese > beer'. This includes all letters in the English alphabet, spaces, uppercase and lowercase letters, numbers, and all the symbols found on a standard QWERT…
levaa
  • 3
0
votes
0 answers

How to extract a subset of trading cards from a larger set based on arbitrary rules

I have a set of approximately 20,000 different football (soccer) trading cards (for those interested, this question is based on FIFA Ultimate Team). Each represents a football player and the card has an ability rating between 1 and 99. The higher…
0
votes
2 answers

If I create a single elimination bracket with $x$ amount of teams, how do you manually find all the combinations.

Say I have $4$ teams, then what are all the possible bracket possibilities. I know the number of possibilities exponentially increases with the more teams in the bracket. If there are any websites that could help, that would be great too.
jeff
  • 1
0
votes
1 answer

Possible selection

Can someone explain why the total number of ways of selecting one or more of n different things is $2^n -1$ and that of selecting zero or more things out of $p$ identical things is $p+1$. I am confused in this alot plzz help.
0
votes
1 answer

How can I calculate whether I can form a group of 10 tournament matches from a limited set of matches/pairs?

I'm trying to work out whether I can form 10 matches from a set of 98 possible player pairings (which includes 20 individuals). Each player must play in one, and only one, of the matches. A computational approach is fine, but there are too many…
dommer
  • 103
0
votes
0 answers

Cheese order combination question:

The problem statement, all variables and given/known data Question: A cheese shop carries a large stock of 34 kinds of cheese. By the end of the day 48 cheese sales have been made and the items sold must be restocked. How many different restocking…
0
votes
1 answer

Maths question from the chapter of combinations

How many different words can be formed with word TOMORROW taking all at a time such that all vowels don't occur together??
0
votes
1 answer

how to calculate number of combinations of 3 letters and 5 numbers

I'm hoping this is really simple, but I can't just seem to get it! I have an 8 character code that consists of 3 letters [A] and 5 numbers [N] I need to work out the possible positional/ordering combinations of those 8 characters, e.g. ANNANNNA,…
Tim Morrison
  • 101
  • 1
  • 1
0
votes
1 answer

Combinations from two different groups

I was asking myself the next scenario but I cant figure it out how to solve it. We have two group, first one with next characters: qwerasdf And the second one with: zxcdvbnr If a have to create a string with a substring of three characters from the…
0
votes
1 answer

How many possible movies can there be?

Specifically 90 minute, 60fps, 1920x1080 movies using 128kbps audio. I did the math and got (60)x(5400^2)x(8^2073600)x(2^128000). The base 8 number refers to the number of possible pixel configurations on a 1920x1080 frame. The base 2 number refers…
0
votes
2 answers

Value of n from combinatorial equation

Find the value of $n$ from the given equation: $$\binom{n}{n}+2\binom{n}{n-1}+\binom{n}{n-2} = \binom{n+2}{2n-3}$$ I have solved it to get the following and cannot proceed further: $$\binom{n+2}{2} = \binom{n+2}{2n-3}\\ \frac{(n+2)!}{2!\cdot n!} =…
user481207
0
votes
0 answers

Divide objects in groups so that total sum of sizes in a group are balanced across groups

I have a set of $N$ ordered objects with respective known sizes. I need to group them into $M$ groups subject to the following constraints: Each group must have at least $1$ object. Ordering of items should not be altered, that means if the…