8000 add javascript implementation · BrentMat/Algorithms-Explanation@333aae7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 333aae7

Browse files
authored
add javascript implementation
1 parent 8fdfa62 commit 333aae7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Basic Math/Fibonacci_Numbers.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,13 @@ In mathematics, the Fibonacci numbers commonly denoted F(n), form a sequence, ca
44

55
`[0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ...]`
66

7-
87
## Applications
98

109
Finding
1110
```N-th``` member of this sequence would be useful in many Applications:
1211

1312
- Recently Fibonacci sequence and the golden ratio are of great interest to researchers in many fields of
1413
science including high energy physics, quantum mechanics, Cryptography and Coding.
15-
1614

1715
## Steps
1816

@@ -23,6 +21,7 @@ science including high energy physics, quantum mechanics, Cryptography and Codin
2321
## Example
2422

2523
Find ```8-th``` member of Fibonacci
24+
2625
### Step 0
2726
```
2827
| F(n+1) F(n) |
@@ -58,12 +57,13 @@ F(8)=21
5857

5958
## Implementation
6059

61-
- [C++](https://www.tutorialspoint.com/cplusplus-program-to-find-fibonacci-numbers-using-matrix-exponentiation)
60+
- [C++](https://www.tutorialspoint.com/cplusplus-program-to-find-fibonacci-numbers-using-matrix-exponentiation)
61+
- [Javascript](https://github.com/TheAlgorithms/Javascript/blob/80c2dc85d714f73783f133964d6acd9b5625ddd9/Maths/Fibonacci.js)
6262

6363
## Video URL
6464

65-
- [Youtube](https://www.youtube.com/watch?v=EEb6JP3NXBI)
65+
- [Youtube](https://www.youtube.com/watch?v=EEb6JP3NXBI)
6666

6767
## Others
6868

69-
- [Proof](https://brilliant.org/wiki/fast-fibonacci-transform/)
69+
- [Proof](https://brilliant.org/wiki/fast-fibonacci-transform/)

0 commit comments

Comments
 (0)
0