3 5 ----- >= ----- x + 2 2 - x
3/(x + 2) >= 5/(2 - x)
Or(And(x <= -1/2, -2 < x), 2 < x)
(2 < x)∨((x <= -1/2)∧(-2 < x))
(-2, -1/2] U (2, oo)
x in Union(Interval.Lopen(-2, -1/2), Interval.open(2, oo))