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

Combinatorial formula in Binomial sum proof

To show that the sum of independent binomial r.v $X$ and $Y$ with common probability $p$ is also a binomial random variable I need to show $$\sum_{k=0}^z {n \choose k}{m \choose z-k}={m+n \choose z}$$ I've tried writing this out in factorials but I…
Xiaomi
  • 1,810
0
votes
2 answers

How many combinations can be made if you have 6 items, and each of these item can have a value of 1-100?

So i have 6 different flavours. I intend to mix these flavours together where the total amount would be 100 % when all the 6 different flavours has been counted. This means for example that one combination can look like this flavour 1 can have 20 %…
0
votes
1 answer

In how many ways can 52 cards be divided equally among four players(1,2,3,4) in order.

In how many ways can 52 cards be divided equally among four players(1,2,3,4) in order. I interpreted this question as Let there be 52 different cards(1.e each numbered with unique number from 1 to 52,like c1,c2,c3,c4....,c52). In how many ways can…
jame samajoe
  • 411
  • 3
  • 15
0
votes
3 answers

How many ways can they dress so that are not both dressed exactly the same?

If two man have the same $ 3 \ $ pairs of shoes, the same $3 \ $ pairs of pants, the same $ 3 \ $ shirts, and the same $ \ 3$ sweaters. How many ways can they dress so that are not both dressed exactly the same? Answer: Suppose one man choose…
user484305
0
votes
0 answers

Sum of combination

I need to know if we can derive any formula to calculate this $$\sum_{i=k}^n\binom{n}{i}$$ I don't know if this question has been asked or not (or I didn't search for the correct keyword). While going through the internet, I found that for $i=0$,…
0
votes
0 answers

What is the equation to determine how many combinations can be found when there are two sets with three letters and each can have one of two colors.

I have two sets (set A, set B) of three letters (X, Y, D). Each letter can have one of two colors (red or blue). How many different combinations are possible. I would like the equation to determine how many. You could view the problem as follows: -…
0
votes
0 answers

New Twist - sum of numbers printed on billiard balls in a bag

Given that all the balls in a bag have one number (either 0, 1, 2, 3, or 4) printed on them, and given that there are 30 balls in the bag, how many possible combinations of balls can be taken from the bag where the sum of the numbers printed on the…
0
votes
0 answers

Combinations - when there are more spaces than objects

I came across a question that asked: Two punts can each hold 6 people. A party of 10 wishes to use these punts. In how many different ways can the party be divided? Assume that each member of the party is distinct. Please could I check how to go…
Ari
  • 1
0
votes
3 answers

Stuck on a Combination Problem

We are trying to solve this combination problem: In a box of 12 different colored crayons, one of them is black. In how many different ways can the teacher give these crayons to a student so that the student receives at least one black crayon? …
RC Wong
  • 57
0
votes
2 answers

Confusion in understand combinations flipping a coin

I'm having a hard time visualizing this question: Assume you flip $3$ coins. What is the probability that you get exactly one head. $P(\text{head}) = \frac{1}{2}$. $P(\text{Total outcomes}) = 2^3$ I was told in combinations order doesn't matter. The…
hello
  • 17
0
votes
1 answer

All possible values of N (3-digit numbers) possible formed by non-zero digits

3 different non-zero digits are chosen to make 6 different 3-digit numbers, with no digits repeated in any number. Some of the 3-digit numbers, N say, is the average of the other five. Find all possible values of N.
0
votes
0 answers

Combinatorics: derive forumula of derangement

There are n people, which all write their name on 1 piece of paper, eventually leading to n papers with n different names. What is the amount of ways that nobody pulls his own name out of the pile of tickets? Well, I understand the recurrence…
Salim
  • 41
0
votes
0 answers

Combinations With Limits

N containers and M balls, each container has it's own capacity let's say (c1, c2, c3, ....cN), we well distribute the balls between containers where the whole capacity of containers is bigger than the number of balls, in how many ways we can do…
phonex
  • 21
0
votes
2 answers

How many combinations contain at least two As

I have 10 people with the letter 'A' written on the front of them and 5 people with the letter 'B' written on the front of them. I select a group of 4 out of the total 15 people. How many different groups can I make with the 15 people? How many…
0
votes
0 answers

Formula for combinations not adding up

So I have a basic assignment that ask that if in bit-string that consists of 8 bits in how many ways can we arrange the ones and zeros in order for the string to have at least 2 ones example: 11000000 10010000 10110000 11100011 etc. I try to solve…