Skip to content
New issue

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

zero solution not found for linear polynomial #596

Open
oameye opened this issue Oct 26, 2024 · 1 comment
Open

zero solution not found for linear polynomial #596

oameye opened this issue Oct 26, 2024 · 1 comment

Comments

@oameye
Copy link
Contributor

oameye commented Oct 26, 2024

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.

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.

@PBrdng
Copy link
Collaborator

PBrdng commented Oct 30, 2024

This is the same issue discussed in #543.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants