honchos
T is the set of all numbers that can be written as the following sum involving distinct non-zero integers a, b, c and d: |a|/a + 2(|b|/b) + 3(|c|/c) + 4(|d|/d) + 5(|abcd|/abcd). What is the range of T?
A. 15
B. 20
C. 28
D. 29
E. 30
How to think in such a problem:
"T is the set of all numbers that can be written as the following sum"
Makes me think that T can take a limited number of values. Else the set would have infinite elements and we will not be able to define the range.
|a|/a + 2(|b|/b) + 3(|c|/c) + 4(|d|/d) + 5(|abcd|/abcd)
Seeing this, I recall that |x|/x will be 1 or -1 depending on whether x is positive or negative. It can take no other value.
So to maximise the sum (to get range), we should make all such expressions 1. This happens when all a, b, c and d are positive. The sum will be 1 + 2 + 3 + 4 + 5 = 15
To minimise the sum we should try to make as many terms negative as possible. But abcd will become positive if all a, b, c and d are negative. So we should keep 'a' positive and make all rest negative.
1 - 2 -3 - 4 -5 = -13
Note that it doesn't matter what the actual values of a, b, c and d are. |a|/a will always be only 1 or -1.
Range = 15 - (-13) = 28