I cant find the solution of these 2 equations with matlab

80 Views Asked by At

$2(x)^2 + (x - y)^3 - 2= 0$

$y - (x - y)^3 + 10 = 0$

I tried to solve these equations by using matlab fsolve command.

Then matlab found no solution.

Can someone solve please?

1

There are 1 best solutions below

3
On BEST ANSWER

Plug in the value of $(x-y)^3$ from the second equation into the first. You will then see that all solutions lie on the parabola: $$y = -8 - 2x^2$$ Now plug $y$ into the second equation to get a sixth order polynomial, and see if you can get the numerical solutions for that.

For reference, it appears there are no real solutions.