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 to calculate all the possible leagues for a group of n teams

Given a set of $n$ teams, I would like to calculate how many different leagues exist. For a league, I mean a series of days, where in each day (with $\frac{n}{2}$ matches) every team plays a match against another team, and the total number of days…
dzang
  • 103
0
votes
0 answers

How many choices for this combination?

Suppose that we a string contains n multiplicates of '-1' and '+1', we denote it $A = {\{a_1,a_2,...,a_{2n}\}}$. Define $S_k = \sum_{i=1}^{k}a_i$. If, $\forall k\leq 2n, S_k \geq 0$, then how many choices for the string?
yangcs11
  • 358
0
votes
0 answers

3 dice thrown together

If $3$ dice are thrown together the no. of ways in which the sum of numbers appearing on the dice is $n$, is? $ \ $ $9 \leq n \leq14$ My try: $(x^1+x^2+x^3+x^4+x^5+x^6)^3$ The sum of the coefficients of $x^9$ to $x^{14}$ should be found. But…
0
votes
1 answer

Calculate the unique combinations

I would like to know how to calculate the unique combinations in the following scenario. There are 3 levels: Building Rooms in the building Objects in room There are 15 buildings, 9 rooms and 9 objects in each room. A user has to choose 1…
James
  • 3
0
votes
3 answers

How too calculate all possible combinations

How would you calculate all possible combinations of groups size 2 or 3 from 11 people
0
votes
3 answers

Seating arangement of 4 men and 3 women in a round table ...

In how many ways can 4 men and 3 women be arranged in a round table:  i) if the women always sit together? ii) if the women never sit together?
Jeetu
  • 21
  • 1
  • 1
  • 3
0
votes
4 answers

How many different arrangements are possible? 12 students, no single table for 12. They need to sit around 2 circ tables with 6 chairs.

Twelve students are going for lunch . There is no single table for twelve. So, they will sit around two circular tables, each with six chairs. How many different arrangements are possible? (original question) From what I understand in this question,…
Mig
  • 3
  • 1
0
votes
2 answers

6 boys and 8 girls, create a group of four that has more than one boy. Why this solutions is wrong?

$6$ boys and $8$ girls, how many ways to create a group of $4$ that has more than $1$ boy. I know the solution of ${6\choose 1}{8 \choose 3} + {6\choose 2}{8\choose 2} + {6\choose 3}{8\choose 1} + {6\choose 4}{8\choose 0}$ but while I can't argue…
Di Wang
  • 511
0
votes
0 answers

A way to get the value of N choose R for all values of R?

Is there a formula or perhaps an automatic calculator online (or a method in excel) by which I can calculate the total number of combinations one can pick of all sizes from a set of n items? i.e. if n = 4, I would like the quantity of values from…
user1299028
  • 211
  • 2
  • 9
0
votes
1 answer

Is this the number of combinations or permutations?

I'm trying to figure out how many different combinations exist in some sets, after doing research I've been thinking that I've only been calculating the number of permutations but I'm starting to think maybe it is actually the number of…
DoubleDouble
  • 267
  • 1
  • 2
  • 9
0
votes
1 answer

Combination word problem

There is a group of people, 30 women and 33 men (total 63). A group must be randomly formed of 3 women and 2 men. How many combinations are possible? My logic so far: combination (not permutation), order unimportant and repetition unallowed: (30 …
0
votes
1 answer

Ordering word problem

Three girls and three guy sit in a row. How many ways can they sit if all the guys want to sit together?
0
votes
2 answers

Number of combinations in a 4 digit code with rules

I am sure there is a general and simplified way to solve this problem, I am just unable to figure out the generalized formula (if there is one). Say we have to write a code with 4 digits, the digits can range from 0 to 9. All digits in the code…
0
votes
2 answers

Password Combination Problem

A user must choose $ n $ characters password using: uppercase letters $ A-Z (size=26)$ lowercase letters $ a-z (size=26)$ digits $ 0-9 (size=10)$ Each password must contain at least an uppercase and a digit. What should be the formula to calculate…
KillerKidz
  • 317
  • 2
  • 12
0
votes
2 answers

What is the difference between the following two problems on combination:

Problems: 1. How many ways 6 balls can be distributed among three boxes? 2. How many equations of the form $ax^2+bx+c=0$ can be formed if the coefficients are determined by throwing an ordinary six faced die. I have confusion with the second…
Primo
  • 41