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

Can this be simplified further?

Can this be simplified to isolate the variable by itself? $$\begin{align} \dfrac{\displaystyle{83 - x}\choose{\displaystyle x}}{\displaystyle{82}\choose{\displaystyle x}} \geq 0.50 \end{align}$$ This is where I am. $$\begin{align} \dfrac{(83 -…
Paul
  • 31
3
votes
1 answer

How many distinct unlabeled binary trees with i leaves?

I've been reading a paper that claims: The number of distinct unlabeled binary trees with i leaves is: $$ \frac{1}{2i-1}{2i-1 \choose i} $$ I cannot figure out the reason why . Can someone help me explain that ? Thanks!
3
votes
2 answers

choosing non adjacent vertices

The following graph consists of 50 vertices, with 25 vertices in each circle, and each vertex having a degree of 3. How many ways can we select 23 vertices from this graph such that they are not adjacent? Do you have any suggestions or ideas on how…
Ariana
  • 375
3
votes
2 answers

How many different number combinations are there between 1000 and 2999 inclusive?

This is a question I made that I would like to solve. Here are some points: I am referring to combinations, not permutations. Therefore, whilst there are 2000 permutations of numbers between 1000 and 2999 inclusive, there should be less…
shay
  • 33
3
votes
1 answer

How many unique combinations of different colored Legos in a bucket?

Here is the question: There is an endless supply of red, orange, yellow, green, blue, and violet Legos. The Legos are packaged into buckets of 100 Legos each. One possible color distribution, for example, is a bucket of 50 red, 10 yellow, 10 green,…
3
votes
2 answers

Calculate all possible combinations of 1, 2 & 3 which equal 67

My son (a third grader) was given this problem to solve. Is states that: In a basketball game, one of the teams scored 67 points. If baskets can be worth 1 point for a free throw, 2 points for a field shot or 3 points for a 3 pointer, how did the…
3
votes
5 answers

Number of ways of selecting k objects, no two consecutive

Prove the number of ways of selecting k objects, no two consecutive, from n objects arrayed in a row is $\binom{n-k+1}{k}$ The proof is as follows: We know that every time we select our $k$ objects, we will also have to choose $k - 1$ objects,…
user771003
3
votes
0 answers

Assume that $A_{n} = (1,1,2,2,...,n,n)$, how to reorder these $2n$ numbers such that there are $k$ numbers between two $k$s

For example, $n = 3$, $(2,3,1,2,1,3)$ or $(3,1,2,1,3,2)$ $n = 4$, $(4,1,3,1,2,4,3,2)$ or $(2,3,4,2,1,3,1,4)$ This problem does have a name, but I did not find it. Thanks for @Martin R, It is called Langford pairing problem. Assume that $L_{n}$ is…
Blanco
  • 656
3
votes
3 answers

How many $4$-digit numbers with non-repeating digits can be written by choosing $2$ digits from $A=\{1,2,3,4\}$ and $B=\{3,5,6,7\}$

For $A = \{1, 2, 3, 4\}$ and $B = \{3, 5, 6, 7\}$ How many different $4$-digit numbers with non-repeating digits can be written by choosing $2$ digits from $A$ and $2$ digits from $B$? So I've tried solving this problem by doing: $${4 \choose 2}{3…
dhrime
  • 33
3
votes
2 answers

Combinations (similarity of questions)

I just did a question: Five balls of different colours are to be placed in three boxes of different sizes. Each box can hold all five. in how many different ways can we place the balls so that no box remains empty? I figured that for no box to be…
3
votes
2 answers

Need to understand problems with approach on an "at least" combinations problem

$11$ students are to be chosen from $2$ classes of $20$ students each. At least $5$ need to be chosen from each. Would you please tell me what is wrong with this approach? First we select $5$ students from each class. The number of ways of doing so…
3
votes
5 answers

what happens when in a combination, $n \choose k$, $n < k$? Is this 0?

What happens when in a combination, $n \choose k$, $n < k$? Does this result in a zero, or is this undefined?
RVC
  • 397
  • 2
  • 12
3
votes
1 answer

Number of points of intersection of lines in a circle.

Let there be nine fixed points on a circumference of a circle. Each of these points is joined to every one of the remaining eight points by drawing a line and the points are so positioned on the circumference of the circle that atmost $2$ straight…
Aditi
  • 1,349
3
votes
2 answers

Finding the ways to arrange 6 out of 10 people. 2 of them must be together

I have a group of 10 people and I need to select 6 of them to pose for a photograph. Two of the 10 people are named Ken and Karen. How many ways can I arrange 6 people out of the group of 10 for the photograph if a) Ken and Karen must be in the…
XxS0ul678
  • 105
3
votes
1 answer

How to apply weighted filter to combination?

I need to find ordering of combination, Combination examples are as follows: User A Selects in this order: Eye-Brown, 2. Pet-Dog, 3. Diet-Carnivore, 4. Body Type-Thin, 5. Hair length-Short Total numbers may be dynamic, e.g. there may be more…
1 2
3
48 49