Have anyone noticed that when we take 4 consecutive numbers in the Fibonacci list: f(x), f(x+1), f(x+2), f(x+3). We will have:
f(x) * f(x+3) - f(x+1) * f(x+2) =1 or -1
For example: 2 * 8 - 3 * 5 =1
p/s: It is just my view, I do not sure if it is always true.
Easy Math Editor
This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.
When posting on Brilliant:
*italics*
or_italics_
**bold**
or__bold__
paragraph 1
paragraph 2
[example link](https://brilliant.org)
> This is a quote
\(
...\)
or\[
...\]
to ensure proper formatting.2 \times 3
2^{34}
a_{i-1}
\frac{2}{3}
\sqrt{2}
\sum_{i=1}^3
\sin \theta
\boxed{123}
Comments
That is a great observation.
Let me suggest a way of continuing:
Can you list out the values of x where the expression is 1, and the values of x where the expression is -1?
Do you know Binet's formula which gives you the value of f(x)?
Hmm.........AM SPEECHLESS
oh yeah, just adding x, x+1, x+2, x+3 into the Binet's and then minus two products, I found that f(x) * f(x+3) - f(x+1) * f(x+2)= -1 * (-1)^x. Great. Thank you.