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

Combination math question: at least one box has only one ball, what is the number of this case?

there are M same balls and K different boxes. the boxes are labeled from 1,2,...,K. each box could have any number of balls, or be empty. the question is: at least one box has only one ball, what is the number of this case?
2
votes
1 answer

Another math question

Find the number of integer solutions to the following inequality: z + w + s + t \leq 30$ so that $0 \leq z \leq 2$ $4 \leq w \leq 5$ $1 \leq s \leq 5$ and $2 \leq t \leq 6$ Any help is most appreciated!
2
votes
1 answer

Elementary Combination Question

An ice cream sundae at an ice cream shop consists of 3 different types of ice cream and 2 different types of topping. If there are 12 different types of ice cream and 8 different toppings to choose from, how many different sundae's can a customer…
User69127
  • 1,168
2
votes
1 answer

Combinations math. What's the direct approach here?

If a jury of 12 people is to be selected randomly from a pool of 15 potential jurors, and the jury pool consists of 2/3 men and 1/3 women, what is the probability that the jury will comprise at least 2/3 men? So there are 10 men and 5 women…
Jwan622
  • 5,704
2
votes
1 answer

Combination problem. 2 methods

I'm trying to figure out two methods in doing these sorts of combination problems that show up on the GMAT. Mind helping me out in understanding both methods? 9 basketball players are trying out to be on a newly formed basketball team. Of these…
Jwan622
  • 5,704
2
votes
2 answers

Number of ways a sub committee can be formed

Twelve doctors are to be selected by hospital staff to sit on a six-person committee. Within that committee, an additional subcommittee of three doctors will be formed. How many unique sub-committees are possible?...... Please let me know
atir
  • 43
2
votes
1 answer

Combinations question confusing

There are 8 men and 7 women from which a group of 4 with at least 2 men must be selected. Find how many possible groups there are. There are 2 ways which both make sense to me but only one method is right. Correct method: (No. of groups with 2 men,…
2
votes
1 answer

How to calculate a Bell number (Bell[n] mod 95041567) quickly enough?

How to calculate a Bell number (Bell[n] mod 95041567) quickly enough? Here n maybe very big as 2^31. Bell number is http://oeis.org/A000110
smartc
  • 21
2
votes
1 answer

Possible Combinations in a Yahtzee Straight?

Happy Sunday, I was wondering how to calculate how many combinations could be rolled in the game of Yahtzee in getting a large straight. A large straight is when you roll and the dice com out 1,2,3,4,5 or 2,3,4,5,6. Can any one give me some…
Thomas
  • 21
2
votes
1 answer

Failure combination in a plant

In a plant there are 3 units and each unit has 2 identical pumps making it to be 6 pumps in total. How to calculate the number of combinations where both pumps failed on any of the units AND an additional 1 pump on any of the other units (I.e. 3…
2
votes
2 answers

Finding how many ways can pack of 36 can split into equal part

In how many ways can a pack of $36$ cards be split in two equal parts so that each portion contains two aces (assume $4$ aces ) My Try : We have $36$ cards and $4$ aces and we have split into $2$ equal part so i used $32C2$ , which is wrong answer…
SSK
  • 673
2
votes
1 answer

Ways can one go from (−2,−2) to (2,2) without crossing (0,0), if in one step one can move either one co-ordinate horizontally or vertically?

In how many ways can one go from (−2,−2) to (2,2) without crossing (0,0), if in one step one can move either one co-ordinate horizontally or vertically ? (One only moves up and to the right and cannot come back.) Here is my attempt: The total number…
2
votes
1 answer

Prove that there exists a triangle with 3 vertices of the above 16 points whose area does not exceed $10cm^2$

Take 13 points inside the triangle, the area is $\text{210 cm}$$^2$, so that along with the 3 vertices of the triangle we have 16 points with no 3 points collinear. Prove that there exists a triangle with 3 vertices of the above 16 points whose area…
2
votes
1 answer

Serving Slices of Pizza

Can someone please double check my work? Thanks! There are 15 slices of pizza: 5 cheese, 5 cheese with pepperoni, and 5 no cheese. Suppose the pizzas are served in a certain order from 1 to 15. (1) What is the probability that all cheese with…
2
votes
1 answer

How many ways to win a best of $n$ match?

My approach to this is by counting the number of arrangements of needed wins in a sequence of games. If it's a best of 7 match, an example of an arrangement where a player won is WLWWLWL. So by arranging the 4 W's and 3 L's, I can get the number of…