Is it possible to draw two graphs in one picture?
For example: I have inequation:
abs(x^2 + 3x + 2) < abs(x^3 + 1)
I know how to draw one graph at once:
y = abs(x^2 + 3*x + 2)
ezplot(y)
y1 = abs(x^3 + 1)
ezplot(y1)
But I would like to draw both graph on the same picture, so I can...