Monday, August 25, 2014

Project Euler Problem 25 Solution

1000-digit Fibonacci number

Problem 25

The Fibonacci sequence is defined by the recurrence relation:
Fn = Fn−1 + Fn−2, where F1 = 1 and F2 = 1.
Hence the first 12 terms will be:
F1 = 1
F2 = 1
F3 = 2
F4 = 3
F5 = 5
F6 = 8
F7 = 13
F8 = 21
F9 = 34
F10 = 55
F11 = 89
F12 = 144
The 12th term, F12, is the first term to contain three digits.
What is the first term in the Fibonacci sequence to contain 1000 digits?


ANSWER: 4782

Learning:

#1 Approach: Math concept

Golden Ratio for fibonacci number:


it is n'th fibonacci number, larger the value of n, better is convergence.

we know 1000 digit number is at least, 10^999

we can use the relation that,

F(n) >= 10^999

and solve the equation for n, we get 4782



#2 Approach: standard recursive fibonacci function

#function: find i'th fibonnaci number
def get_fibo(n):
  if n == 1 or n == 0 or n== 2:
    return 1

  return get_fibo(n-1) + get_fibo(n-2)

i = 1
while(1):
  j = get_fibo(i)
  if len(str(j)) == 1000:
    print j
    break
  i = i + 1

NOTE: TAKES HUGE TIME

#3 Stay Tuned to efficient programmable approach :)

No comments:

Post a Comment