Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 2072 by BuGhouse.org: solve(x**(1/2)) returns []
http://code.google.com/p/sympy/issues/detail?id=2072
There are some problems with solving irrational equations. Some cases are
OK, some aren't.
from sympy import *
x = Symbol('x')
solve(x**(1/2))
[]
solve(x**(.5))
[0]
solve(sqrt(x))
[]
solve(x**(3/2))
[0]
solve(x**1.5)
[0]
solve(sqrt(x**3))
[]
--
You received this message because you are subscribed to the Google Groups
"sympy-issues" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sympy-issues?hl=en.