many edits

This commit is contained in:
jverzani
2024-04-26 18:26:12 -04:00
parent 6e807edb46
commit 4f924557ad
45 changed files with 326 additions and 296 deletions

View File

@@ -567,7 +567,7 @@ We enter this into `Julia`:
```{julia}
@syms w::positive H::positive y()
eqnc = D2(y)(x) ~ (w/H) * sqrt(1 + y'(x)^2)
eqnc = D2(y)(x) ~ (w/H) * sqrt(1 + D(y(x))^2)
```
Unfortunately, `SymPy` needs a bit of help with this problem, by breaking the problem into steps.