by tommywallach Tue Apr 23, 2013 12:51 am
Hey Sowjan,
The mistake you made is that when you multiply or divide an LT by a negative number, you have to flip it into a GT. Remember, you are secretly manipulating an inequality whenever you use LT or GT:
x is less than -2
so x could be -3, -4, -5, etc...but if we multiply both sides by -1:
-x is greater than 2
because x could be 3, 4, 5, etc..
In your example, you needed to switch between here:
d=4-1.5*LT(-1)
and here:
d= 4+LT(1.5)
So this last step should be 4 + GT (1.5).
Another way you could do it is by plugging in using real numbers (which is not what you did, btw).
The biggest that c could be is a little bit less than -1. Let's just use -1:
3(-1) + 2d = 8
-3 + 2d = 8
d = 5.5
Now, let's see what would happen if we plugged in -2 for c:
3(-2) + 2d = 8
-6 + 2d = 8
d = 7
See what happened? As c got smaller, our d actually got bigger. That's how we know it needs to be bigger than 5.5.
Hope that helps!
-t