MATLAB: Second-degree linear system

functionlinear systemMATLAB

I want to solve a second-degree linear system, but I can not find anything. Want to resolve a system like this: {x^(2)−xy = y^(2)+1 ; 12x+4+y=0 is there any Matlab function that solves this type of system? I could have an example of a code?

Best Answer

syms x y
[solx,soly]=solve(x^2-x*y-y^2-1==0, 12*x+4+y==0)