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

How to find the number of combinations given certain parameters?

I need to find out the number of possible combinations for the following, and would like to understand the working behind it as well. I have a product that consists of 3 separate parts, head, arms and legs. The product must always have the 3 parts…
Mr Pablo
  • 103
0
votes
3 answers

How many different ways can i select three elements from a set of elements where there are groups

Suppose I have to select three distinct letters, one from each of these groups Group 1 : a or e Group 2 : b or f Group 3 : c Group 4 : d The three distinct letters cannot have both 'a' and 'e' or 'b' and 'f'. In how many different ways can I select…
0
votes
1 answer

probabilities and counterfeit nmoney

I have the following question: John has ten single dollar bills of which 3 are counterfeit. If he selects 4 of them at random, what is the probability of getting 2 good bills and 2 counterfeit bills? At first I did 7/10 * 6/9 * 3/8 * 2/7 which…
mike
  • 1
0
votes
1 answer

Find no of Set of Unique Combination

I need a formula for following problem. We have 3 objects A B and C. We can create a set of two distinct object (eg. AB AC BA order doesn't matter). Now we have 5 A objects, 3 B objects, 2 C objects. Then how many set can we have? Ans: 5 Sets One…
0
votes
1 answer

Combination: 777 shirts and 3 shoes, how many outfits can she plan for the next 15 days?

Mary has a closet of 777 types of shirts and 3 types of shoes. Mary never wears exactly the same thing on two consecutive days (therefore, each time, either the shoe or the shirt (or both) is different from what she wore yesterday). In how many ways…
George
  • 29
0
votes
1 answer

Find value of $n$ from difference of binomial coefficients

Given that $^nC_3 -$$^nC_2 = 14$, find $n$. There's a method using the Pascal's Triangle, where the $k^{th}$ entry in the $n^{th}$ row is equal to $^nC_k$. Is there another way to solve this?
0
votes
2 answers

How many combinations are there of a list of $2000$ items, used $3$ times?

Suppose I have a list of $2000$ words and I want to combine them, randomly choosing a word from this list each time e.g. Apple-Orange-Boat or Apple-Apple-Apple How many possible combinations are there? Is it simply $2000^3$?
ycomp
  • 103
0
votes
0 answers

Total possible combinations of 5 different sets

How would I find the total number of combinations for any given group sets? For instance: I have 5 fields, Field A, B, C, D, and E. A, D, and E need to be filled with 1 number. B and C need to be filled with 3 non repetitive numbers. Field A and E…
0
votes
1 answer

Breaking a code

I've got a digital lock, that I can not unlock. The combination numbers are $2, 6, 8$, and one of them repeat in a $4$ digits sequence. Where can I get a list of all the possible combinations, or any kind of help?
0
votes
4 answers

Possible combinations...

A friend has just shown me a question from his child's homework over which he's stumped (both child and father). Unfortunately I was unable to help as it stumped me, too. The question is... There are... 4 starters 8 main meals 3 deserts How many…
Karl
  • 9
0
votes
0 answers

Number of possibilities

If I have a limitless quantity of shirts that come in x colors. I need to pack y shirts per pack being shipped. No more than 2 of one color can be shipped per pack. How do I determine the number of unique combinations if order doesn't matter?
Brian
  • 1
0
votes
4 answers

Combinations proving problem

Help me prove $$\binom{n}{r} + \binom{n}{r-1} = \binom{n+1}{r}.$$
Ishaque
  • 133
0
votes
1 answer

Combinations for dealing a whole deck of d cards in h hands

I would like to calculate the number of combinations for a specific setup to happen in a card game where the whole deck is dealt. So you have a deck of d cards, you deal the deck in h hands (i.e. to h players). The order of cards in each hand does…
Zonko
  • 101
0
votes
1 answer

All Possible Pairs of 18

I will be having 18 Students in my class this year. I'd like to have them learn in pairs rotating every day with a different student in the class. What are all the possible pairings. for example on Day 1: Student 1 learns with 2/ 3 with 4/5 with 6…
Bruce
  • 1
0
votes
1 answer

Formula for finding the number of lists that can be created by selecting elements of other lists

I have List1 = {A,B} List2 = {C,D} List3 = {E,F} List4 = {G,H} A program will print a final list composed by only one letter from each list. So one of the combination can be {A,C,E,G}. How many combination are possible? What is the formula to…