Why does: Reduce[4 x^3 - 9 x^2 + 4 = 0, x] Yield: Set::write: Tag Plus in 4-9 x^2+4 x^3 is Protected. >> Reduce::naqs: 0 is not a quantified system of equations and inequalities. >> ??
Why does: D[4 x - 3 x^3 + x^4, x] Give an answer of 0?
?x gives Global`x So it's not that x is evaluating to some number. This is also proved by typing 4 x^3 - 9 x^2 + 4 and getting 4 - 9 x^2 + 4 x^3 back.
By the way: D[x^4,x] results in 4x^3
And
D[x^4-3x^3,x] results in -9x^2+4x^3
Only when I append the "+4x" to the expression does the program seem to lose its mind!