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

If we consider 4 variables i,j,k,l.How many configurations of $i=j\neq k\neq l$,$i=j=k=l$ etc are possible with $= $ or/and $\neq$?

I have tried taking combinations of 1 $=$,2 $=$'s and 3 $=$'s..but the required answer which is 15 is not coming.
Annie
  • 73
1
vote
0 answers

Number of combinations with a grid and alphabet

Sorry, my previous question got deleted. If I have a grid $N \times M$, and an alphabet of $S$ characters which can populate the grid, how many possibilities are there? So if I had a $1\times 3$ and my alphabet was $\{A\}$, I would only have…
1
vote
2 answers

allowable arrangements of ${1,2,2,3,3,3...}$

You are given the multiset $\{1,2,2,3,3,3,\ldots\}$ with each type$(n)$ having $n$ elements.If you pick the first $k$ types, how many allowable arrangements are there using $k$ elements? For $k=5$ you could have $\{1,2,3,3,3\}$ or $\{2,3,4,4,4\}$…
1
vote
1 answer

There are $6$ types of cookies. How many different packs of $3$ cookies can the baker package?

A cookie baker packages cookies $3$ to a pack. The type of cookies she can choose from include chocolate chip, oatmeal, sugar-coated, sugar-free, peanut butter, and hazelnut. How many different packs of $3$ cookies can she package? When I…
Ian L
  • 889
1
vote
0 answers

Excursion and combination problem

From a group of 12 students 8 are to be chosen for an excursion. There are 3 students who decide that either all of them will join or none of them will join. In how many ways can the 8 be chosen. ...Is it 9C5+9C8 or 9C5-9C8 Please clarify
1
vote
1 answer

combination problem on Lego blocks

Working on some interesting combination problems related to Lego blocks. For example, this one. Confusion is, I often see two dimensions (e.g. height and width in below problem) mentioned to calculate the number of combinations, so length needed to…
Lin Ma
  • 183
1
vote
1 answer

Solving for possible orientations of 3 objects on a 3x3 grid

Say you have a 3x3 grid, and 3 objects to work with. Each occupies one space. How would I go about solving the amount of ways they can lay on the grid. Example: (pardon my bad ASCII art) [][][] [][][] [x][x][x] Any help would be much appreciated,…
Scrub
  • 13
1
vote
1 answer

Number of combinations with repetition

For normal combination, which subset is unique, there is a requirement $k{\le}n$, wondering for combination with repetition, I think there is no such requirement, and $k$ could be greater than n, correct? Thanks. ${}{}{}{}{}$ Here is what context I…
Lin Ma
  • 183
1
vote
1 answer

43 men in 7 group meetings problem

We have 43 men. They meet each other in 7-men groups. Each of them must see other man (in left 42 men) only once. Describe all combinations how they can meet each other.
user344201
1
vote
1 answer

A combinatorial problem - special convex polygon

I was trying to solve this question, yet I could not come up with a straightforward proof... it says given a set S containing 100 points on a plane, no 3 on a line, there is a convex polygon whose vertices are in the set S and that contains exactly…
1
vote
3 answers

What's the expression for the following combination?

The number of ternary strings of length 10 which contain exactly two 1s and exactly three 2s. Would it be ${10\choose 2}+{10\choose 3}$? Have I understood the concept of combinations? If I haven't, please do let me know where I went wrong, if you…
rainbow
  • 33
1
vote
1 answer

Is the following an unordered selection with or without repetition?

The number of binary strings of length 100 that contain at most two 1s. How do we write an expression for it?
rainbow
  • 33
1
vote
2 answers

Find the number of routes

The diagram below shows a $4$ rows $\times$ $6$ columns grid. Find the number of ways to travel from $A$ (at the bottom left) to the top right along the grid lines. At every junction point, one can only go right or upwards. I can setup a tree…
Mick
  • 17,141
1
vote
2 answers

Can number of choices be non-integer?

In some lottery, the entry numbers are from $1$ to $80$ inclusive and $22$ numbers are chosen among them. In a ticket someone can choose $10$ numbers and if his or her $10$ numbers exist among the drawn $22$ numbers he or she wins the jackpot. No…
user231343
1
vote
1 answer

Possible ways to choose 6 units out of 18 units where 2 units must be together

How many different groups of 6 children can be chosen from a class of 18 children if the class contains one set of twins who must not be seperated?