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

Finding the conversion factor which transforms a set of integers into a set of reals which has the fewest binary digits

Let us say that any number which can be represented as a string of bits with a single decimal point is "binary enodable"; all such numbers are positive, computable, and rational. Suppose we have some arbitrary set of integers, N. (ex. [16 32 40 48]…
Alice
  • 111
1
vote
1 answer

How many combinations can there be

There are 15 distinct A stamps and 15 distinct B stamps for a total of 30 distinct stamps. The album is put together using a combination of nine A or B stamps and six of the other for a total of 15. How many combinations of the album would there be…
Robert
  • 15
1
vote
1 answer

What would be the logic to find possible combinations for this?

Suppose I have five numbers: 12345. I want to split them into 2, 3, 4 and so on possible ways: If we split into two columns, we have 4 these possibilities: 1 | 2345 12 | 345 123 | 45 1234 | 5 If we split into three columns, we have 6 these…
cpx
  • 639
1
vote
1 answer

Navigational Help combinations

You take exactly 10 steps. You can move in one of three directions (North West East) with no desired target point (just 10 steps). You cannot follow a move East with a move West or vice versa. How many possible combinations of paths are there. I…
DTR9999
  • 113
1
vote
1 answer

Probability of selecting all defective parts

In a problem we are faced with 22 items from a shipment. It is known that 7 of the items are defective. What is the probability of selecting all defective items from a draw of 7. What is the probability of a draw where none of the items defective. I…
1
vote
1 answer

Combination of at most one of the oldest 2 players

11 players must be selected from 15 players. (i) Find at most one of the oldest two players must be included. Please help with full annotation, thnx
Arodi007
  • 139
1
vote
2 answers

how many combinations of 3 items I can make?

Say I have this set: {a,a,a,a,b,b,c,c} I want to know how many combinations of 3 items I can make. this would be the result I'm looking for: {a,a,a} {a,b,b} {a,b,c} {a,c,c} {a,a,b} {a,a,c} {b,b,c} {b,c,c} 8 items in total. Another words, order…
1
vote
3 answers

2 Colored blocks and towers

If a tower is to be constructed with blue and red blocks, and red blocks cannot touch each other, what would the formula be to find all possible combinations for every set of blue and red blocks? Order does not matter. I've tried combinations for…
Mike
  • 13
1
vote
3 answers

possibilities-combination-how many ways,so that each man get married with one of the women

I have a question.There is a group of 5 men and a group of 7 women.With how many ways can each of the 5 men get married with one of the 7 women?
evinda
  • 7,823
1
vote
2 answers

A formula for combinations?

I'm definitely not a math man (quite negate for maths..), but I need to know one thing: I've got to calculate how many combinations there can be from n groups of options. I mean, example: g1 = [a,b] g2 = [d,e] by 'combination' I mean a list of items…
1
vote
2 answers

Combination math. I'm stumped. GMAT related.

A family consisting of one mother, one father, two daughters and a son is taking a road trip in a sedan. The sedan has two front seats and three back seats. If one of the parents must drive and the two daughters refuse to sit next to each other, how…
Jwan622
  • 5,704
1
vote
1 answer

combination problem.

A small company employs $3$ men and $5$ women. If a team of $4$ employees is to be randomly selected to organize the company retreat, what is the probability that the team will have exactly $2$ women? So, first, how many possible combinations are…
Jwan622
  • 5,704
1
vote
1 answer

Calculating Combinations

If I have the following 1000 cars and I know out of those I have: Colour Red: 300 Engine Size 1.4: 250 Fuel Petrol: 400 Automatic Gears: 600 Firstly how can I calculate how many different combinations there are? Secondly is there a formula I can use…
Cragly
  • 113
1
vote
1 answer

I'm unsure how to work out the combinations

I'm having issues working out the answer to a question $C(6,2)$. I'm working it out wrong because I've got this $$C(6,2) = \frac{6!}{2(6-2)!} = \frac{6!}{2\ 4!} = \frac{6!}{8!} = \frac{720}{40320} = 0.0178.$$
user2956865
  • 33
  • 1
  • 4
1
vote
1 answer

How does the mathematical form of nCr ensure that the result is a whole number

The mathematical form for nCr is (n!)/(r!(n-r)!) How does this form ensure that nCr is indeed a whole number. Is there a mathematical proof?
Hashken
  • 111