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

Why doesn't my combinations logic work?

I encountered a math question yesterday. It read: There are 10 men and 6 women in a group. Out of that group, a committee of five should be chosen. The committee must contain at least 3 men. Find all the possible combinations for this…
Andy
  • 167
1
vote
1 answer

Counting "Unique" combinations ( subsets ) of a set of numbers

Is there a formula for a possible number of permutations of a set of numbers that returns all unique outcomes for example: [1,2]=(1,2) (as (2,1)==(1,2)) [1,2,3]= (1,2),(1,3),(2,3) (as (3,1)==(1,3) etc) such that the order is not important so that…
R.Smith
  • 11
1
vote
1 answer

Combination where one element can repeat: How to calculate?

Let's say I have the letters A, B, C, D. I want to know the number of combinations in the space _, _, _, or 3, where repetitions are allowed. For this, I can apply the formula C=$n ^ x$. In the example would be C=$4 ^ 3$=64. My question is: How do I…
1
vote
1 answer

Combinations and selections to form a committee of various nationality of size 6 and size 3

There are, . 7 Icelanders; . 8 Americans; . 6 Japanese; and we have that, The Icelanders are all men; Among the Americans there are 4 women; Among the Japanese there are 4 women; compute the following: a) in how many different ways…
JB-Franco
  • 852
1
vote
2 answers

How many distinguishable arrangements can be made using all of the letters "BROWNWOOD"

I know I have to use the combination formula since the professor wrote it like this: There are $3-O's$ and $2-W's$ then $\frac{9!}{(3!)(2!)}= 30240$ My question is the reason they have $(3!)(2!)$ as the denominator is because they are just repeated…
Killercamin
  • 801
  • 4
  • 17
  • 39
1
vote
2 answers

how many different ways can we arrange the number and width of the steps?

A staircase is to be constructed between M and N: . The distance from M to L is 5 meters and the distance from L to N is 2 meters. If the height of a step is 25 centimeters and its width can be any integer multiple of 50 centimeters, how many…
1
vote
2 answers

Combinatorics Problem without Repetition

I have these math problem: Facts: 4 numbers consisting of numbers 0 to 9 The first number ist not zero A number may not occur more than once (No repetition) How many numbers can I generate? My Ideas: I have 8 possibilities for the first number.I…
Hani12
  • 13
  • 2
1
vote
1 answer

Does $|A \cap B|+|C| = |A \cap C|+|B \cap C|$ conclude $A \cap B \subseteq C \subseteq A\cup B$?

Suppose $A,B,C$ are finite subsets of a universal set $\mathcal{M}$ Could someone infer from $|A \cap B|+|C| = |A \cap C|+|B \cap C|$ that $A \cap B \subseteq C \subseteq A\cup B$ ?
MR_BD
  • 5,942
1
vote
1 answer

Figuring Out Number Of Combinations

I'm attempting to figure out the number of combinations if you have 95 possibilities and 63 slots to fill where the choices CAN repeat and order does matter and cause a new combination. Ex. A B C - The choices Pick 1-3: A B C AA, AB, AC BA, BB.…
Invidus
  • 11
  • 1
1
vote
1 answer

Guessing order of Combinations with responses

Trying to solve an interactive problem where you can guess the order of two sets of combinations. Each time you guess the interactive problem gives you two responses, the number items of the first set you've got right, and the second is the number…
1
vote
2 answers

Combinations n sided polygon

Three vertices of a convex n sided polygon are selected. If the number of triangles that can be constructed such that none of the sides of the triangle is also the side of the polygon is 30 then 'n' is
1
vote
1 answer

General way to calculate the amount of different d6 results?

I need a way to control that my program finds the right amount of different results you can get on nd6. Let's say that i have 2d6, then the total amount of results would be $6^2 = 36$. But the different amount of results would be 21, i know this…
1
vote
1 answer

How to select at least one mango and one orange?

A bag contains $4$ mangoes and $5$ oranges. In how many ways can I make a selection so as to take at least one mango and one orange? In my book it is given $(2^4-1)(2^5-1)$ I understood $1$ is subtracted because if no mango is chosen. But why is it…
1
vote
4 answers

Intuition behind C(n,r)=C(n,n-r)

I do understand the proof of C(n,r)=C(n,n-r) but cannot catch the intuition behind this.Intuitively why would the number of ways to select r objects from a set of n objects be equal to the number of ways to select (n-r) objects from a set of n…
MrAP
  • 3,003
1
vote
2 answers

How many solutions are there to the inequality $x_1 + x_2 + x_3 \le 11$ where $x_1,x_2,x_3$ are nonnegative integers?

Hint: introduce a variable $x_4$ such that $x_1 + x_2 + x_3 + x_4 = 11$. Solution: $x_4$ is nonnegative, same as count the number of nonnegative solutions to the equality. It is $\binom{4+11-1}{11} = \binom{14}{3} = 364$ Why did we introduce an…