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

How many different Tsuro tiles can exist?

The boardgame Tsuro consists of tiles, which each have 8 entry points. Each tile connects each point to exactly one other point. The game manual claims every tile is unique. The game consists of 35 such tiles. How many unique such tiles could…
Konerak
  • 1,043
8
votes
1 answer

Beaver lodges and burrows

In the below diagram, A, B, C, D, E, F are beaver lodges and the segments in blue and red are burrows that connect the lodges. The dots marked with the letters G to S are crossing points where the beavers can change track. In the lodge A there are…
6
votes
6 answers

How many squares are in the chessboard?

How to determine the numbers of squares in not only in chess board but also in a square figure like the chess. I need a general formula. WHat I guess Is, I have 9 lines in both side so I can have $9C2 \times 9C 2$?
mathphy
  • 845
6
votes
1 answer

Number of lines formed from points on $2$ circles

Problem: There are $2$ concentric circles in a plane. $3$ points are on the circumference of the inner circle and $6$ points are on the outer circle. Each of these points is joined to every one of the remaining $8$ points. What is the minimal…
6
votes
7 answers

Proof For Combination Formula: N choose K

I have been looking at this problem for a long time. Can anyone prove the combination formula using factorials N choose K? In case anyone does not know how to list all combinations in a set, you start with a permutation tree (for example) 1 2…
W. G.
  • 1,766
6
votes
3 answers

Calculate the total number of combinations over n elements, where the number of elements in each subset is in {0,..,n}?

If you had 4 elements, and you wanted to find all possible combinations of those 4, you take the factorial. But, what if you also wanted to consider combinations of 3, 2, 1 and 0 (where you're still using those 4 elements)? If you have n elements,…
5
votes
3 answers

How many handshakes in total?

If there are 20 persons in a party and if each two of them shake hands with each other, how many hand shakes happen in the party ? will it be 20C2 = 20*19 or 19+18+...+1? there are 2 different explanation and both seem to be logically correct i…
Sam
  • 65
5
votes
4 answers

Choosing 2 shoes from 6 pairs of different shoes

How to select 2 shoes from 6 pairs of shoes where in the selected shoes they are not from the same pair? Why is this answer wrong? $${6 \choose 1}{2 \choose 1}{5 \choose 1}{2 \choose 1}$$ My logic is first we choose a pair from six then choose one…
5
votes
1 answer

Number of ways of distributing $4$ identical red balls,$1$ green ball,$1$ black ball among $4$ persons

The question is to find out the number of ways of distributing : $4$ identical red balls $1$ white ball $1$ green ball $1$ black ball among $4$ persons if each receives at least one ball and no one gets all identical red balls. My attempt Let…
5
votes
2 answers

What does 2 values vertically arranged in parenthesis in an equation mean?

Below is the particular expression I am concerned with. I suppose it denotes some sort of operation but I am unsure as to what. I'd appreciate some guidance. Thanks.
user55570
  • 177
5
votes
3 answers

Combined Combinations - What's wrong with my line of thinking?

I'm brushing up on some basics for an upcoming job interview, and I've got myself confused over a question about combined combinations. From Discrete Mathematics with Graph Theory Third Edition by Goodaire & Parmenter, Section 7.2, Exercise 1: A…
5
votes
2 answers

How to rearrange these numbers?

Say you had to add up to 10 by only used the positive integers of 1 and 2, they can be arranged by 1111111111 as the most digits needed and 22222 as the least, or say 2212111 would be another combination, how many ways can you make 10 by doing this?…
Peter
  • 53
5
votes
2 answers

combinations help, 18 boxes, 42 marbles, each box can hold 6 marbles. how many combinations?

I am working on a scheduling algorithm for teachers taking classes, and I am working out possible run times. I have simplified the problem down to this analogy If I had 18 boxes and 42 marbles. Each box could hold from 0 - 42 marbles. The amount of…
Aleddd
  • 61
5
votes
3 answers

What is wrong? A committee of $6$ people is to be chosen from a group consisting of $7$ men and $8$ women.

A committee of $6$ people is to be chosen from a group consisting of $7$ men and $8$ women. If the committee must consist of at least $3$ women and at least $2$ men, how many different committees are possible? The correct answer in the book is…
shelley
  • 53
4
votes
1 answer

Combination question why doesn't my method work?

A Mathematics department consists of 5 female and 5 male teachers. How many committees of 3 teachers can be chosen which contain at least one female and at least one male? a) 100 b) 120 c) 200 d) 2500 So I found several ways of doing this…
Charlie
  • 41
1
2 3
48 49