Difference between revisions of "ZCubes/Fibonacci Lucas and Golden Ratio"
Jump to navigation
Jump to search
(Created page with "==Fibonacci Lucas and Golden Ratio== <br/> This video demonstrates that when we do certain computation of Fibonacci series and Lucas Series we see correlation with Golden Rati...") |
|||
Line 6: | Line 6: | ||
{{#ev:youtube|JrLwZxEW3eQ|480|left|Fibonacci Lucas and Golden Ratio}} | {{#ev:youtube|JrLwZxEW3eQ|480|left|Fibonacci Lucas and Golden Ratio}} | ||
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/> | <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/> | ||
+ | |||
+ | |||
+ | ==Lucas, Fibonacci, Golden Ratio Relationship == | ||
+ | |||
+ | <pre> | ||
+ | FIBONACCI(50) | ||
+ | |||
+ | LUCAS(50) | ||
+ | |||
+ | FIBONACCI(50) | ||
+ | .pieces(2) | ||
+ | .map(r=>r[1]/r[0]) | ||
+ | |||
+ | GOLDENRATIO() | ||
+ | |||
+ | LUCAS(50) | ||
+ | .pieces(2) | ||
+ | .map(r=>r[1]/r[0]) | ||
+ | |||
+ | ROUND((GOLDENRATIO())^(1..10)) | ||
+ | |||
+ | [(1+√5)/2,(1+√5)/2] | ||
+ | |||
+ | ops.on; | ||
+ | [(1+√5d100)/2,(1-√5d100)/2] | ||
+ | |||
+ | </pre> | ||
Revision as of 04:49, 18 August 2020
Fibonacci Lucas and Golden Ratio
This video demonstrates that when we do certain computation of Fibonacci series and Lucas Series we see correlation with Golden Ratio.
Video
Lucas, Fibonacci, Golden Ratio Relationship
FIBONACCI(50) LUCAS(50) FIBONACCI(50) .pieces(2) .map(r=>r[1]/r[0]) GOLDENRATIO() LUCAS(50) .pieces(2) .map(r=>r[1]/r[0]) ROUND((GOLDENRATIO())^(1..10)) [(1+√5)/2,(1+√5)/2] ops.on; [(1+√5d100)/2,(1-√5d100)/2]
<< About ZCubes
© Copyright 1996-2020, ZCubes, Inc.