Ask Your Question
0

equation sqrt

asked 2013-11-06 18:31:54 +0200

anonymous user

Anonymous

updated 2013-11-06 20:07:15 +0200

calc314 gravatar image

I tried to solve with sage $$4=x+\sqrt{(x+1)(x+2)}+\sqrt{(x+2)(x+3)}+\sqrt{(x+3)(x+1)}$$ but it does work. Could you help me what shoud I enter in sage to get exact solution ? thank you

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2013-11-06 20:58:07 +0200

Shashank gravatar image

I don't think this equation can be solved analytically, but I may be wrong. Here is how I found the solution.

I used the following command to plot the function

plot(x+sqrt((x+1)*(x+2))+sqrt((x+2)*(x+3)+sqrt((x+3)*(x+1)))-4,x,-10,10)

I see that this is zero at two points near -7 and 0. So I typed the following commands to find the root in that region

find_root(x+sqrt((x+1)*(x+2))+sqrt((x+2)*(x+3)+sqrt((x+3)*(x+1)))-4,-1,5)
find_root(x+sqrt((x+1)*(x+2))+sqrt((x+2)*(x+3)+sqrt((x+3)*(x+1)))-4,-10,05)

This gave me -0.06139800265618307 and -7.529020910031573.

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-11-06 18:31:54 +0200

Seen: 398 times

Last updated: Nov 06 '13