|
|
|
|
|
by Tainnor
1114 days ago
|
|
Well, the easiest way to write 1 + x * 2 - 3 % x
would just be "x-2".But if we're talking more generally, if I have an expression like 2*x^3 + x^2 - 5*x
a trained eye immediately can read off the coefficients of the polynomial and I'm not sure if that's true of (+ (* 2 (^ x 3)) (^ x 2) (- (* 5 x)))
|
|