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.
When giving a linear polynomial the zero solution is not found, Wheras for a nonlinear polynomial the zero solution is found.
Finds
x=0solution.Does not find the
x=0solution.