I had a blast reading through the many creative and varied approaches to solving Problem #1. There's something very fun and enlightening about seeing the same problem solved in different ways:
Not sure if this will become a regular thing, but I wanted to keep this rolling and present Problem #2. Again, this is from the wonderful Project Euler.
Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be:
1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ...
By considering the terms in the Fibonacci sequence whose values do not exceed four million, find the sum of the even-valued terms.
Look forward to seeing solutions in your language of choice!
Top comments (26)
Math to the rescue again!
To compute the n-th Fibonacci number, you can use the Binet formula:
where φ is the Golden Ratio, (1 + √5)/2. Also, it's given that f(0) = 0 and f(1) = 1, instead of having 1 and 2 as the first two Fibonacci's numbers.
In order to know which Fibonacci number is the highest below 4 million, we can solve by n... which isn't really easy. So, instead, we get to obtain a (pretty good) estimate by ignoring the second term (-1/φ)^n, which quickly approaches to 0, and solve:
In fact, f(33) = 3524578 and f(34) = 5702887.
Now, it's time to sum. First of all, let's notice that the even terms in the Fibonacci sequence happen once every three: f(0) = 0, f(3) = 2, f(6) = 8, f(9) = 34 and so on. So, we just have to sum every f(3 k) for k from 0 to 11. Using the known formula:
and using a = φ, h = 3 and n = 11, we have:
So, more in general, using JavaScript (for example):
Well... I guess we'll have to deal with some rounding problems 😅
But another O(1) solution, yay! 🎉
(By the way, -1/φ = 1 - φ if you were confused.)
Ah nice to see maths, I came up with the same thing however with a different approach of using generator functions.
Let us forget about fibonacci and think of the even fibonacci as a new series. (I probably think there would be a mathematical way of deducing it, but I just used brute force to find it out)
So the recurrence relation for this series would be
Fn= 4Fn-1 + Fn-2.
To find out the Sum of n elements in this series (let's call this Sn), we can rewrite the recurrence relation like this:
4Fn-1 = Fn - Fn-2
and we can move all n's by 1:
4Fn = Fn+1 - Fn-1
Now we can use the same logic to finder other n's:
4Fn = Fn+1 - Fn-1
4Fn-1 = Fn - Fn-2
4Fn-2 = Fn-1 - Fn-3
4Fn-3 = Fn-2 - Fn-3
...
...
4F4 = F5 - F3
4F3 = F4 - F2
4F2 = F3 - F1
4F1 = 4F1
For folks not familiar with this technique, we are simply doing to cancel out similar terms when we add all equations. (Note all items in pair are canceled out since
x - x = 0
).4Fn = Fn+1 -
Fn-14Fn-1 = Fn -
Fn-24Fn-2 =
Fn-1-Fn-34Fn-3 =
Fn-2-Fn-3...
...
4F4 =
F5-F34F3 =
F4- F24F2 =
F3- F14F1 = 4F1
4Fn + 4Fn-1 + 4Fn-2 + ... + 4F2 + 4F1 = Fn+1 + Fn - F2 + 3F1
If you notice the left hand side is essentially equivalent to
4Sn
Now we can finally write the relation between sum and series as:
The point is this avoids the for loop for summing all the values. Go ahead and try substituting values and you will find this sums it up. You will have to use
F(1) = 2
andF(2) = 8
.Now that we have removed one
for loop
, how do we get a direct formula for getting the Fn.This involves a bit more complicated math(for adventurous folks visit austinrochford.com/posts/2013-11-0...).
In short the closed form for this recurrence relation is
And if you compute the roots and follow along the url I posted above, you will end up with this
This gives us a function to compute Fn .
Now we can combine our summing and this formula to get a simple O(1) arithmetic function to get the sum. Side note: Running a for loop will take much less brain time :P
I applaud your solution, fellow math lover! 👏
These are really great solutions. I think it would be worthwhile for you to publish them as standalone articles. One quibble: I don't think this is O(1) since arithmetic operations are not constant time as a function of input, although I guess as long as we’re sticking with floating point numbers O(1) is probably valid.
You're correct that addition is
O(log N)
for a number N, orO(log n)
where n is the number of digits. The power functionx^n
also has aO(log N)
time complexity ifN
is an integer (I presume it's also linear on number of significant bits).Given fixed sized types on a computer though I believe most of these become constant time, as the inputs have a fixed upper limit on bits. It probably involves an unrolled loop, or fixed iterations on a CPU.
Yes, indeed. I am in fact using just plain double precision numbers there, and they do take a fixed amount of ticks for common operations like those on a modern CPU.
I wouldn't be so certain if I used JavaScript's BigInt numbers (or rather, I would be certain of the opposite).
Thank you for the explanation!
OOhh Project Euler problems are my favorite!
I tried timing your algorithm, with couple other implementations I wrote. One was recursive, one was iterative. Check this out.
The output was interesting!
I went for what I thought was an interesting solution with Ruby this time. It uses a lazy enumerable over an infinite range and calculates the sum and the fibonacci numbers until the end condition is met.
This uses constant space, so does not compute an array of fibonacci numbers, just holds the latest two and the current sum. It runs in O(n) time and for 4,000,000 took less than 0.2s on my Macbook Pro.
SQL
I have an answer, but I'm not 100% happy with it. It's not dynamic enough, but I need to do some more digging into Cycles it seems :)
My original solution (Ruby)
I also thought it would be fun to try it as a lazy enumerator, though I still like my original solution better.
In Javascript using filter and reduce.
Haskell:
A simple iterative Rust Solution.
Takes about 0.9 sec, and optimized one takes 0.35 sec
Uses recursion, can someone explain how to calculate the complexity?
Ruby✨💎✨
Solved a few of the Euler challenges a few years ago (when I was still in high school, because what else would you do?) using PHP.
Solution: 4613732
$sum = 0;
$curr = 2;
$prev = 1;
$goal = 4000000;
while ($curr < $goal) {
if($curr % 2 == 0) {
$sum += $curr;
}
$tmp = $prev;
$prev = $curr;
$curr += $tmp;
}
echo $sum;
Some comments may only be visible to logged-in visitors. Sign in to view all comments.