-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fib(n) is closest Int to (GoldenRatio)^n/sqrt(5)
- Loading branch information
Showing
2 changed files
with
8 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
;; Want to show (= (fib n) (/ (- (pow ϕ n) (pow ψ n)) (sqrt 5))) | ||
|
||
;; First, show by inspection that the equation holds for n=0 and n=1 | ||
|
||
;; Then, assume truth of the formula and show that the presumed expression for | ||
;; (fib (+ n 1)) is correct. I found this to be true. | ||
|
||
;; A snaphot of my (disorganized) work is in ex1.13.jpg |