I am trying to see if the two graphs intersect each other or not. If they intersect, I want to know the points too. One is an exponential function in and the other is a polynomial function in two variables $x$ and $y$. I was using Solve to do the same before when both were polynomial functions. Now, Solve just returns the arguments.
Solve[4 + 0.2 Exp[-x] == (-0.38 x^2 -
x (0.05 (0.2 - 1.6 y) + 0.2 (-2.9 - 0.2 y)) -
0.8 y (0.15 - 0.2 y + 0.9 (-3 + 2 y)))/(0.2 x + 0.8 y) && x >= 0 &&
y >= 0, {x, y}]
Can you please guide me with this?


xandy? Also, you are now solving a transcendental equation, andSolve[]is not very good at those. If you are plotting them anyway, have a look atMeshFunctions. – J. M.'s missing motivation Mar 31 '19 at 00:00MeshFunctions– gaganso Mar 31 '19 at 00:17Solve[4 + 0.2 Exp[-x] == (-0.38 x^2 - x (0.05 (0.2 - 1.6 y) + 0.2 (-2.9 - 0.2 y)) - 0.8 y (0.15 - 0.2 y + 0.9 (-3 + 2 y)))/(0.2 x + 0.8 y), {y}]– Michael E2 Mar 31 '19 at 13:28Solve[]is a bit cleaner here.NSolve[]replacese^mwith2.71828^m. – mjw Mar 31 '19 at 17:46