cunu-
Not sure if this detail will help you out, but I'll give it a shot.
Test: Is a>0?
(Supposition 1) a^3 - a < 0
I usually try to find the values where the function is equal to zero. If you know those values, all values in between will work out either < or > zero. For example, if two of these values are -1 and 1, you know that all the values less than -1 will be the same type of value (let's say < 0). It's probably easier to illustrate thus:
a^3 - a = 0
a (a^2 - 1) = 0 Simply factoring here
a (a - 1)(a + 1) = 0 Still factoring
a = 0; a = 1; a = -1 are the solutions when setting the function equal to zero.
From those solutions, we know that we have to test 4 different areas:
1. When a < -1
2. When -1 < a < 0
3. When 0 < a < 1
4. When 1 < a
1. Suppose a = -2; a (a - 1)(a + 1)
(-2)(-2 - 1)(-2 + 1) < 0
(-2)(-3)(-1) < 0
-6 < 0
True, so supposition (1) holds for a < -1
2. Suppose (-1/2); a (a - 1)(a + 1)
(-1/2)(-1/2 - 1)(-1/2 + 1) < 0
(-1/2)(-3/2)(1/2) < 0
(3/8) < 0
False, so (1) does not hold for -1 < a < 0
** At this point, since (Supposition 1) can be either greater than 0 or less than 0 (depending on chosen a), we know than (1) is insufficient for our Test. Although because it's pertinant to later discussion, I'll also solve for the other 2 areas (3. & 4. from above) **
3. Suppose (1/2); a (a - 1)(a + 1)
(1/2)(1/2 - 1)(1/2 + 1) < 0
(1/2)(-1/2)(3/2) < 0
(-3/8) < 0
True, so (1) holds for 0 < a < 1
4. Suppose a = 2; a (a - 1)(a + 1)
(2)(2 - 1)(2 + 1) < 0
(2)(1)(3) < 0
6 < 0
False, so (1) does not hold for 1 < a
(Supposition 2) 1 - a^2 > 0
Again, let's set it equal to zero to know which areas we need to test.
1 - (a)^2 = 0
(a)^2 - 1 = 0 Multiplied through by -1
(a - 1)(a + 1) = 0
a = 1 or a = -1
Since we have two values, we have three areas to test:
1. When a < -1
2. When -1 < a < 1
3. When 1 < a
1. Suppose a = -2; (a - 1)(a + 1)
(-2 - 1)(-2 + 1) < 0
(-3)(-1) < 0
3 < 0
False, so supposition (2) does not hold for a < -1.
2. Suppose 0; (a - 1)(a + 1)
(0 - 1)(0 + 1) < 0
(-1)(1) < 0
-1 < 0
True, so (2) does hold for -1 < a < 1.
** At this point, since (Supposition 2) can be either greater than 0 or less than 0 (depending on chosen a), we know than (2) is insufficient for our Test. Although because it's pertinant to later discussion, I'll also solve for the other 1 area (3. from above) **
3. Suppose 2; (a - 1)(a + 1)
(2 - 1)(2 + 1) < 0
(1)(3) < 0
3 < 0
False, so (2) does not hold for 1 < a.
Since we know that both suppositions and insufficient alone, we can now look at both together. If both together are true, where do their solutions overlap?
If a < -1, (1) is < 0 and (2) is > 0. This conflicts, so the solution to both cannot be in this area.
If a > -1, (1) is > 0 and (2) is < 0. This conflicts, so the solution to both cannot be in this area.
If -1 < a < 0, (1) is > 0 and (2) is < 0 (because we've seen that (2) is < 0 for all values between -1 and 1 non inclusive). This conflicts, so the solution to both cannot be in this area.
If 0 < a < 1, (1) is < 0 and (2) is < 0. This agrees, so the value if both suppositions are true must fall into this range. And since this solution allows us to answer our Test (a > 0?), we know that both (1) and (2) are sufficient for the Test.
Answer C.
PS: This is probably WAY more than you'll have time to do on the test, but it illustrates the steps in the most detail for your understanding. It is definitely not the most efficient solution.