Plotting Inequalities in Sympy Python

307 Views Asked by At

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

There are 0 best solutions below