SOLUTION: The Fibonacci numbers f_n are defined by the equations f_1 = 1, f_2 = 1, f_(n+1) =f_n + f_(n−1) (n ≥ 2). Prove that gcd(f_(n+1), f_n) = 1 for all natural n.

Algebra ->  Test -> SOLUTION: The Fibonacci numbers f_n are defined by the equations f_1 = 1, f_2 = 1, f_(n+1) =f_n + f_(n−1) (n ≥ 2). Prove that gcd(f_(n+1), f_n) = 1 for all natural n.      Log On


   



Question 1030238: The Fibonacci numbers f_n are defined by the equations f_1 = 1, f_2 = 1, f_(n+1) =f_n + f_(n−1) (n ≥ 2). Prove that gcd(f_(n+1), f_n) = 1 for all natural n.
Answer by ikleyn(53937) About Me  (Show Source):
You can put this solution on YOUR website!
.
The Fibonacci numbers f_n are defined by the equations f_1 = 1, f_2 = 1, f_(n+1) =f_n + f_(n−1) (n ≥ 2).
Prove that gcd(f_(n+1), f_n) = 1 for all natural n.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Let us assume that  gcd(f%5Bn%2B1%5D,f%5Bn%5D) = d  is positive integer greater than 1.

Then both  f%5Bn%2B1%5D  and  f%5Bn%5D  are divisible by d.

Since  f%5Bn%2B1%5D = f%5Bn%5D + f%5Bn-1%5D  by the definition, then f%5Bn-1%5D is divisible by d.

In turn, since  f%5Bn%5D = f%5Bn-1%5D + f%5Bn-2%5D  by the definition, then f%5Bn-2%5D is divisible by d.

Moving back step by step, we then conclude that the entire chain (sequence) f%5Bn%2B1%5D, f%5Bn%5D, f%5Bn-1%5D, f%5Bn-2%5D, . . . , f%5B2%5D  consists 

of integers divisible by  d.  But  f%5B2%5D = 1  and  f%5B3%5D = 2  are relatively prime and have no common divisor.

This contradiction proves that our starting assumption was wrong. Hence,   gcd(f%5Bn%2B1%5D,f%5Bn%5D) = 1  for all natural n.

QED.


  //This type of proving is called  a proof by descent.