Ask Your Question
0

solving radical equations with parameters

asked 2013-06-25 10:00:31 +0200

anonymous user

Anonymous

I would like to find the solutions $y$ to this type of equations: $$\left(1+x -\sqrt{(1+x)^2-4y}\right)^2=z$$ with conditions on $x,y,z$ (like $0\lt y\lt x\leq \frac18$ and $0\lt z\lt x^2$).

Using solve with the option to_poly_solve:

sage: solve((1+x - sqrt((1+x)^2-4*y))^2 == z, y, to_poly_solve=True)                                                 
[y == 1/2*x^2 - 1/2*(x + 1)*sqrt(x^2 + 2*x - 4*y + 1) + x - 1/4*z + 1/2]

does not seem to work because $y$ appears on the right side of the solution. I expect to find a solution like $$y=\frac14\left((1+x)^2-\left(1+x-\sqrt{z}\right)^2\right).$$

I also tried the same after specifying the conditions with assume(), without success.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2013-06-26 13:30:46 +0200

ndomes gravatar image

I tinkered with your equation and finally had something that looks like a solution. But this is not the way I expect solving equations with sage.

var('x y z')
expr = (1+x - sqrt((1+x)^2-4*y))^2
eqn1 = expr.expand().simplify_full() == z
show(eqn1)

eqn2 = eqn1.subtract_from_both_sides(2*x^2 +4*x -4*y +2)
eqn3 = eqn2.lhs()^2 == eqn2.rhs()^2
show(eqn3)

eqn4 = eqn3.expand()
eqn5 = eqn4.subtract_from_both_sides(eqn4.lhs())
show(eqn5)
sol = solve(eqn5,y)
for s in sol: show(s)
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2013-06-25 10:00:31 +0200

Seen: 581 times

Last updated: Jun 26 '13