I have this statement:
I) The equation: $|x - 5 | = 1$
I want to solve the equation, but I have a question.
When I have the absolute value of an incognita and a number, $ | x - 5 | $.
How do I proceed ? Should I eliminate the absolute value as a parenthesis, without changing signs? like: $x - 5 = 1$
Or I should leave it as: $x + 5 = 1$ ( changing all signs to positive )
Remember: $$|x| = \begin{cases} x, & \text{if } x \ge 0\\[0.2cm] -x, & \text{if } x < 0 \end{cases}$$
This is true more generally also, not just for $|x|$ but for things like $|x-5|$: $$ |x-5| = \begin{cases} x - 5, & \text{if } x-5 \ge 0 \\[0.2cm] -(x-5), & \text{if } x - 5 < 0 \end{cases} $$
This is why the equation $|x-5| = 1$ gets broken up into $x-5 = 1$ and $-(x-5) = 1$. Then both of these equations are solved individually.