Subject: unless ?db_8400 Wrote:quick question about the unless term
if it says "Unless you’re a millionaire, you’ll never go to space"
would this be Space ----->Millionaire.
B/c unless introduces the necessary which is millionaire in this case.
But if i replaced unless with IF NOT what would that make it?
"UNLESS you're a millionaire, you'll never go to space" is equivalent to:
"You'll never go to space UNLESS you're a millionaire"
The rule for UNLESS is: Change UNLESS to IF NOT, pick either condition, make it sufficient and apply IF NOT to it.
e.g., UNLESS X, Y => IF NOT X then Y
X UNLESS Y => IF NOT Y then X
So applied here we get:
IF you're NOT a millionaire, then you'll never go to space
OR
IF you'll sometimes go to space, then you're a millionaire