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
1
vote
0 answers

Ways of choosing at least one male singer and one female singer as judges from the pool?

There are 3 Female Players, 2 Male Players, 6 Female Singers, 5 Male Singers, 2 Female Actors and 4 Male Actors. For a Celebrity show you have to create a judge panel of 4 members (1 Head Judge & 3 Supporting Judges). Head judge should be a…
emil
  • 1,310
1
vote
0 answers

Find the number of ways of sitting arrangement according to the given conditions

I was trying to find the solution of the question in which I have to find the ways where no girls should sit together that can be done easily in 6p5*5p5 . but I wanted to do this by elimination method i.e. No girls together = All arrangement -…
1
vote
1 answer

Combinations including "at most"

My wife and I cannot figure out how to do a probability question including an "at most" clause. We are given 18 items, 10 of a and 8 of b. If we pick three at random, we need to know how many possibilities of three have at most 2 of b. We tried…
1
vote
3 answers

How can I solve this Combination with indistinguishable-objects problem?

This question is not about how to solve the problem, but is about why doesn't my solution work. A bowl has $2$ red, $2$ green, and $2$ blue marbles. How many combinations are possible if we take $3$ random marbles at a time? I know that the answer…
user366312
  • 1,641
1
vote
2 answers

A computer programming team has 15 members.

(a) How many ways can a group of eight be chosen to work on a project? What I got: C(15,8) (b) Suppose nine team members are women and six are men. - i. How many groups of eight can be chosen that contain four women and four men? What I got:…
jonerr
  • 13
1
vote
2 answers

Making a committee

On a quiz, I asked the following question. A group of 15 students contains seven boys and eight girls. In how many ways can a committee of 5 be selected if it must contain at least one girl? I know the answer is $\binom{15}{5}-\binom{7}{5}=2982$…
Tim Thayer
  • 1,333
1
vote
1 answer

Basic answer on how many potential combination can i have?

I have 17 stops along a path. The user can start any where on the map. Stop 1, Stop 2, Stop 3... so forth in any order. SO the driver can go to Stop 10, then STop 2, stop4, stop 3...through stop 17 in any order, but just know that there are only 17.…
Vzupo
  • 113
  • 3
1
vote
1 answer

How Many Combinations Are Possible (using 5 letters, groups of 12)?

I'm hoping you can help me with how many combinations are possible, given the following... I have 5 letters (A, B, C, D, E). I need to create groups of 12 letters, obviously I can use the letters multiple times. However, there are limitations on…
Mark
  • 11
  • 3
1
vote
0 answers

Selection of identical elements

Let's say there are 5 identical elements, how many ways of selection can I have if I would like to select (i) 1 element from that? (ii) 2 elements from that? My understanding is that since all the elements are identical, so no matter how many…
Nck927
  • 31
  • 6
1
vote
1 answer

Amount of ways I can pick cards in a deck.

Question: Using all of the face cards in a standard deck of playing cards, in how many ways can I make three piles of five cards. Thanks :) Been trying for a while now and I can't do it..
1
vote
0 answers

Is there a formula for adding sum of N digits in R permutations?

Problem Statement: Given N digits (limited to 1-9, and not duplicated) calculate the total sum of R permutation of N digits. I've worked out the problem to the following solution: sum of digits * how many digits -1 * multiplier Solution sample if…
thefern
  • 111
  • 2
1
vote
1 answer

In how many ways can $5$ red and $4$ white balls be chosen from a bag containing $10$ red and $8$ white balls?

The correct answer is $\binom{10}{5}\binom{8}{4}$. However from the data given in the question , aren’t the balls identical? So the number of ways should actually be only $1$ right ?
Aditi
  • 1,349
1
vote
1 answer

There are zero objects and we have to choose zero objects! How many ways can we choose?

Is it one way!! For 0C0?? In my book there is written-- each group or selection which can be made by taking some or all of a number of things is called combination! But here things are zero. Is it a way to be considered to choose nothing from…
1
vote
0 answers

How to find the natural solutions of the equation?

I have this problem: "Find all possible combinations, to form $12000 With $10000 $5000 and $1000" I read a posibble solutions is: Find all natural solutions to: 10a + 5b + c = 12 Further, already solved this, only testing the combinatios. But…
ESCM
  • 3,161
1
vote
2 answers

Find circular arrangements

Find the possible ways to arrange 3 persons in 5 places in a circle in each of the following: If it is not necessary to the persons to be neighboring If it necessary to be neighboring My answer: $_{n-1}P_{r-1} = {}_4P_2$ $nr! = 5\cdot3!$ But…