Compare commits
No commits in common. "e15f3ac5cbf2fe45c3e9756f28311a2f40d6c87d" and "a1fa31d547e9813a192aaab48f902d35767c7ef0" have entirely different histories.
e15f3ac5cb
...
a1fa31d547
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
layout: post
|
||||
title: "Fibbonacci"
|
||||
---
|
||||
|
||||
{% katexmm %}
|
||||
|
||||
When talking about recurisve sequences there is a poster child, the fibbonacci sequence. $F_{n} = F_{n-1} + F_{n-2}$, but did you know there is a closed, non-recursive, $O(1)$, formula for the fibbonacci numbers $F_n = \frac{\varphi^n-\psi^n}{\sqrt 5}$. Where $\varphi = bla$ and $\psi = bla$. This blog post will explore several ways to prove this identity, in order to not only verify the formula, but see how you could have discovered it, as well as uncovering a fun connection to a $O(n)$ algorithm and linear algebra.
|
||||
|
||||
{% endkatexmm %}
|
||||
|
||||
<!--more-->
|
||||
|
||||
{% katexmm %}
|
||||
|
||||
{% endkatexmm %}
|
Loading…
Reference in New Issue
Block a user