Problem : Solve the equation $|2x-1| - |x+5| = 3$
In my attempt to solve the problem, I only manage to get one of the solutions.
Attempted Solution
$$\begin{equation} \begin{split} |x|-|y| & \leq |x-y| \\ \implies |2x-1| - |x+5| & \leq |(2x-1)-(x+5)| \\ \implies 3 &\leq |x-6| \\ \implies 3 &= |x-6| \\ \implies (x = 9) \ & \lor \ (x= 3 \ (\text{Reject})) \\ \implies x &= 9 \end{split} \end{equation} $$
However plugging the correct solution set to this equation is $x \in \{-\frac{7}{3}, 9\}$. Why does my attempted solution, not reach $-\frac{7}{3}$, as one of the possible solutions? Furthermore, how would you go about solving a problem of this nature?
Remember that $|x|=\begin{cases}x&\text{if}~x\geq 0\\ -x&\text{if}~x<0\end{cases}$
Now, we attempt to rewrite the original expression without absolute value signs. To do so, we ask ourselves when do we need to change the sign for each? On what regions will we need to change the sign of $|2x-1|$? The sign of $|x+5|$?
$2x-1<0$ when $x<\frac{1}{2}$.
$x+5<0$ when $x<-5$
We see then that the expression can be written without absolute value signs if broken into the following three regions: case 1:$x<-5$, case 2: $-5\leq x<\frac{1}{2}$, and case 3: $\frac{1}{2}\leq x$
$|2x-1|-|x+5| = \begin{cases} -(2x-1)-(-(x+5))&\text{when}~x<-5\\ -(2x-1)-(x+5)&\text{when}~-5\leq x<\frac{1}{2}\\ (2x-1)-(x+5)&\text{when}~\frac{1}{2}\leq x\end{cases}$
Setting each of these equal to three and solving for $x$ individually, and then checking that such a value for $x$ lies within its respective region will finish the problem.