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
3 answers

In how many ways a pack of 52 cards be formed into 4 group of 13 cards?

According to the question the way I solved was $$52_{\mathbf C_{13}}×39_{\mathbf C_{13}}×26_{\mathbf C_{13}}×13_{\mathbf C_{13}}×4!$$ But in the solution it is given as $$52_{\mathbf C_{13}}×39_{\mathbf C_{13}}×26_{\mathbf C_{13}}×13_{\mathbf…
1
vote
1 answer

Arranging 14 Coloured Pieces of Paper

I have 3 yellow pieces of paper, 4 blue, 5 brown, and 2 green. I know that I have to do some sort of permutation calculation since a yellow piece in index 1 would be considered the same as a different yellow piece in the same index. My current…
1
vote
1 answer

The ordered binomial coefficient

I have an arbitrary long list that looks as following: {a,b,c,d,e,f} Now I would like to create ordered combinations in this list that need to have a length of 3, 4 or 5. To clarify, ordered combinations of length 3 are: {(a,b,c), ((b,c,d), (c,d,e),…
mroWsymaS
  • 115
1
vote
3 answers

Find the number of non negative intagral solutions of $x+2y+z = 100 $. Given that $x, y, z \geq1$.

I have taken the following approach using combinations. I am considering $2y$ to be one object say $k$. So now I will have the equation : $x+k+z = 100$ and the conditions : $x,z \geq1 $ and $k \geq2$. Then in order to use the formula for…
1
vote
2 answers

In how many ways can we split $6$ toys such that John will receive $2$, Carl and Michael will receive at least one toy?

In how many ways can we split $6$ toys such that John will receive $2$, Carl and Michael will receive at least one toy? I'll be using combinations in this case. Let us see how many ways there are to split $6$ boys as seen…
Melz
  • 792
1
vote
0 answers

Golfing rotations

Let's say there are 10 golfers playing a mini 3 round tournament, 1 round on each of 3 consecutive days. Each day they are split in to 2 groups of 5 golfers. Is it possible that, by the time the tournament is over, each golfer has played with each…
nurdyguy
  • 141
1
vote
1 answer

How many unique games can be created from a deck of 25 cards?

I'd love some Math help. This Math question is probably too complicated to be solved. I've created a board game that has one important part that uses cards. I'm having trouble coming up with the number of possible unique games. Each card effects an…
Ger
  • 13
1
vote
1 answer

Calculating poker between two players

Suppose three people are playing poker. Player1 has the cards 3(diamonds) and 10(spades). The three cards on the table are 10(clubs), King(spades) and 3(spades). How many hands can Player2 or Player3 have that so that both of their hands beat…
user596208
1
vote
0 answers

How many ways can I choose a committee of $3$ people from $7$ males and $2$ females.

Among $9$ people there are $7$ females and $2$ males. You want to make a committee of $3$ people. What is the probability the committee has at least two females? I wanted to go about this problem $2$ ways to check my answer...however I'm getting…
Lil
  • 2,529
1
vote
1 answer

Possible ways of picking mixed-doubles tennis group for 4 courts

UPDATE: My original question was overly complex. I'm re-phrasing it, removing the repeated part of the question, and focusing just on the combinations. I organize a group of players. The group is mixed, and there are 4 courts. There are 8 men and 8…
1
vote
1 answer

Calculate combinations

I've developed a PHP script that calculates the sum of a series of numbers in various combinations and compares the result with a given total value. This is already working, but the problem is that this calculation can take months, maybe years! To…
Rogério Dec
  • 205
  • 4
  • 10
1
vote
1 answer

Find the most successful combination of elements over several iterations

I have the results of 50 football games. The teams are formed from a group of 20 players, who are selected randomly each time. How do I find the combination of 2 and 3 players that are more likely to win a game? I would appreciate tips on how to…
NBK
  • 135
1
vote
1 answer

Finding number of arrangements on a shelf with one book of a kind in middle

There are 6 Novels and 3 Dictionaries. There are to be made arrangements of books in a Shelf consisting of 4 Novels and 1 Dictionary, such that Dictionary is always in the middle. I tried to do this by: There should be 2 novels to the left of…
MR. Raindrop
  • 141
  • 2
  • 10
1
vote
1 answer

How many different combinations of $18$ numbers can be made from $136$ numbers?

My question simply is how many possible different combinations of any $18$ numbers can be made from $136$ numbers? Number of different combinations of $18$ numbers is $18! = 6402373705728000$ I do not need that, but once again number of different…
1
vote
2 answers

What is the formula for Combination with repetition?

What is the number of ways we can choose three letters from $\{A,B,...,Z\}$ if repetition is allowed? This is not a permutation. Is there any formula to solve this kind of problems?
user366312
  • 1,641