Is |x| < 1 ?
(1) |x + 1| = 2|x - 1|
(2) |x - 3| > 0
I disagree with Sudhan's treatment of (1). Here's how to figure this one out:
Statement (2):
Yes, it tells us that x does not equal 3. INSUFFICIENT.
Statement (1):
We'd like to be able to solve for x, but those pesky absolute value bars are getting in the way. We obviously can't just remove the bars, however. One way to approach it is to consider specific intervals for x and alter the equation accordingly.
The intervals to consider are given by the absolute value expressions themselves. Namely, |x + 1| has a "critical value" at x=-1, since this is where the (x+1) is zero. Less than -1, (x+1) is negative, more than -1, (x+1) is positive. Similarly, |x - 1| has a critical value at x=1. So we can "open up" this absolute value equation by expressing it as three different equations over the three intervals x<-1, -1<x<1, and x>1. Let's consider each case:
Case x<-1
|x + 1| = 2|x - 1|
In this interval, (x+1) yields a negative number, so we can replace |x+1| with its opposite, or -(x+1). (x+1) also yields a negative number, so we can replace |x+1| with its opposite, or -(x-1). This gives the following equation:
-(x+1) = -2(x-1)
-x-1 = -2x+2
x=3
Looks like we have a solution, but in fact we don't. We started with the assumption that x<-1, so ending with x=3 means there is no solution here. On to the next case.
Case -1<x<1
|x + 1| = 2|x - 1|
Here, (x+1) is positive, so |x+1| is simply (x+1). However, (x-1) is negative, so |x-1| is equivalent to -(x-1). Resulting equation:
x+1 = -2(x-1)
x+1 = -2x+2
x = 1/3
In this case, the solution lies in the interval -1<x<1, so we have a viable solution. But there's still another case to consider...
Case x>1
|x + 1| = 2|x - 1|
Here, both expressions inside the absolute values are going to yield positive values, so we can simply drop the absolute value bars.
x+1 = 2(x-1)
x+1 = 2x-2
x=3
This solution lies in the interval x>1, so it's also a viable solution.
In summary, the solution to |x + 1| = 2|x - 1| is x=1/3 or x=3. This leads to an INSUFFICIENT result.
Statements (1) and (2):
Combining these results, we have x=1/3. SUFFICIENT.
The correct answer is C.
Rey