Ask Your Question
1

solve() simple equ, something is missing ?

asked 2020-06-14 19:29:58 +0200

ortollj gravatar image

HI

Sagemath 9.1 notebook ,OS :Ubuntu 18.04

what should i add or precise, so that SageMath solve this equation ?:

assume(x,'real')
solve (sqrt(-x^2 + 1)==-4/3*x - 25/36,x)

output :[x == -3/4*sqrt(-x^2 + 1) - 25/48] ?

on wolfram alpha

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2020-06-14 19:51:36 +0200

rburing gravatar image

Try

sage: solve(sqrt(-x^2 + 1)==-4/3*x - 25/36, x, to_poly_solve=True)
[x == -1/20*sqrt(119) - 1/3]

or

sage: solve(sqrt(-x^2 + 1)==-4/3*x - 25/36, x, algorithm='sympy')
[x == -1/20*sqrt(119) - 1/3]
edit flag offensive delete link more

Comments

Thank you @rburing

ortollj gravatar imageortollj ( 2020-06-14 20:45:29 +0200 )edit

Your Answer

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

Add Answer

Question Tools

1 follower

Stats

Asked: 2020-06-14 19:29:58 +0200

Seen: 187 times

Last updated: Jun 14 '20