We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When giving a linear polynomial the zero solution is not found, Wheras for a nonlinear polynomial the zero solution is found.
using HomotopyContinuation @var x; # declare the variables x and y F = System([-2*x + x^3]) result = solve(F) result.path_results
Finds x=0 solution.
x=0
using HomotopyContinuation @var x; # declare the variables x and y F = System([-2*x]) result = solve(F) result.path_results
Does not find the x=0 solution.
The text was updated successfully, but these errors were encountered:
This is the same issue discussed in #543.
Sorry, something went wrong.
No branches or pull requests
When giving a linear polynomial the zero solution is not found, Wheras for a nonlinear polynomial the zero solution is found.
Finds
x=0
solution.Does not find the
x=0
solution.The text was updated successfully, but these errors were encountered: