aashnaag
Hey, I have the same question - I also input both positive and negative values of x and arrived at answer 2. I understand that the modulus is supposed to return only positive values, but if we remove the modulus, can someone explain why it's not -x-10 and x+10= both? In most such Qs, we use both values and arrive at solutions, in this case - 2.
You can also solve the question in the conventional way:
|x + 10| = 2x + 8
Case 1: x < -10In this case, x + 10 is negative, so |x + 10| = -(x + 10). So, we get -(x + 10) = 2x + 8, which gives x = -6. But x = -6 is not in the range x < -10, so we discard it.
Case 2: x ≥ -10In this case, x + 10 is non-negative, so |x + 10| = x + 10. So, we get x + 10 = 2x + 8, which gives x = 2. x = 2 is in the range and satisfies the equation, so it is valid.
Therefore, the equation has only one solution: x = 2.
Again, the method used in the solution is simply a shortcut to skip the full case analysis and solve the question faster.