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
1 answer

All possible combinations multiple of $n$ numbers

Suppose we have any $n$ numbers. How many combinations can we make to multiply them with each other. We don't only have to multiply all $n$ numbers we can multiply any amount of numbers. And is there any way to get all the possible combinations?
Sumit
  • 97
-3
votes
1 answer

Ways to choose tickets to get a sum of $30$

There are tickets which are numbered from $0$ to $30$. In how many ways can three tickets be withdrawn so that the sum of the numbers is $30$?
user439262
  • 39
  • 3
-3
votes
1 answer

Hard combinations question

Suppose we have 25 pegs, split into 5 colours equally i.e 5 red (r),5 green (g),5 blue (b),5 yellow (y) and 5 orange (o). How many ways are there to pick 5 pegs where order doesn't matter i.e choosing r,g,g,b,b is equivalent to choosing g,g,r,b,b?…
-3
votes
1 answer

How many $5$ letter arrangements can be made using the letters of the word INDEPENDENT?

How many $5$ letter arrangements can be made using the letters of the word INDEPENDENT?
asim
  • 11
1 2 3
48
49