Ask Your Question
1

How to solve x=y^(1/3)

asked 2012-05-10 17:27:28 +0200

Jamieofm gravatar image

This might be a trivial question. I am a Sage newbie. I have figured out so far how to get sage to solve equations like:

x==y^2 for y (answer - y=sqrt(x) x==y^3 for y (answer - y=x^(1/3)

But i cant get sage to solve x==y^(1/3) for example....essentially where the power is not an integer....possible ?

Thanks

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2012-05-10 17:49:09 +0200

calc314 gravatar image

You may need to give it some assumptions. For example, the following will solve your equation.

var('x,y')
assume(x>0)
solve(x==y^(1/3),y)
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: 2012-05-10 17:27:28 +0200

Seen: 21,598 times

Last updated: May 10 '12