Difference between revisions of "2019 AMC 10B Problems/Problem 25"
(→Solution 1 (recursion)) |
(→Solution 1 (recursion)) |
||
Line 16: | Line 16: | ||
(Note from different author) Here are the steps if you want to see them: | (Note from different author) Here are the steps if you want to see them: | ||
− | <math>f(5) = 1</math> because the only possible sequence is <math>01010.</math> <math>f(6) = 2</math> because the two that work are <math>011010</math> and <math>010110.</math> <math>f(7) = 2</math> because the two that work are <math>0101010</math> and <math>0110110.</math> Then, using the recursion function, we know that <math>f(8) = 1 + 2 = 3, f(9) = 2 + 2 = 4, f(10) = 2 + 3 = 5, f(11) = 3 + 4 = 7, f(12) = 4 + 5 = 9, f(13) = 5 + 7 = 12, f(14) = 7 + 9 = 16, f(15) = 9 + 12 = 21, f(16) = 12 + 16 = 28, f(17) = 16 + 21 = 37, f(18) = 21 + 28 = 49,</math> and finally <math>f(19) = 28 + 37 = 65.</math> So, our answer is <math>\boxed{65}</math> ~solasky (of the note, not the solution above.) | + | <math>f(5) = 1</math> because the only possible sequence is <math>01010.</math> <math>f(6) = 2</math> because the two that work are <math>011010</math> and <math>010110.</math> <math>f(7) = 2</math> because the two that work are <math>0101010</math> and <math>0110110.</math> Then, using the recursion function, we know that <math>f(8) = 1 + 2 = 3, f(9) = 2 + 2 = 4, f(10) = 2 + 3 = 5, f(11) = 3 + 4 = 7, f(12) = 4 + 5 = 9, f(13) = 5 + 7 = 12, f(14) = 7 + 9 = 16, f(15) = 9 + 12 = 21, f(16) = 12 + 16 = 28, f(17) = 16 + 21 = 37, f(18) = 21 + 28 = 49,</math> and finally <math>f(19) = 28 + 37 = 65.</math> So, our answer is <math>\text{bf{(C) } \boxed{65}</math> ~solasky (of the note, not the solution above.) |
==Solution 2 (casework)== | ==Solution 2 (casework)== |
Revision as of 16:21, 26 March 2021
- The following problem is from both the 2019 AMC 10B #25 and 2019 AMC 12B #23, so both problems redirect to this page.
Contents
Problem
How many sequences of s and
s of length
are there that begin with a
, end with a
, contain no two consecutive
s, and contain no three consecutive
s?
Solution 1 (recursion)
We can deduce, from the given restrictions, that any valid sequence of length will start with a
followed by either
or
.
Thus we can define a recursive function
, where
is the number of valid sequences of length
.
This is because for any valid sequence of length , you can append either
or
and the resulting sequence will still satisfy the given conditions.
It is easy to find with the only possible sequence being
and
with the only two possible sequences being
and
by hand, and then by the recursive formula, we have
.
(Note from different author) Here are the steps if you want to see them:
because the only possible sequence is
because the two that work are
and
because the two that work are
and
Then, using the recursion function, we know that
and finally
So, our answer is $\text{bf{(C) } \boxed{65}$ (Error compiling LaTeX. Unknown error_msg) ~solasky (of the note, not the solution above.)
Solution 2 (casework)
After any particular , the next
in the sequence must appear exactly
or
positions down the line. In this case, we start at position
and end at position
, i.e. we move a total of
positions down the line. Therefore, we must add a series of
s and
s to get
. There are a number of ways to do this:
Case 1: nine s - there is only
way to arrange them.
Case 2: two s and six
s - there are
ways to arrange them.
Case 3: four s and three
s - there are
ways to arrange them.
Case 4: six s - there is only
way to arrange them.
Summing the four cases gives .
Solution 3 (casework and blocks)
We can simplify the original problem into a problem where there are binary characters with zeros at the beginning and the end. Then, we know that we cannot have a block of 2 zeroes and a block of 3 ones. Thus, our only options are a block of
s,
s, and
s. Now, we use casework:
Case 1: Alternating 1s and 0s. There is simply 1 way to do this: .
Now, we note that there cannot be only one block of
in the entire sequence, as there must be zeroes at both ends and if we only include 1 block, of
s this cannot be satisfied. This is true for all odd numbers of
blocks.
Case 2: There are 2 blocks. Using the zeroes in the sequence as dividers, we have a sample as
. We know there are 8 places for
s, which will be filled by
s if the
s don't fill them. This is
ways.
Case 3: Four blocks arranged. Using the same logic as Case 2, we have
ways to arrange four
blocks.
Case 4: No single blocks, only
blocks. There is simply one case for this, which is
.
Adding these four cases, we have as our final answer.
~Equinox8
Solution 4 (similar to #3)
Any valid sequence must start with a 0. We can then think of constructing a sequence as adding groups of terms to this 0, each ending in 0. (This is always possible, because every valid string ends in 0.) For example, we can represent the string 01011010110110 as: 0 - 10 - 110 - 10 - 110 - 110. To not have any consecutive 0s, we must have at least one 1 before the next 0. However, we cannot have 3 or more 1s before the next 0 because we cannot have 3 consecutive 1s. Consequently, we can only have one or two 1s. So we can have the groups: 10, 110.
After the initial 0, we have 18 digits left to fill in the string. Let the number of "10" blocks be x, and "110" be y. Then x and y must satisfy . We recognize this as a Diophantine equation. Taking
yields
. Since x and y must both be nonnegative, we get the solutions (9, 0); (6, 2); (3, 4); (0, 6). We now handle each of these cases separately.
(9, 0): Only one arrangement, namely all "01".
(6, 2): Of the 8, we choose 2 to be "001". This has 8C2=28 cases.
(3, 4): Of the 7, we choose 4 to be "001". This has 7C3=35 cases.
(0, 6): Only one arrangement, namely all "001".
Adding these, we have .
~Math4Life2020
Video Solution
For those who want a video solution: https://youtu.be/VamT49PjmdI
See Also
2019 AMC 10B (Problems • Answer Key • Resources) | ||
Preceded by Problem 24 |
Followed by Last Problem | |
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 |
2019 AMC 12B (Problems • Answer Key • Resources) | |
Preceded by Problem 22 |
Followed by Problem 24 |
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 |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.