I'd like to have in Python the list of the conditions to have an non empty intersection of two intervals, where their bounds are only symbolic. For example for this input:
a,b,z = Symbols('a b z')
intersect([a,b],[a,b]/z)
the output should be the list of the conditions on z such that this intersection is non empty.
Thank you