I m trying to solve this system of nonlinear equations with Python:
2y3 + y2 - y5 - x4 + 2x3 - x2 = 0
(-4x3 + 6x2 - 2x) / (5y4 - 6y2 - 2y) = 1
Here s my code:
from sympy import symbols, Eq, solve
x, y = symbols( x y )
eq1 = Eq(2*y**3 + y**2 - y**5 - x**4 + 2*x**3 - x**2, 0)
eq2 = Eq((-4*x**3 + 6*x**2 - 2*x)/(5*y**4 - 6*y**2 - 2*y), 1)
points = solve([eq1, eq2], [x,y])
I know that this system of equations have 5 solutions, however I get none with this code. Someone know how I can proceed instead?
顺便提一下,第二个公式是第一个公式的衍生结果/结果,因此,基本上Im试图在紧凑的等数1中找到所有点,其中斜体的斜坡度为1。 第一个方程式的图表是这样。
我已经用Geogebra和5个答案解决这一问题。 我在试验沙尔时想看到,我是否能够利用任何沙尔图书馆来解决这个问题。
https://i.stack.imgur.com/NCQGj.png”rel=“nofollow noreferer”>。