1 | initial version |
You should provide some assumptions about x
so that the equality becomes true, for example:
sage: assume(x>0)
sage: bool(sqrt(x^3)/sqrt(x^2) == sqrt(x))
True
2 | No.2 Revision |
You should provide some assumptions about x
so that the equality becomes true, for example:
sage: assume(x>0)
sage: bool(sqrt(x^3)/sqrt(x^2) == sqrt(x))
True
Note however that the assumption system is pretty weak.