celphi02
Thanks Received: 3
Vinny Gambini
Vinny Gambini
 
Posts: 2
Joined: October 15th, 2014
 
This post thanked 2 times.
 
 

How to solve UNLESS statements AND contrapositives with ease

by celphi02 Wed Oct 15, 2014 10:53 pm

=====================================================
UNLESS STATEMENTS
=====================================================

OK so here's an easy way to solve UNLESS statements.

If apples then oranges.

A --> O

IF on this side --> THEN on this side (remember this format)

If not apples then not oranges

~A --> ~O

Again IF portion on left side (of --> sign) and THEN on right side.

You must understand the above 1st before going on.

UNLESS statements is the same as saying IF NOT.

So.,

No apples unless oranges.
Read it as: IF NOT oranges then NO apples.

~O --> ~A

I found this way to solve all my UNLESS statements with a breeze.


=====================================================
CONTRAPOSITIVES
=====================================================
If the contra-positive part is confusing you then do the following.

Example:
~A --> B

what you would do is negate both sides
~(~A) --> ~(B)

then switch both sides
~B --> A

Note: two negatives = a positive. ~(~A) = A
======================================================

So in this example:
~K --> G

negate both sides:
~(~K) --> ~(G)

then switch both sides:
~G -- > K

Hope this helps!!!


Celphi02@gmail.com