4 a 8 points Use induction to prove that F3n is even for eve
     4. (a) (8 points) Use induction to prove that F3n is even for every positive integer n, where Fn denotes the nth Fibonacci number. Assume F (b) (2 points Is the 100th Fibonacci number even or odd? You don\'t need a rigorous proof, but give a brief explanation of how you arrived at your answer.  
  
  Solution
4.Answer:
a)
Assumption: F1=F2=1
By using recursive formula,
Fn+1=Fn-1+Fn-2
When n=1,
F3(1)=F2+F1=1+1=2
Hence F3n is even for n=1.
For all positive integers consider, n+1
F3(n+1)=F3n+3
=F3n+2+F3n+1
=F3n+1+F3n+F3n+1
=2F3n+1+F3n
Therefore, F3n is even for every positive integer of n as n denotes nth number of fibonacci series.
b)
F1=F2=1
By using recursive formula,
Fn+1=Fn-1+Fn-2
F3=F2+F1=1+1=2
F4=F3+F2=2+1=3
F5=F4+F3=3+2=5
F6=F5+F4=5+3=8
The series 1,1,2,3,5,8
and the pattern is odd, odd, even,odd, odd, even.
Every 3rd number is even in the series. Hence the number divisible by 3 will be even else it will be odd.
100 is not divisible by 3 and therefore 100th fibonacci series is an odd number.

