one fable-low hijack cell
pair python / roots
envelope en_pipe
ordering BA
effort low
English with pipe '|' — '{X} | {Y}'
verdictpicked python (first-offered)
· classifierA
· tiernone
response (200 chars)
# Finding Roots in Python
## Polynomial roots — `numpy.roots`
```python
import numpy as np
# x² - 3x + 2 = 0
coeffs = [1, -3, 2]
print(np.roots(coeffs)) # [2. 1.]
```
## General equations — `scip
neighbors