Difference between revisions of "2022 AMC 12A Problems/Problem 19"
(→Solution 3) |
(→Solution 3) |
||
Line 112: | Line 112: | ||
Let the cards picked up in the first pass be <math>1, 2, \ldots, n</math>, where <math>1 \leq n \leq 12</math>. Then there are <math>\binom{13}{n} -1</math> ways the cards could have originally been arranged, as to place the cards we must choose <math>n</math> of the original <math>13</math> spots to place the <math>n</math> cards from <math>1</math> to <math>n</math> (in that order). However, we must discard the case where the first <math>n</math> spaces are taken up by these cards, as then the cards would all be picked up in one pass. Hence, our desired number of ways to arrange the cards is | Let the cards picked up in the first pass be <math>1, 2, \ldots, n</math>, where <math>1 \leq n \leq 12</math>. Then there are <math>\binom{13}{n} -1</math> ways the cards could have originally been arranged, as to place the cards we must choose <math>n</math> of the original <math>13</math> spots to place the <math>n</math> cards from <math>1</math> to <math>n</math> (in that order). However, we must discard the case where the first <math>n</math> spaces are taken up by these cards, as then the cards would all be picked up in one pass. Hence, our desired number of ways to arrange the cards is | ||
<cmath>\sum_{n=1}^{12} \left(\binom{13}{n} -1\right) = \left(\sum_{n=1}^{12} \binom{13}{n}\right) - 12 = \left(\sum_{n=0}^{13} \binom{13}{n}\right) - \binom{13}{0} - \binom{13}{13} - 12 = 2^{13} - 1 - 1 - 12 = \boxed{\textbf{(D)}\ 8178}.</cmath> | <cmath>\sum_{n=1}^{12} \left(\binom{13}{n} -1\right) = \left(\sum_{n=1}^{12} \binom{13}{n}\right) - 12 = \left(\sum_{n=0}^{13} \binom{13}{n}\right) - \binom{13}{0} - \binom{13}{13} - 12 = 2^{13} - 1 - 1 - 12 = \boxed{\textbf{(D)}\ 8178}.</cmath> | ||
+ | |||
+ | ==Solution 4 (Engineer's Induction, Risky)== | ||
+ | When we have <math>3</math> cards arranged in a row, after listing out all possible arrangements, we see that we have <math>4</math> ones: <math>(1, 3, 2), (2, 1, 3,) (2, 3, 1),</math> and <math>(3, 1, 2)</math>. When we have <math>4</math> cards, we find <math>11</math> possible arrangements: <math>(1, 2, 4, 3), (1, 3, 2, 4), (1, 3, 4, 2), (1, 4, 2, 3), (2, 1, 3, 4), (2, 3, 1, 4), (2, 3, 4, 1), (3, 1, 2, 4), (3, 1, 4, 2), (3, 4, 1, 2),</math> and <math>(4, 1, 2, 3).</math> Hence, we recognize the pattern that for <math>n</math> cards, we have <math>2^n - n - 1</math> valid arrangements, so our answer is <math>2^{13} - 1 - 1 - 12 = \boxed{\textbf{(D)}\ 8178}.</math> | ||
== Video Solution By ThePuzzlr == | == Video Solution By ThePuzzlr == |
Revision as of 14:19, 13 November 2022
Contents
Problem
Suppose that 13 cards numbered are arranged in a row. The task is to pick them up in numerically increasing order, working repeatedly from left to right. In the example below, cards 1, 2, 3 are picked up on the first pass, 4 and 5 on the second pass, 6 on the third pass, 7, 8, 9, 10 on the fourth pass, and 11, 12, 13 on the fifth pass. For how many of the
possible orderings of the cards will the
cards be picked up in exactly two passes?
Solution 1
Since the cards are picked up in two passes, the first pass must pick up the first
cards and the second pass must pick up the remaining cards
through
.
Also note that if
, which is the card that is numbered one more than
, is placed before
, then
will not be picked up on the first pass since cards are picked up in order. Therefore we desire
to be placed before
to create a second pass, and that after the first pass, the numbers
through
are lined up in order from least to greatest.
To construct this, cannot go in the
th position because all cards
to
will have to precede it and there will be no room for
. Therefore
must be in slots
to
.
Let's do casework on which slot
goes into to get a general idea for how the problem works.
With
in spot
, there are
available slots before
, and there are
cards preceding
. Therefore the number of ways to reserve these slots for the
cards is
. Then there is only
way to order these cards (since we want them in increasing order). Then card
goes into whatever slot is remaining, and the
cards are ordered in increasing order after slot
, giving only
way. Therefore in this case there are
possibilities.
With
in spot
, there are
available slots before
, and there are
cards preceding
. Therefore the number of ways to reserve slots for these cards are
. Then there is one way to order these cards. Then cards
and
must go in the remaining two slots, and there is only one way to order them since they must be in increasing order. Finally, cards
to
will be ordered in increasing order after slot
, which yields
way. Therefore, this case has
possibilities.
I think we can see a general pattern now. With in slot
, there are
slots to distribute to the previous
cards, which can be done in
ways. Then the remaining cards fill in in just
way. Since the cases of
start in slot
and end in slot
, this sum amounts to:
for any
.
Hmmm... where have we seen this before?
We use wishful thinking to add a term of :
This is just the hockey stick identity! Applying it, this expression is equal to . However, we added an extra term, so subtracting it off, the total number of ways to order the
cards for any
is
Finally, to calculate the total for all , we sum from
to
. This yields us:
~KingRavi
Solution 2
To solve this problem, we can use recursion on . Let
be the number of arrangements for
numbers. Now, let's look at how these arrangements are formed by case work on the first number
.
If , the remaining
numbers from
to
are arranged in the same way just like number 1 to
in the case of
numbers. So there are
arrangements.
If , then we need to choose 1 position from position 2 to
to put 1, and all remaining numbers must be arranged in increasing order, so there are
such arrangements.
If , then we need to choose
positions from position 2 to
to put
, and all remaining numbers must be arranged in increasing order, so there are
such arrangements.
So we can write
which can be simplified to
We can solve this recursive sequence by summing up
lines of the recursive formula
to get
since
, we have
and
.
So the answer is
-- Dan Li
Solution 3
Let the cards picked up in the first pass be , where
. Then there are
ways the cards could have originally been arranged, as to place the cards we must choose
of the original
spots to place the
cards from
to
(in that order). However, we must discard the case where the first
spaces are taken up by these cards, as then the cards would all be picked up in one pass. Hence, our desired number of ways to arrange the cards is
Solution 4 (Engineer's Induction, Risky)
When we have cards arranged in a row, after listing out all possible arrangements, we see that we have
ones:
and
. When we have
cards, we find
possible arrangements:
and
Hence, we recognize the pattern that for
cards, we have
valid arrangements, so our answer is
Video Solution By ThePuzzlr
~ MathIsChess
Solution by OmegaLearn Using Combinatorial Identities and Overcounting
~ pi_is_3.14
Solution
~Steven Chen (Professor Chen Education Palace, www.professorchenedu.com)
See Also
2022 AMC 12A (Problems • Answer Key • Resources) | |
Preceded by Problem 18 |
Followed by Problem 20 |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 | |
All AMC 12 Problems and Solutions |
2022 AMC 10A (Problems • Answer Key • Resources) | ||
Preceded by Problem 21 |
Followed by Problem 23 | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 | ||
All AMC 10 Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.