One can ALWAYS decode absolute values by eliminating the absolute values. First, you must understand the fundamental principle.
|x| = x if x >= 0 Examples |0| = 0, |3| = 3
Here we are saying that the absolute value does nothing for positive numbers and for zero. If you are sure the argument is positive or zero, simply discard the absolute values and you are done.
|x| - -x if x < 0 Examples |-2| = -(-2) = 2, |-10| = -(-10) = 10
Here we are saying that the function of the absolute value simply changes the sign of negative numbers. If you are sure the argument is negative, simply discard the absolute values and change the sign of the argument.
Having said that, where is 2x-5 positive or zero? 2x-5 >= 0 ==> 2x >= 5 ==> x >= 5/2
Similarly, 2x-5 < 0 for x < 5/2
Now we have two cases.
For x >= 5/2, 3 - |2x-5| = 2 - (2x-5) = 2-2x+5 = 7-2x -- Graph that and erase everything for x < 5/2
For x < 5/2, 3 - |2x-5| = 2 - -[(2x-5)] = 3 + (2x-5) = 2+2x-5 = -3+2x -- Graph that and erase everything for x >= 5/2
That's one way to do it.