Question 1115216
<br>
Think of |a-b| as the distance from a to b.  Then the statement
{{{abs(x-a)<=b}}}
means the distance between x and a is at most b.<br>
So for your example "the distance between x and -14 is at most 14" becomes
{{{abs(x-(-14))<=14}}}
or
{{{abs(x+14)<=14}}}