This commit is contained in:
jverzani
2026-06-03 14:34:02 -04:00
parent 395697be28
commit 6beb774dd4
8 changed files with 8 additions and 8 deletions

View File

@@ -1913,7 +1913,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
```