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

How can I generate these combinations?

For a practical course, I need to divide 24 individuals in groups of 3, over several times, in such a way that every individual is paired exactly 1 time with every other individual. How can I generate these combinations?
S G
  • 1
0
votes
1 answer

Combination where length can be anything up to a limit

I was attempting to determine how many different combinations of strings can be created from 37 characters, where the string can be up to, but no longer than 63 characters. I'm not a math person and was hoping to find a calculator online to get me…
trycrmr
  • 103
0
votes
1 answer

Number of sub-arrays with element included

Suppose we have an array of numbers {x1, x2, x3 ...... xn}. If we select an element Xi from this array, how many sub-arrays exist with this element included?
Omar S
  • 105
0
votes
1 answer

Equations relating combinations

Suppose that a, b, and c are integer numbers, and that there are a many unique combinations of length b, where each constituent of the combination has c permutations, and suppose that combinations which would be the same if not for being in a…
tom894
  • 247
0
votes
1 answer

If 9 choose 4 times 5 choose 3 equals 1,260, how do I arrive at that number?

I'm taking an online probability and statistics course through edX called Fat Chance: Probability from the Ground Up, but I've never taken anything other than high school math (the usual fodder — algebra, geometry) and a couple of college calculus…
Lisa Beck
  • 103
0
votes
1 answer

Combinations and permutations problem (Low)

I have an interesting question which goes as follows: The number of ways in which a host lady can invite for a party of 8 out of 12 people of whom two do not want to attend the party together is. $(a) 2 × C(11,7) + C(10,8)$ $(b) C(10,8) +…
0
votes
1 answer

tournament of 6 players in teams of 2, playing 3 matches in one day and 7 compettion matches (so 21 matches)

We are with 6 players and we play matches 2 against 2. We play 3 matches on 1 day and we have 7 days to play. So we have 21 matches and i want that everyone plays equal times (as much as possible) with everyone and against everyone. Attempt:…
luden
  • 1
0
votes
3 answers

Solving factorial equations

I am given that $${n \choose a}={n \choose b}$$ I need to show that $n=a+b$ or $a=b$. Now I am left with $a!(n-a)!=b!(n-b)!$. I don't know what to do next. I checked there on google to solve the above, it says:- "On comparing, we get the required…
0
votes
1 answer

9 golfers playing in threes over 6 rounds. What are combinations please

9 golfers playing in threes playing six rounds. Would like all golfers to play in as many combinations so that we all play with each other as equal as possible.also the combination for the group's to equally play in first tee time.second tee time…
0
votes
1 answer

Grouping problem: 32 items -> 8 groups -> min. 1 in each group : How many possibilities?

I'm trying to figure out how many possibilities are possible under these conditions: I got 32 items (marbles) and need to place them into 8 groups where there's at least 1 marble in each group. Also groups are labeled so the order matters:…
Myrtle
  • 3
0
votes
1 answer

Combination With Finite Replacements

We have a pool of N number of balls. There are: A number of white balls (W), B number of green balls (G), C number of blue balls (B), and D number of pink balls (P) In how many ways (combinations) we can pick X number of balls from this pool? Is…
0
votes
1 answer

How many characters are in the monk's alphabet?

I just read The Nine Billion Names of God by Arthur C. Clarke. In that story, the monks estimated (or confirmed) the number of 9,000,000,000(nine billion) for all the possible names of God with nine characters in max. That contains, I think, (using…
Jin Kwon
  • 105
0
votes
0 answers

Find the possible number of combinations

I'm struggling to calculate the number of possible combinations this board can have. I'm not sure which calculation to use for this specific problem. Let's say I have a grid, which is 7x5 in size, so in total there would be 35 blocks. Then I have 35…
0
votes
2 answers

Number of combinations formula

Show that: $\binom{n+1}{2} = \binom{n}{2} + n$ I think I am supposed to use the number of Combinations formula: $ \binom{n}{k} = \frac{n(n-1)(n-2)(n-k+1))}{k(k-1)(k-2)..1)} = \frac{n!}{k!(n-k)!}$ I tried to use the formula on the LHS and got…
0
votes
2 answers

How many positive integers solutions does $x + y + z + w = 16$ have if $x < y$

$x + y + z + w = 16$ is relatively easy, but I'm stuck in the restriction $x < y$.