Difference between revisions of "2000 AMC 12 Problems/Problem 4"

m
Line 1: Line 1:
 
== Problem ==
 
== Problem ==
The Fibonacci sequence <math>1,1,2,3,5,8,13,21,\ldots </math> starts with two 1s, and each term afterwards is the sum of its two predecessors. Which one of the ten digits is the last to appear in the units position of a number in the Fibonacci sequence?
+
The [[Fibonacci sequence]] <math>1,1,2,3,5,8,13,21,\ldots </math> starts with two 1s, and each term afterwards is the sum of its two predecessors. Which one of the ten [[digit]]s is the last to appear in the units position of a number in the Fibonacci sequence?
  
 
<math> \mathrm{(A) \ 0 } \qquad \mathrm{(B) \ 4 } \qquad \mathrm{(C) \ 6 } \qquad \mathrm{(D) \ 7 } \qquad \mathrm{(E) \ 9 }  </math>
 
<math> \mathrm{(A) \ 0 } \qquad \mathrm{(B) \ 4 } \qquad \mathrm{(C) \ 6 } \qquad \mathrm{(D) \ 7 } \qquad \mathrm{(E) \ 9 }  </math>
  
 
== Solution ==
 
== Solution ==
Looking at the Fibonacci Sequence in <math>\bmod{10}</math>:
+
Note that any digits other than the units digit will not affect the answer.  So to make computation quicker, we can just look at the Fibonacci sequence in <math>\bmod{10}</math>:
  
 
<math>1,1,2,3,5,8,3,1,4,5,9,4,3,7,0,7,7,4,1,5,6,....</math>
 
<math>1,1,2,3,5,8,3,1,4,5,9,4,3,7,0,7,7,4,1,5,6,....</math>
Line 13: Line 13:
 
== See also ==
 
== See also ==
 
* [[2000 AMC 12 Problems]]
 
* [[2000 AMC 12 Problems]]
*[[2000 AMC 12/Problem 3|Previous Problem]]
+
*[[2000 AMC 12 Problems/Problem 3|Previous Problem]]
*[[2000 AMC 12/Problem 5|Next problem]]
+
*[[2000 AMC 12 Problems/Problem 5|Next problem]]
  
 
[[Category:Introductory Combinatorics Problems]]
 
[[Category:Introductory Combinatorics Problems]]

Revision as of 14:20, 16 November 2006

Problem

The Fibonacci sequence $1,1,2,3,5,8,13,21,\ldots$ starts with two 1s, and each term afterwards is the sum of its two predecessors. Which one of the ten digits is the last to appear in the units position of a number in the Fibonacci sequence?

$\mathrm{(A) \ 0 } \qquad \mathrm{(B) \ 4 } \qquad \mathrm{(C) \ 6 } \qquad \mathrm{(D) \ 7 } \qquad \mathrm{(E) \ 9 }$

Solution

Note that any digits other than the units digit will not affect the answer. So to make computation quicker, we can just look at the Fibonacci sequence in $\bmod{10}$:

$1,1,2,3,5,8,3,1,4,5,9,4,3,7,0,7,7,4,1,5,6,....$

The last digit to appear in the units position of a number in the Fibonacci sequence is $6 \Rightarrow C$.

See also