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

Party with 10 guests

I'm inviting 26 people over. Potential guests include 15 Bama fans, 10 Auburn fans, and 1 who doesn't like football. If only 10 come, what's the probability that all 10 are Bama fans? And if 10 show up, what's the probability that 5 are Bama and 5…
jks
  • 21
2
votes
2 answers

number of 6 digit combination using M 0s and N 1s.

I have seen this question which lead me ask this following question. What is the number of unique possibilities to generate a binary string that has M 0s and N 1s.? For example, If M=3, N=4, then possible combinations are 0001111 0101010 etc.
2
votes
1 answer

How to compute for the number of sequential combinations possible in a set?

Suppose I have a set {A, B, C, D, E, F, G}, and I need to find the number of possible subsets with N number of elements where each subset can only content neighboring elements. Example: Find possible subsets where each contains 3 elements. A B …
2
votes
4 answers

How many combinations for a 5 digit code using 3 numbers.

Can anyone please help here? I have inherited a strange looking safe with only numbers 1 2 and 3. The code to open it is 5 digits and the code uses all three numbers at least once. Is there some formula I can apply to list all the…
2
votes
1 answer

Sets of 3 integers adding to 180

If we constrain angles to whole numbers, how many triangles can we make? This is also equivalent to: how many sets of 3 integers add to 180?
2
votes
0 answers

How to solve Frog-stair problem with combinatorics instead of recursion?

The problem about a frog climbing a stair of size N, in steps of size 1 or 2, can be formulated as Fibonacci; and if it can jump in steps of size $1,2,...k$ there must be $k$ recursive calls. I want to know if its possible to solve this problem…
bermick
  • 21
2
votes
1 answer

Combinations within different elements

Good evening, I've been doing some research for school and already tried some ways for this to work. I've also searched this in my math books. Here is the problem. Let's say I have a number N of bottles, a number K of containers. Each container can…
2
votes
4 answers

Combinations Problem: Choosing 5 card hand with 4 different suits

I'm a little confused about how to solve the following problem. Could someone possibly give me an intuitive way to think about it. Thank you very much! Problem: How many ways are there to choose a 5 card hand such that there are 4 cards with 4…
bugsyb
  • 177
  • 7
2
votes
1 answer

Combinations problem divide in groups

18 persons are going to be divided into groups of 3. There are 4 persons that can not be in the same group. How many ways can it be done? My attempts so far: Total number of combinations (if each person can be with any other person) = $$…
tim_yng
  • 159
2
votes
0 answers

Simplest Way to Detail all N Choose R Combinations on Paper

I'm familiar with the formula to figure out how many non-repeating combinations there are in an n choose r situation, but I was wondering what would be the simplest pattern to go about writing all of those combinations on paper methodically, without…
Cmaso
  • 171
2
votes
0 answers

how to solve questions about bridge hands?

1.how many bridge hands contain 3 aces and exactly one two-card suit? 2.how many bridge hands contain 3 aces and exactly one two-of-a-kind? For the first question,I guess the answer is :C(4,3)C(12,2)C(4,2)C(35,8) Since the denomination is fixed ,I…
2
votes
2 answers

How many diagonals does a regular $n$-sided polygon have?

I guess the answer is: $C(n,n-3)/2$ since for $n$-sided polygon,there are $n$ vertices, and for each vertex, it cannot form diagonal with the adjacent points and itself. So, each vertex can form $n-3$ points. And half of the vertices have repeated…
2
votes
1 answer

$10$ parallel lines are all perpendicular to 10 other parallel lines. How many rectangles are formed?

I guess the answer is $ 100 \choose 4$ since there are $100$ lines in total and $4$ lines form a rectangle. Is that correct?
2
votes
3 answers

combination questions about dividing basketball players

Ten basketball players want to divide themselves into $2$ teams of $5$ players each,in such a way that the $2$ best players are on the opposite teams. In how many ways can this be done? I have two potential answers in mind. One is…
2
votes
1 answer

Combinations question.

Hi, I have a question to ask regarding subquestion 3. in the picture. I solved it by using ${10 \choose 2}$ since $2$ of the $4$ houses are fixed already, which I thought would leave me with $10$ choices. However, the answer is $126$, which…
Lim LS
  • 141