I would like to solve the following system of equations:
$$y < -3 + 2x$$ $$y \ge 1-x$$ So I tried the following:
Solve[{y < -3 + 2 x, y >= 1 - x}, {x, y}]
But the following message appears: "The solution set contains a full-dimensional component; use Reduce for complete solution information"
I already plotted it and obtained the solution by the coordinates, but I want to get the specific result.
What can I do?
Thanks
