You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Symbolics.jl can't solve this equation but if I multiply both sides by x^3 then it can. Wolfram Alpha can solve both. Symbolics.jl's docs say it can do polynomial equations, what's the problem here?
[2edaba10] Nemo v0.46.2
[0c5d862f] Symbolics v6.11.0using Symbolics, Nemo
@variables x y
julia>symbolic_solve(1/x^2~1/y^2-2/x^3* (x-y), x)
┌ Warning: This expression cannot be solved with the methods available to ia_solve. Try a numerical method instead.
└ @ Symbolics ~/.julia/packages/Symbolics/6WqId/src/solver/ia_main.jl:176
julia>symbolic_solve( (1/x^2* x^3~ (1/y^2-2/x^3* (x-y)) * x^3), x)
[ Info: Assuming (y^2) !=0
[ Info: Assuming (y^2) !=02-element Vector{SymbolicUtils.BasicSymbolic{Real}}:
y
-2y
The text was updated successfully, but these errors were encountered:
Symbolics.jl can't solve this equation but if I multiply both sides by
x^3
then it can. Wolfram Alpha can solve both. Symbolics.jl's docs say it can do polynomial equations, what's the problem here?The text was updated successfully, but these errors were encountered: