Question 938447
{{{abs(2x-2)>2}}}
{{{2*abs(x-1)>2*1}}}
{{{abs(x-1)>1}}}


If you want the expression to be y, then 
{{{y=abs(x-1)}}} is {{{y=x-1}}} when x-1>=0 or {{{x>=1}}};
and
{{{y=-x+1}}} when x-1<0 or {{{x<1}}}.


One of those does have a corresponding value for x when y=2.  


CHECK y=2 for the condition x>=1.
x=y-1
x=2-1
x=1
Intersection at (1,2).
CHECK y=2 for condition x<1.
x=-y+1
x=-2+1
x=-1
Seems not allowed for this condition.


Just one intersection at (1,2).