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

Combinations w/Restrictions - Reindeer Arrangement Problem

In the Khan Academy resource on "Combinations," the following question appears: Five reindeer: You need to put your reindeer, Gloopin, Balthazar, Bloopin, Prancer, and Quentin, in a single-file line to pull your sleigh. However, Prancer and…
3
votes
0 answers

Sum of combinations with duplicates

In a bag I have: Five 10c coins Two 25c coins If I pick out three coins from the bag. What are all the possible amounts of money I could have. The answer is: 30c (3x10c coins), 45c (1x25c coins, 2x10c coins) 60c (2x25c coins, 1x10c coins) I am…
Alec Hewitt
  • 131
  • 1
3
votes
1 answer

the number of 7 digit numbers that can be formed using the digits 1 , 2 , 3 , 4 , 5 using every digit at least once.

I am using two method to solve the problem. Both the methods seem correct to me but are giving different answers. METHOD 1- We have 7 places and it is necessary to use each digits of 1,2,3,4,5 once so first selected 5 places of 7 by 5C2 ways and…
BEWARB
  • 201
3
votes
3 answers

How many ways can you arrange 4 physics book and 5 math books so that the physics book are next to each other?

How many ways can you arrange 4 physics book and 5 math books so that the physics book are next to each other? So I know the arrangements can be, PPPPMMMMM MPPPPMMMM MMPPPPMMM MMMPPPPMM MMMMMPPPP 4! * 5! = 2880 ways There are 4 ways to arrange the…
Kate
  • 33
3
votes
2 answers

Different ways of putting some marbles ( Combination )

A man has 20 equal marbles. He need to put all of them into 4 different boxes. How many ways are there to put the marbles into the box ? ( He may leave some boxes empty ) 1)23*22*21/3*2*1 2)20*19*18*17/4*3*2*1 3)20*19*18/3*2*1 It will be easy for…
3
votes
2 answers

Permutations with Repetitions, how to select $n$ and $r$

I'm doing Permutations and Combinations and I'm facing difficulty with Permutations with repetitions. My book states that if there are $n$ objects chosen $r$ at a time, the total number of permutations is $n^r$. I cannot understand how to decide…
User1234
  • 3,958
3
votes
1 answer

Αn exercise in combinations.

Let it be $m,n\in\mathbb{N}^\ast$.Find the displaying numbers of $f$:$[m]$ $\rightarrow$ $[n]$ when: i)There are no restrictions ii)Is $1-1$ iii)Is strictly increasing iv)Ιs increasing My thoughts on the first question are that if we have for…
3
votes
3 answers

How many 3 character combinations can be made using letters AND numbers?

I'm wondering how many possible 3 character combinations can be made using the 26 letters of the alphabet, and 0-9. I've seen that with just the alphabet you can create somewhere around 17k different combinations of 3 letters, but I assume adding in…
Xiam
  • 133
3
votes
1 answer

How many ways to put 8 rooks on the chessboard which satisfy.....

How many ways to put 8 rooks on the chessboard which satisfy that there is no rook can attack the others rook, and there is no rook place in : 1) One main diagonal. 2) Bot Two main diagonal My result : 1) One main diagonal The problems is similar…
Haruboy15
  • 990
3
votes
5 answers

what is the difference between ${10 \choose 2}$ and ${10 \choose 1}\times{9 \choose 1}$?

I'm not able to understand the difference between these two. Don't both just give the number of ways of selecting $2$ objects from a total of $10$? Maybe the difference is that ${10 \choose 2}$ gives the number of ways of selecting $2$ distinct…
3
votes
2 answers

In how many ways can you distribute 100 lemons between Dana, Sara and Lena so that Lena will get more lemons than Dana?

Assume Dana has 0 lemons, so Lena must have 1 lemon. Now all i need to distribute is $$x_1 + x_2 = 99 \text{ // because Lena already has 1 and Dana has 0}$$ The answer to above is 100. Now assume Dana has 1 Lemon. So Lena must have 2 Lemons and now…
Ohad
  • 101
2
votes
2 answers

In how many ways we can pair from given sets .

In how many ways we can make pairs (Both elements must be from different groups) i.e. if we have two sets, $A=\{1,2\}$ and $B=\{3,4\}$, it's simple we can make $(1,3)$ $(2,4)$ $(1,4)$ $(2,3)$ only four pairs can be obtained if we have…
2
votes
0 answers

Number of Triangles in a Square Grid

I am interested in counting the number of triangles that can be constructed within a grid of points measuring $ n \times n $. The number of sets of 3 points that can be found when $ n \geq 3 $ is simply $ n^2 \choose 3 $. If the number of degenerate…
2
votes
1 answer

How many ways to generate unique multiplication result from given set?

From set {2, 2, 3, 5}, I can have 8 ways to generate unique multiplication result, which: - two number multiplication: 2*2, 2*3, 2*5, 3*5 - three number multiplication: 2*2*3, 2*2*5, 2*3*5 - four number multiplication: 2*2*3*5 Then, how many…
2
votes
2 answers

Formula for how many different weights are possible?

Suppose a set of weights contains one 1g, one 2g and two 10g. There are 11 different weights that can be achieved by combining these. Is it possible to come up with a formula that would calculate the number of different combinations possible for any…
thameera
  • 121