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

Counting k-permutations from different but shared lists

Apologies, it has been a terrible while since I've last had to use probabilities, and I can not find the proper terminology for my question I'll be using the marble bag analogy since it's the easiest for me. I want to maximize the probability of "A"…
Trad
  • 1
0
votes
1 answer

Take 9 distinct objects and 5 identical boxes. Exactly one object must be placed into each box. In how many ways can this be done?

Take 9 distinct objects and 5 identical boxes. Exactly one object must be placed into each box. In how many ways can this be done? According to a similar question, I list 4 cases. Case 1. $\quad(5,1,1,1,1):$ $\quad^9C_5 = 126$ Case 2.…
0
votes
1 answer

Combinations of selecting $N$ numbers from $M$ different numbers $(N > M)$

Problem Statement: Given $M$ different numbers, I want to get $N$-sized ($N>M$) combinations by choosing from these numbers. How many different combinations are there for this problem? Example: Given numbers $1$ and $2$ ($M = 2$) and $N = 3$, the…
Annie Kim
  • 103
0
votes
1 answer

Combination of elements in circle

Imagine we have few elements and they make some kind of circle with 1 way connections such as: 1→2→3→1 circle with 3 elements 1→2→3→4→1 circle with 4 elements We want to choose every member by choosing elements. For example: circle with 4 elements…
0
votes
0 answers

Use only the numbers 0 - 2, how many 4 digits are there?

Using 4 digits to include zero, what are all the possible combinations of numbers 0, 1, and 2. Including all the possibilities starting with zero. like 0001, 0002, 0003, etc
ray
  • 11
0
votes
0 answers

inequality with combination

In an elementary number theory book I'm reading, there is a comparison of, for r $\ge$ 6 $\binom{3 \cdot 2^{2r}}{3 \cdot 2^{2r-1}}$ and $\binom{2^{2r}}{2^{2r-1}}\binom{2^{2r-1}}{2^{2r-2}}...\binom{2}{1} […
Nekt
  • 11
0
votes
2 answers

A committee comprising 4 teachers and 2 academics is to be formed from a list of 35 teachers and 10 academics

how many ways can the committee be formed if Mr. Rudd (teacher) will not serve unless prof. Thudd (academic) is also selected. I tried this multiple ways, firstly I added the ways of getting no Mr. Thudd and no prof. Rudd with the ways of getting…
Paul
  • 9
0
votes
1 answer

from a class of 20 students, what is the mathematical expression for the number of ways of selecting at least 2 students

I thought that the simplest expression without using a calculator would be $20C2 +20C3+ 20C4 ... 20C20$. I then attempted to simplify to $21C3 + 21C5 + 21C7 + 21C9 + 21C11 + 21C13 + 21C15 + 21C17 + 21C19 + 20C20$ but I cannot seem to simply any…
Paul
  • 9
0
votes
0 answers

Calculate all combinations and "different enough"

I am doing a bit of research on randomized avatar creation and I want to calculate all the possible combinations, knowing that are available 2 base models (male, female) 8 background 43 clothes 6 earring 23 eyes 19 fur 36 hat 33 mouth Also I would…
Kahel
  • 187
0
votes
0 answers

All possible unique combinations from 4 uneven sets

There are 4 sets of numbers set 1: (1,2,3,4,5,6.....19) = 19 numbers set 2: (10,11,12,13,14,15......29) = 20 numbers set 3: (10,11,12,13,14,15......39) = 30 numbers set 4: (20,21,22,23,24,25......39) = 20 numbers How to calculate the total possible…
Jack
  • 101
0
votes
1 answer

What is the set of combinations of 3 items that gets me all 7 traits?

I’m not sure how to ask this question or really what the correct terminology is. I have 7 traits, {a, b, c, d, e, f, g}, and I have 12 items. Each of these items has a specific combination of these traits. I need to know which combinations of 3…
Josh
  • 3
0
votes
1 answer

combinations of sets and objects

How do I calculate how many combinations I can create with a set amount of categories and within each category, there are different amounts of objects. For example, if I have 5 categories (1,2,3,4,5) and within each category, there are different…
0
votes
1 answer

Question on combinations . Application of it on Pascal's Triangle to prove an inductive property.

Prove that each number A in pascal's triangle is equal to the sum of the numbers in the previous right diagonal starting from its leftmost number through the number which is located in the same left diagonal as A.
0
votes
0 answers

Possible combinations of true and false for three variables.

I’m constructing a truth table for statements “A”, “B”, “C”, and the composite statement “A AND B AND C”. I’m pretty sure I constructed the table correctly, but I have a question about calculating all the possible combinations of “true” and “false”…
0
votes
0 answers

Finding the number of items in a group based on the number of combinations

I don’t really have much math knowledge beyond my high school calculus class that I took like 15 years ago. Can someone help me to find how to solve a problem like this? I have 5 groups of items. There is an unknown number of items in each group. I…