First time here? Check out the FAQ!

Ask Your Question
1

solve() simple equ, something is missing ?

asked 4 years ago

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

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
3

answered 4 years ago

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]
Preview: (hide)
link

Comments

Thank you @rburing

ortollj gravatar imageortollj ( 4 years ago )

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: 4 years ago

Seen: 244 times

Last updated: Jun 14 '20