2018 AIME II Problems/Problem 11
Contents
Problem
Find the number of permutations of such that for each
with
, at least one of the first
terms of the permutation is greater than
.
Solution 1
If the first number is , then there are no restrictions. There are
, or
ways to place the other
numbers.
If the first number is ,
can go in four places, and there are
ways to place the other
numbers.
ways.
If the first number is , ....
4 6 _ _ _ _ 24 ways
4 _ 6 _ _ _ 24 ways
4 _ _ 6 _ _ 24 ways
4 _ _ _ 6 _ 5 must go between
and
, so there are
ways.
ways if 4 is first.
If the first number is , ....
3 6 _ _ _ _ 24 ways
3 _ 6 _ _ _ 24 ways
3 1 _ 6 _ _ 4 ways
3 2 _ 6 _ _ 4 ways
3 4 _ 6 _ _ 6 ways
3 5 _ 6 _ _ 6 ways
3 5 _ _ 6 _ 6 ways
3 _ 5 _ 6 _ 6 ways
3 _ _ 5 6 _ 4 ways
ways
If the first number is , ....
2 6 _ _ _ _ 24 ways
2 _ 6 _ _ _ 18 ways
2 3 _ 6 _ _ 4 ways
2 4 _ 6 _ _ 6 ways
2 5 _ 6 _ _ 6 ways
2 5 _ _ 6 _ 6 ways
2 _ 5 _ 6 _ 4 ways
2 4 _ 5 6 _ 2 ways
2 3 4 5 6 1 1 way
ways
Grand Total :
Solution 2
If is the first number, then there are no restrictions. There are
, or
ways to place the other
numbers.
If is the second number, then the first number can be
or
, and there are
ways to place the other
numbers.
ways.
If is the third number, then we cannot have the following:
1 _ 6 _ _ _ 24 ways
2 1 6 _ _ _ 6 ways
ways
If is the fourth number, then we cannot have the following:
1 _ _ 6 _ _ 24 ways
2 1 _ 6 _ _ 6 ways
2 3 1 6 _ _ 2 ways
3 1 2 6 _ _ 2 ways
3 2 1 6 _ _ 2 ways
ways
If is the fifth number, then we cannot have the following:
_ _ _ _ 6 5 24 ways
1 5 _ _ 6 _ 6 ways
1 _ 5 _ 6 _ 6 ways
2 1 5 _ 6 _ 2 ways
1 _ _ 5 6 _ 6 ways
2 1 _ 5 6 _ 2 ways
2 3 1 5 6 4, 3 1 2 5 6 4, 3 2 1 5 6 4 3 ways
ways
Grand Total :
Solution 3 (Recursion)
Note the condition in the problem is equivalent to the following condition: for each with
, the first
terms is not a permutation
(since it would mean there must be some integer
in the first
terms such that
). Then, let
denote the number of permutations of
satisfying the condition in the problem. We use complementary counting to find
. Notice that in order to not satisfy the condition in the problem, there are
cases: the first
(we don't include
since the condition in the problem only holds up to
) terms are a permutation of
, and for all
, the condition in the problem still holds. Then, for each of these cases, there are
ways to arrange the first
terms, and then
ways to arrange the
to
terms (assume by contradiction that terms from
to
is a permutation of
. Then, since the first
terms are already a permutation of
, the first
terms form a permutation of
. This contradicts our assumption that for all
, the condition still holds. Thus, we can only include the
permutations of these terms). Now, summing the cases up and subtracting from
, we have:
. From this recursion, we derive that
,
,
,
,
, and finally
.
~ (Frank FYC)
Solution 4 (PIE)
Let be the set of permutations such that there is no number greater than
in the first
places. Note that
for all
and that the set of restricted permutations is
.
We will compute the cardinality of this set with PIE.
To finish,
Solution 5 (Recursion)
Define the function as the amount of permutations with maximum digit
and string length
that satisfy the condition within bounds. For example,
would be the amount of ways to make a string with length
with the highest digit being
. We wish to obtain
.
To generate recursion, consider how we would get to from
for all
such that
. We could either jump from the old maximum
to the new
by concatenating the old string and the new digit
, or one could retain the maximum, in which case
. To retain the maximum, one would have to pick a new available digit not exceeding
.
In the first case, there is only one way to pick the new digit, namely picking . For the second case, there are
digits left to choose, because there are
digits between 1 and
total and there are
digits already chosen below or equal to
. Thus,
. Now that we have the recursive function, we can start evaluating the values of
until we get to
.
Our requested answer is thus
~sigma
Solution 6 (Complementary)
We can also solve this problem by counting the number of permutations that do NOT satisfy the given conditions; namely, these permutations must satisfy the condition that none of the first terms is greater than
for
. We can further simplify this method by approaching it through casework on the first
terms.
Case 1: None of the first one terms is greater than 1
The first term must obviously be one. Since there are five spaces left for numbers, there are a total of permutations for this case.
Case 2: None of the first two terms is greater than 2
The first two terms must be 1 and 2 in some order. However, we already counted all cases starting with 1 in the previous case, so all of the permutations in this case must begin with . Since there are four spaces left, there are a total of
permutations for this case.
Case 3: None of the first three terms is greater than 3
The first three terms must be 1, 2, and 3 in some order. However, the cases beginning with 1__ and 21_ have already been accounted for. There are now ways to order the first three numbers of the permutation, and
ways to order the last three numbers, for a total of
permutations.
Case 4: None of the first four terms is greater than 4
You can see where the pattern is going - the first four terms must be 1, 2, 3, and 4 in some order. All cases starting with 1 (there are ), the cases starting with 21 (there are
), and the 3 cases from case 3 (there are
) have been accounted for, so there are a total of
permutations for this case.
Case 5: None of the first five terms is greater than 5
This is perhaps the hardest case to work with, simply because there are so many subcases, so keeping track is crucial here. Obviously, the first five terms must be 1, 2, 3, 4, and 5, meaning there are 120 ways to order them. Now, we count the permutations we have already counted in previous cases. start with 1,
start with 2,
start with 3, and
start with 4. Subtracting, we get a total of
permutations.
Now, we subtract the total number of permutations from our cases from the total number of permutations, which is :
.
~TGSN/curiousmind_888
2018 AIME II (Problems • Answer Key • Resources) | ||
Preceded by Problem 10 |
Followed by Problem 12 | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 | ||
All AIME Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.