pdf files; edits

This commit is contained in:
jverzani
2024-10-15 17:17:25 -04:00
parent c1629e4f1a
commit 30086f9517
50 changed files with 1307 additions and 86 deletions

View File

@@ -381,8 +381,8 @@ For a polynomial with symbolic coefficients, the difference between the symbol a
#| hold: true
@syms a b c
p = a*x^2 + b*x + c
q = sympy.Poly(p, x) # identify `x` as indeterminate; alternatively p.as_poly(x)
roots(q)
q1 = sympy.Poly(p, x) # identify `x` as indeterminate; alternatively p.as_poly(x)
roots(q1)
```
:::{.callout-note}