I have a expression:
13 + 6 Sqrt[6 - x] x == x
I want to simplify the Sqrt to be -169+26 x+215 x^2-36 x^3==0.But Simplify[13 + 6 Sqrt[6 - x] x == x, Assumptions -> x < 6] don't work.And I have tried ComplexityFunction:
FullSimplify[13 + 6 Sqrt[6 - x] x == x,
ComplexityFunction -> (1000 Count[#, _Sqrt, {0, Infinity}] +
LeafCount[#] &)]
I can get anything still.So how to elminate the Sqrt?
Sqrt.I get it by((x-13)/6x)^2+x-6==0//FullSimplify//Expand– yode Feb 21 '17 at 15:06Sqrtand the equation you have in comments. How did you get from((x - 13) / 6 x)^2 + x - 6 == 0to13 + 6 Sqrt[6 - x] x == x? – MarcoB Feb 21 '17 at 15:08x - 6to right of the equal sign,then execute sqrt...and so on – yode Feb 21 '17 at 15:12-169 + 26 x + 215 x^2 - 36 x^3 == 0. – Szabolcs Feb 21 '17 at 15:156 Sqrt[6 - x] x == x - 13. – Szabolcs Feb 21 '17 at 15:26((x-13)/6x)^2+x-6==0//FullSimplify//Expand? – yode Feb 21 '17 at 15:32(x-13)/(6x), not(x-13)/6x. – Szabolcs Feb 21 '17 at 15:40