1

I have this code that shows the area that satisfies inequalities but I need the lines (x=3 and y=x) to be shown on the graph as well.

Any help is appreciated!

My Code:

from sympy import *
x, y, z, t = symbols('x y z t')
p1 = plot_implicit(And( x > 3, y > x))

0 Answers0