Merge pull request #157 from jverzani/v0.26

V0.26
This commit is contained in:
john verzani
2026-06-03 14:36:01 -04:00
committed by GitHub
15 changed files with 190 additions and 20 deletions

View File

@@ -1919,7 +1919,7 @@ Archimedes, in finding bounds on the value of $\pi$ used $n$-gons with sides $12
```{julia}
#| hold: true
x = r * tan(theta/2)
n = 2PI/theta # using PI to avoid floaing point roundoff in 2pi
n = 2PI/theta # using PI to avoid floating point roundoff in 2pi
# C < n * 2x
upper = n*2x
```