DA3. Combinatorics¶
Part 1: Scholarship Awards¶
1. Statement¶
- You are organizing a swimming competition with ‘n’ participants. The school has announced scholarships for the top three swimmers.
- The details of the scholarship is as follows:
- First place - 100% scholarship to study abroad
- Second-place - 100% scholarship to study in any school all over the country
- Third-place – 50% scholarship to study in any school all over the country
- Take ‘n’ as any two-digit number representing the total number of participants in the competition. Find how many possible ways are there to award these scholarships if there are no ties during the competition.
- Explain in detail.
1. Solution¶
- The total number of participants is
n
, where we are selectingk=3
participants for the scholarships. - Since there are no ties, the elements in the competition results are distinct.
- Because we select the first, second, and third place, the order of the elements in the selection matters.
- When elements are distinct and the order matters, we use the
permutation
formula. - The permutation formula states that
P(n, k) = n! / (n - k)!
. - Let’s substitute the values in the formula, and expand the factorial terms.
\[
\begin{aligned}
P(n, k) &= n! / ( n - k )! \\
&= n! / ( n - 3 )! \\
&= n * ( n - 1 ) * ( n - 2 ) * ( n - 3 )! / ( n - 3 )! \\
&= n * ( n - 1 ) * ( n - 2 ) \\
\end{aligned}
\]
- The
( n - 3 )!
in the numerator and denominator cancel out, so we left withn * ( n - 1 ) * ( n - 2 )
. - So, for
10
participants, the number of ways to award the scholarships is10 * ( 10 - 1 ) * ( 10 - 2 ) = 10 * 9 * 8 = 720
. - For
99
participants, the number of ways to award the scholarships is99 * ( 99 - 1 ) * ( 99 - 2 ) = 99 * 98 * 97 = 941,094
. - So the values ranges from
720
to941,094
.
Part 2: School Funds¶
2. Statement¶
- A group of n -school principals are trained for implementing innovative education in their schools. (Choose a two-digit number for n).
- As a part of the innovative education scheme, 9 schools are to be offered equal funds from the government.
- In how many ways can 9 schools be selected from the trained group?
- If your school is one among the 9 selected schools, how many ways will be left to choose the other schools?
- In both parts 1 and 2, which concepts are you using? Explain the reason to choose the concept. Also, discuss how combinatorics helps to solve real-world counting problems.
2. Solution¶
2.1. Part 1¶
- The total number of schools is
n
, where we are selectingk=9
schools for the funds. - Assuming each school can get only one fund, the elements in the selection are distinct.
- Assuming the order of the elements in the selection does not matter, we use the
combination
formulaC(n, k) = n! / ( k! * ( n - k )! )
(Mathispower4u, 2022). - The reasoning is similar to the one used in the first question.
\[
\begin{aligned}
C(n, 9) &= n! / ( 9! * ( n - 9 )! ) \\
&= n! / ( 9! * ( n - 9 )! ) \\
&= n * ( n - 1 ) * ( n - 2 ) * ( n - 3 ) * ( n - 4 ) * ( n - 5 ) * ( n - 6 ) * ( n - 7 ) * ( n - 8 ) * ( n - 9 )! / ( 9! * ( n - 9 )! ) \\
&= n * ( n - 1 ) * ( n - 2 ) * ( n - 3 ) * ( n - 4 ) * ( n - 5 ) * ( n - 6 ) * ( n - 7 ) * ( n - 8 ) / 9! \\
\end{aligned}
\]
- The formula is not simple and can not be simplified further, so I’ll just use the
C(n, k)
notation. - For
10
schools, the number of ways that a9
schools can be selected isC(10,9) = 10
. - For,
99
schools, the number of ways that a9
schools can be selected isC(100,9) = 1,731,030,945,644
. - So the values ranges from
10
to1,731,030,945,644
.
2.2. Part 2¶
- The total number of schools is
n
, where we are selectingk=9
schools for the funds. - Taking our assumptions in question 2.1, into considerations we can use the
combination
formulaC(n, k) = n! / ( k! * ( n - k )! )
(Mathispower4u, 2022). - Assuming our school has been selected, there are now
n-1
schools left to choosek-1=8
schools from. - We are not simplifying the formula, and just use the
C(n, k)
notation. - For
10
schools, the number of ways that a8
schools can be selected isC(9,8) = 9
. - For,
99
schools, the number of ways that a8
schools can be selected isC(98,8) = 171,200,862,756
. - So the values ranges from
9
to171,200,862,756
which is much smaller than the values in question 2.1.
2.3. Combinatorics in real-world¶
- Combinatorics helps in imagining the size of a problem and the number of possible solutions which helps in planning and decision making.
- Before actually implementing a solution, using combinatorics we can estimate the cost of such a solution, and based on that we can decide whether to implement it or not.
References¶
- Levin, O. (2021). Discrete mathematics: An open introduction (3rd ed.). https://discrete.openmathbooks.org/dmoi3/frontmatter.html licensed under CC 4.0
- Mathispower4u. (2022, June 28). Counting: Find the number of functions and bijective functions (discrete math) [Video]. YouTube.