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

Calculating the number of combinations given a ruleset

Using the following table as an example for this: Table The rules are: The left column is unchanging, each column 1 section (A, B, C, D) takes up 3 rows while each column 2 section only takes up 1 Only rows 6-9 can be used in…
0
votes
0 answers

Trying to make a schedule for 5 people playing double but how?

Wrong solution I have tried to make a schedule for player a, b, c, d, e with some criteria: Two people are playing on each team. Each pair should play against each pair possible (each pair is playing against 3 different pairs). There should be…
0
votes
3 answers

Splitting 90 students into 3 classes

90 students, including Vivien and Victoria, are to split into three classes of equal size, and this is to be done at random. What is the probabilty that Vivien and Victoria end up in the same class? My attempt is $\frac{\binom {88}{28}\binom…
David
  • 5
0
votes
0 answers

In how many ways can you choose theee numbers from 1 to 100 with different sum?

In the name of Allah In how many ways can you choose three numbers from 1 to 100 with different sum, If you can choose a number more than one time? Eg: {3,2,1} is same as {1,1,4} because 1+1+4=3+2+1. I know how to calculate how many ways is there to…
madfd adfd
  • 150
  • 9
0
votes
0 answers

Describe the range of any Combination (nCr) given n

I'm working on a problem of finding the maximum of $\binom{n}{r}$ in terms of $n$, where $r\le$n. Now, I know that $\binom{n}{0}+\binom{n}{1} +...+\binom{n}{n}=2^n$, so $\binom{n}{r}$ should be no more than $2^n$. And I find that $\binom{2}{1}=2$…
0
votes
1 answer

Picking numbers from a table following a criteria

Finding a combination in a table that matches a criteria Given the following table of…
0
votes
0 answers

Calculating number of combinations, where there are two data sets, and each choice has a value. Total value cannot be exceeded!

I run a Fantasy Motorcycle Racing league. As part of this players choose 2x Riders, and 1x manufacturer (the two data sets). You cannot choose the same rider twice, so therefore I'm looking at combinations without repetition. I have worked out that…
0
votes
1 answer

GRE Combinations Question - question on methodology

The question is as follows: "A class of 10 students is electing a president and two vice presidents for student council. If each student in the class is eligible for either office and no student may hold multiple offices, how many different ways can…
0
votes
1 answer

Which of these workout routines would result in more workouts per year?

Person A exercises 3 times a week: Mon, Wed, Fri - for the whole year. That's 3 days a week X 52 weeks = 156 total sessions. Person B exercises every other day: e.g. Mon, Wed, Fri, Sun, Tue, Thu, Sat, Mon... So how many total sessions does Person B…
nLinked
  • 101
0
votes
0 answers

Find number of integral solutions equation

find number of non negative integral solutions of equation x+y+z+w=150 where,0<=x<=50,0<=y<=50,0<=z<=50,0<=w<=100 I tried to solve it using partition method ((n+r-1)C(r-1)) but didn't got the right answer.
Lakshit
  • 15
0
votes
0 answers

Number of non-recursive combinations of variables

For mathematically minded people, this is probably an easy one. Unfortunately, I am not one of those, and therefore I am too dumb to even know how to do an effective google search or searching already asked questions here. So, I am sorry if this was…
thal
  • 1
0
votes
1 answer

Configurations and combinations in a chess board

In a chessboard, a pawn needs to move from the lower left to the upper right corner. a) Find the number of possible paths if one "move" is a combination consisting of 3-steps up and 4-steps right, for example, R-UU-RR-UU-RR-UUU-RR is one possible…
Terma
  • 23
0
votes
1 answer

School Soccer Team Tryouts

The coach of a university soccer team is trying to form a team. From the english department she has found 15 people, and from the cs department she has found 13. She wants to pick the best 14 players for her team The Coach wants to choose 14…
0
votes
1 answer

Finding all solutions for a linear equation with n variables and a set of m possible values

Sorry if I'm not always using the right words, I'm not a native English speaker. I am working on an algorithm but it's just brute force at the moment and I'm a bit stuck right now... Consider this equation with $n$ variables: $x_1 + x_2 + \ldots +…
mattg
  • 1
0
votes
2 answers

How do I find a number of unique combinations?

I developing a simple algorithm and would like to know how I can use formulas to find a number of combinations of two in a row of digits. For example: The row of digits: 0, 1, 2; Possible combinations are: (0, 1), (0, 2), (1, 2) The number of…