Answer:
Explanation:
|x-1|=8
if (x-1) >= 0 meaning x >= 1
then |x-1| = x-1
and then the solution of the equation is
x-1=8
<=> x = 9
if (x-1) <= 0 meaning x <= 1
then |x-1| = -(x-1) = -x+1
so the solution of the equation is
-x+1=8
<=> -x = 7
<=> x = -7
so the solutions are -7 and 9
answer C
do no hesitate if you need further explanation
thank you