Solve y/(y-2) <= 2
The solution says that it divides into 2 cases.
Case 1, y>2
then the inequality becomes
y <= 2(y-2)
Case 2, y<2
then the inequality becomes
y >= 2(y-2)
Why it is needed to do so? why the inequality sign becomes <= in Case 1
and becomes >= in Case 2?