Consider the following system of two nonlinear (quadratic) equations with = 0.400256 and = 0.916403.
− + − + ^2 = 0
− + + − ^2 = 0
Plot the two implicit equations and observe that there are two solutions: one at the origin and the other one close to (1.3, 0.8).
Here is what my code looks like so far:
a=0.400256;
b=0.916403;
f = @(x) [-x(1) + a*x(1) - b*x(2) + b*x(1)^2];
f2 = @(x) [-x(2) + b*x(1) + a*x(2) - a*x(1)^2];
ezplot('f',[-10 10 -10 10]); hold on;
ezplot('f2',[-10 10 -10 10]);
grid