You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
304 B
Markdown
10 lines
304 B
Markdown
2 years ago
|
## Solving part 2 with Maxima
|
||
|
|
||
|
1. Add '$' to the end of each line of input.
|
||
|
2. Replace `root`'s operator with '='.
|
||
|
3. Replace `humn`'s definition with x: `humn: x$`.
|
||
|
4. Load into maxima: `maxima --init-mac=input`
|
||
|
5. Evaluate `root` until `x` is visible: `root: root, eval;`.
|
||
|
6. Solve: `solve(root, x)`.
|
||
|
|