| 1 | initial version |
Squaring equations may lead to wrong solutions but if you need the solution given in Wolframalpha you can do:
var('a b c') ;
eq=a == b - sqrt(b^2 - 1/4*c^2)
solve((eq-b)^2,b)
[b == 1/8*(4*a^2 + c^2)/a]
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.