What is the procedure to solve equations that have multiple expression in absolute values?
Are there popular methods to solve them?
I recently learned, $$|x|≠ ± x $$
So I'm confused as to how does one solve equation that has multiple expression in absolute values like
$$|3x+4| +|2x-1| - \frac{1}{4} |x+5| = 5$$
– Thanks :)
In the range $x<-5$ (note that when $x=-5, x+5=0$), we have $$|neg|+|neg|-\frac14|neg|=5$$ as all three expressions within the mod signs are negative in that range.
Thus we can solve: $$-(3x+4)-(2x-1)+\frac14(x+5)=5$$ and see that $x=-\frac{27}{19}\not<-5$ and therefore in this range there are no solutions.
In the range $-5<x<-\frac43$ (note that when $x=-\frac43, 3x+4=0$), we have $$|neg|+|neg|-\frac14|pos|=5$$ So we solve in the range $-5<x<-\frac43$: $$-(3x+4)-(2x-1)-\frac14(x+5)=5$$ and achieve $x=-\frac{37}{21}$ which IS in the correct range and therefore a solution.
Can you continue this?