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

@@ -261,15 +261,15 @@ We again just let `SymPy` do the work. A partial fraction decomposition is given
```{julia}
𝒒 = (x^2 - 2x - 3)
apart(1/𝒒)
q = (x^2 - 2x - 3)
apart(1/q)
```
We see what should yield two logarithmic terms:
```{julia}
integrate(1/𝒒, x)
integrate(1/q, x)
```
:::{.callout-note}