Skip to content

Commit cb5c589

Browse files
committed
Binet's formula and thin lens equation
1 parent a642955 commit cb5c589

File tree

5 files changed

+49
-1
lines changed

5 files changed

+49
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Welcome to [https://stemformulas.com/](https://stemformulas.com/), the site with the goal of being the best place in the world to look for STEM-related formulas.
66

77
## Features:
8-
- 94 formulas and counting (we gotta pump those numbers up)
8+
- 96 formulas and counting (we gotta pump those numbers up)
99
- The search bar is in focus on site load for quick searching
1010
- The / key can be used to open the search on any page
1111
- LaTeX can be copied by clicking on it on any formula's page
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: "Binet's Formula"
3+
description: "The closed form formula for calculating the n-th Fibonacci number."
4+
summary: "The closed form formula for calculating the n-th Fibonacci number."
5+
tags: ["math"]
6+
date: 2025-01-06
7+
latex: "F_n = \\frac{\\left(\\frac{1+\\sqrt{5}}{2} \\right)^n - \\left(\\frac{1-\\sqrt{5}}{2} \\right)^n}{\\sqrt{5}}"
8+
---
9+
10+
{{< katex >}}
11+
12+
Binet's formula allows you to calculate the n-th Fibonacci number, \\( \small F_n \\), with a closed form solution. It is as follows:
13+
14+
$$ F_n = \frac{\left(\frac{1+\sqrt{5}}{2} \right)^n - \left(\frac{1-\sqrt{5}}{2} \right)^n}{\sqrt{5}} $$
15+
16+
Where
17+
18+
* \\( \small n \\) is the index of the Fibonacci number you want to calculate.
19+
20+
## Sources
21+
22+
- [Art of Problem Solving](https://artofproblemsolving.com/wiki/index.php/Binet%27s_Formula)
78.7 KB
Loading
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: Thin Lens Equation
3+
description: "The equation for thin lenses relating focal length, object distance and image distance."
4+
summary: "The equation for thin lenses relating focal length, object distance and image distance."
5+
tags: ["physics", "optics"]
6+
date: 2025-01-06
7+
latex: \frac{1}{f} = \frac{1}{d_o} + \frac{1}{d_i}
8+
---
9+
10+
{{< katex >}}
11+
12+
For light passing near the optical axis of a thin lens, the lens equation relates the focal length of the lens, the object distance, and the image distance. The equation is given by:
13+
14+
$$ \frac{1}{f} = \frac{1}{d_o} + \frac{1}{d_i} $$
15+
16+
Where
17+
18+
* \(\small f\) is the focal length of the lens,
19+
* \(\small d_o\) is the object distance, and
20+
* \(\small d_i\) is the image distance.
21+
22+
All distances are measured from the lens, and the distances and focal length can be positive or negative. A positive focal length indicates a converging lens, while a negative focal length indicates a diverging lens. If the image distance is positive, the image is real and on the opposite side of the lens from the object. If the image distance is negative, the image is virtual and on the same side of the lens as the object.
23+
24+
## Sources
25+
26+
- [HyperPhysics](http://hyperphysics.phy-astr.gsu.edu/hbase/geoopt/lenseq.html)
35.6 KB
Loading

0 commit comments

Comments
 (0)