How do you solve abs(6x+7)=5x+2?
1 Answer
Apr 1, 2015
The absolute value operation does:
1 - If the inner value of absolute value is non-negative, it returns the value.
2- If the inner value of absolute value is negative, it returns
Our given equality is:
- If
6x+7 >=0 then absolute value opeariton will return6x+7
There is an important trick when it comes to absolute value operation. Always test the result with the if condition.
- If
6x+7<0 then absolute value opeariton will return-(6x+7)
Again, lets test the if condition.
So