For a positive integer n ≥ 3 plot n equally spaced points around a circle. Label one of them A , and place a marker at A . One may move the marker forward in a clockwise direction to either the next point or the point after that. Hence there are a total of 2 n distinct moves available; two from each point. Let a n count the number of ways to advance around the circle exactly twice, beginning and ending at A , without repeating a move.
Find the value of
a 2 0 1 7 + a 2 0 1 6 a 2 0 2 0 + a 2 0 1 9 .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Let n ≥ 4 and start with a 2 × n array of open points. As the marker moves around the circle the first time, record the points on the circle that the marker visits by filling in points in the first row, and do the same in the second row as the marker moves around the circle the second time. The figure below shows such a representation when the marker skips a point, skips another point, moves to the next point, skips a point, and moves to the next point. ∘ ∙ ∙ ∘ ∘ ∙ ∙ ∙ This example has three column types: open-closed (oc), closed-open (co), and closed-closed (cc). Arrays representing valid paths will only have these three column types because open-open columns represent places where the marker repeats a previous move or skips more than one point. Four more things can be said about the columns in arrays that represent valid paths:
(a) the n th column is oc or cc;
(b) no column type appears twice in a row;
(c) if the n th column is oc, then the first column cannot be be co; and
(d) if the n th column is cc, the first column cannot be cc.
The number of n -column arrays that satisfy (a) through (d) is a n . Counting arrays that meet requirements (a) and (b) is easy. There are two choices for the n th column that satisfy (a), and for each other column, there are two choices that satisfy (b), so altogether there are 2 n such arrays. Notice that an n -column array satisfies (a) and (b) but not (c) or (d) if and only if removing the first column produces an ( n − 1 ) -column array that satisfies (a) through (d). Therefore, the number of arrays that satisfy (a) and (b) but not (c) or (d) is a n − 1 , and hence a n + a n − 1 = 2 n . Applying this relationship leads to the desired value: a 2 0 1 7 + a 2 0 1 6 a 2 0 2 0 + a 2 0 1 9 = 2 2 0 1 7 2 2 0 2 0 = 2 3 = 8 .
Problem Loading...
Note Loading...
Set Loading...
This might seem like a difficult problem at first, but it's rather easily done using recurrence relations.
Let A n denote the number of ways to make two (seperate) laps around a circle with n dots on it, such that no move is made in both laps. When I say "seperate", I mean the two laps each start and end at the marker point. Note that A 0 = 1 .
Let a n denote the number of ways to make two nonseperate laps around a circle with n dots on it, such that no move is repeated, i.e. the first lap needn't necessarily end on the marker point.
We'll first find a recurrence relation for A n :
Let the first lap start with a 1 , i.e. the first move progresses 1 point. Then the second lap must start with a 2 . If the first lap's second move is a 1 , we have A n − 2 ways to finish out the two laps. If the first lap's second move is a 2 , we're in essentially the same case as just before, except we've already covered one extra point. Continuing on in this fashion, we see that A n = 2 ⋅ ( A n − 2 + A n − 3 + ⋯ + A 0 ) . The factor 2 comes from the fact that if we replace the first lap with the second and the second with the first, we get all the variants in which the first lap starts with a 2 instead. Solving this recurrence relation gives:
A n = 3 2 n + 2 ⋅ ( − 1 ) n .
Now to find a n :
After the first lap is completed, we have either stopped at the marker point, yielding A n solutions, or we have jumped over the marker point. In this case, (following a very similar thought process as in the A n case) if our first move was 1 , we have A n − 1 ways to finish. If it was 2 , we have 2 ( A n − 2 + A n − 3 + ⋯ + A 0 ) = A n − 1 solutions. Adding these up, we get:
a n = A n + 2 ⋅ A n − 1 + = 3 2 n + 1 − 2 ⋅ ( − 1 ) n .
Substituting, we get a 2 0 1 7 + a 2 0 1 6 a 2 0 2 0 + a 2 0 1 9 = 8 .