Do not understand the meaning of the output given by Mathematica to this equation:
Solve[x^3-6x^2+x-32==0,x]//FullSimplify
(* {{x->Root[-32+#1-6#1^2+#1^3 &,1]},{x->Root[-32+#1-6#1^2+#1^3 &,3]},{x->Root[-32+#1-6#1^2+#1^3 &,2]}} *)
Do not understand the meaning of the output given by Mathematica to this equation:
Solve[x^3-6x^2+x-32==0,x]//FullSimplify
(* {{x->Root[-32+#1-6#1^2+#1^3 &,1]},{x->Root[-32+#1-6#1^2+#1^3 &,3]},{x->Root[-32+#1-6#1^2+#1^3 &,2]}} *)
Root[]and the duplicate question I linked to. In your case, since you have a cubic equation, remove theFullSimplify[]and probably add the optionCubics -> TruetoSolve[]. – J. M.'s missing motivation Feb 17 '16 at 02:35Solve[x^3 - 6 x^2 + x - 32 == 0, x] // Simplifywill give a simpler form in terms of radicals. – Bob Hanlon Feb 17 '16 at 03:51