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

How many bit strings of length 12 contain at least three 1 s and at least three 0 s?

i have this question but i don't know the answer please help me: How many bit strings of length 12 contain at least three 1 s and at least three 0 s?
gio
  • 1
0
votes
2 answers

Separating three types of students into groups with the same number of students of each type

Please explain me what this question is all about: In the Mathematics department of a college, there are 60 first-year students, 84 second-year students and 108 third-year students. All of these students are to be divided into project groups such…
0
votes
1 answer

Path combinations

How many different combinations there is to get from point $A$ to point $B$ if you have to stop by point $P$ on the way and how many if you want to avoid never to go by $P$? Im a bit stuck with this. Any help is appreciated.
user713999
0
votes
1 answer

Frequency of $3$ of a kind

My lecture slide says the number of ways of choosing a $3$ of a kind card-hand is (assume we are finding $5$-card hands from a standard deck of cards) $ c(4,3)\times \ c(13,1) \times\ c(48,2) $. But I found a different answer in this wiki page.…
Ray
  • 49
0
votes
0 answers

Catalan numbers with restrictions

The number of valid parenthesis expressions that consist of $n$ right parentheses and $n$ left parentheses is equal to the $n^\text{th}$ Catalan number. If we restrict that in every point,the sum of right parentheses - the sum of left parentheses is…
ehds
  • 101
0
votes
1 answer

Combination exam question answer verification

A financial services company enforce a password system for their cloud application such that all passwords must consist of 10 alphanumerics. More precisely, passwords must contain 6 lower case letters and 4 digits in any order without…
Liam
  • 350
0
votes
1 answer

Number of combinations of 5 members selected from three groups, with 8, 7, and 6 members respectively, with at least one member per group

"A committee of five is selected from eight engineers, seven scientists, and six mathematicians. How many committees consist of at least one of each profession?" Edit: I have tried to brute force it: C(21,5) - C(7,5) - C(7,4)*C(6,1)... and so on so…
0
votes
2 answers

How many distinct postitive integers satisfy the identity $x+y+z+w = 100$?

Let's say we have $4$ positive integers $x$, $y$, $z$, $w$ that satisfy the property: $$x+ y+ z+ w = 100$$ How many possible distinct answers are there?
A.Y
  • 153
0
votes
0 answers

Union and intersection of three subsets

Let $H$ has $n$ elements and $A, B, C \subseteq H$. (a) # of ways to have this triple such that $A\cap B \cap C =\emptyset$. (b) # of ways to have this triple such that $A \cup B \cup C=H$ For (a), I have $\sum^{n}_{k_3=0} \sum^{n}_{k_2=0}…
0
votes
1 answer

Number of ways of selection

Currently while solving exercise question I came to this one which is stated as follows: A bag contains $5$ black and $6$ red balls. Determine the number of ways in which $2$ black and $3$ red balls can be selected from the lot. Now my logic while…
user690654
0
votes
1 answer

Divisors Combinations

Find the number of all the 3-digit numbers which are divisible by 2 but not divisible by 10. I am totally confused here-- I was trying to sort out all numbers divisible by 2, and then cancel the ones divisible by 10. However there must be an easier…
0
votes
3 answers

Why is not the direct multiplication applicable to count the total number of ways to choose digits

A common problem that says to make $8$-digit phone numbers, assuming that the first digit can’t be a $0$ or a $3$? Re-solve the previous problem, except now assume also that the phone number is not allowed to start with $433$. $\\$I have solved…
vbm
  • 632
0
votes
1 answer

llustration of the equality $\binom{m}{n} = \binom{m}{m-n}$

By definition it is easy to see that: $$\binom{m}{n} = \binom{m}{m-n}$$ But it seems difficult to me explaining this property with a non-technical example. Does anyone know the name of this property? Any real example to illustrate this equality?
RobinHood
  • 123
0
votes
1 answer

How many $12$ digit even numbers can be formed using $0 , 1 , 1 , 2 , 2 , 3 , 3 , 3 , 4 , 4 , 4 , 5 , 5 , 5 $?

It is a follow up to my previous question here The only difference is 12 digits numbers are picked from 14 numbers. Thanks to many great people, I have understood how to solve the previous question. However, if I am to pick 12 numbers out of the…
Kevin
  • 365
  • 1
  • 10
0
votes
1 answer

Calculating the number of combinations in a list expansion

How would you calculate the total unique combinations given a list of M elements padded with N additional elements (all the same) at any indexes within the list? For example, say you have the list m = [a, b, c], and you want to generate all…
Cerin
  • 154