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

How to work out how many combinations in a $16\times 16$ grid with $256$ values in each?

I have a $16\times16$ grid. $256$ squares. In each square there can be a value from $1$-$256$. How do I work out how many total combinations the complete grid could have? I would like the know the formula so I can work it out for different grid…
0
votes
3 answers

Calculate password combination with password policy

Assume user must choose 8 character password using: lowercase letters a-z (size=26) uppercase letters A-Z (size=26) digits 0-9 (size=10) special characters/symbols (size=33) policy 1) user can choose password freely my answer: $95^8$…
Leonardo
  • 557
0
votes
1 answer

How many different ways are there to choose 6 donuts from the 21 varieties at a donut shop?

Can you help me to find out the solution of this problem and explain the answer?
0
votes
2 answers

Need help in pizza counting total number of possibilities problem.

Homer’s Pizza is advertising the following deal: • 2 pizzas • up to 3 toppings on each pizza • 7 toppings to choose from Double or triple toppings are allowed. Two of same pizzas allowed. Arrangement of toppings does not matter. What is the total…
Naruto
  • 31
0
votes
1 answer

In a jar there are 19 red jelly beans and 10 green jelly beans. In how many ways can you pick 4 red jelly beans and 4 green jelly beans?

In a jar there are 19 red jelly beans and 10 green jelly beans. In how many ways can you pick 4 red jelly beans and 4 green jelly beans?
Ryan
  • 3
0
votes
1 answer

In how many ways can a committee be formed such that we have at least $5$ from each gender?

female $= 30$ male $= 40$ committee requirement$ = 11$ In how many ways can a committee be formed such that we have at least $5$ from each gender? my approach: 1. $30C5 \cdot 40C5 \cdot 60C1$ 2.(second approach) $[30C5 \cdot 40C6] + [30C6 \cdot…
0
votes
1 answer

How can I calculate the combinations of items across multiple arrays?

If I have multiple arrays of items, how can I calculate the combination of collections that are possible? Ex: a = [Red, Green, Blue] b = [Small, Medium, Large, X-Large] c = [Round, Square] I'd like to know how many ways these groupings can be…
Nathan
  • 103
0
votes
0 answers

All combination between 0.01 to 100$ in 4 notes

I found this interesting problem: http://mathfactor.uark.edu/2012/07/yoak-denominations-of-money/#comments Devise an alternate set of denominations for coins and bank notes requiring a minimum number of denominations and such that any amount …
Siscia
  • 177
0
votes
1 answer

Combinations With Numbers as Phone Numbers

How many phone numbers are possible if you already have the area code (xxx-xxxx) if no zero is allowed in the first position?
0
votes
1 answer

Permutation and Combination (high school level)

In how many ways can 4 Physics books and 3 Mathematics books be arranged on a shelf if a selection is made from 6 different Physics books and 5 different Mathematics books? In how many of these arrangements are the Physics books together. The answer…
DRV5
  • 1
0
votes
1 answer

Quantifying Onside Kick Variations

I work with a high school football team. We have six (6) different methods/ways we can execute an onside kick (end-over-end, pop-up, jelly roll, copter, squib and drop-kick), five (5) directions we can kick it (far right, right, middle, left and…
0
votes
1 answer

number of combinations of girl/boy for a family with 3 kids

I think the valid combinations are, B/B/B, G/G/G, B/G/G and G/B/B. Total valid number of combinations are $4$. My question is whether I should be using [combination theory with repetition]…
Lin Ma
  • 183
0
votes
1 answer

Combinations of up to $n$ out of $m$ elements

Given a set of $m$ unique elements to choose from, and using at most $n$ elements in a combination, how many combinations can I have? A combination can repeat an element more than once, as long as the number of items does not exceed $n$ elements.…
0
votes
1 answer

How many combinations are possible with $1$ item from $6$ different groups?

I am trying to figure out how to get the total number of combinations of $1$ item from $6$ different groups with a different number of variables for each group. Group $1$: $60$ variables (Apples, Oranges, Pears...) Group $2$: $2$ variables (Yes,…
Scott
  • 1
0
votes
1 answer

Combinations choosing equal groups results in division by 2

Question: 10 people, split into team of 6, team of 4=(10C4)=(10C6). And into teams of 5,5= (10C5)/2 I don't understand why one divides by 2 in the second case. Say I choose am team of 6 by (10C6), whatever left is a team of 4. Why is the same not…