Some things to consider:
1) The statement S
"If x then y"
has the following http://www.acm.org/crossroads/xrds10-3/gfx/img1.gif":
For x false, y false the statement "If x then y" is true (vacuous truth)
For x false, y true the statement "If x then y" is true (vacuous truth)
For x true, y false the statement "If x then y" is false
For x true, y true the statement "If x then y" is true
(Instead of "If x then y" we also write "x => y")
2) The negation of "x and y"
is "(not x) or (not y)".
---------------------------
Now, to your statement:
(a,b \geq 0) \Rightarrow (ab \geq 0)
or equivalently
(a \geq 0 \text{ and } b \geq 0) \Rightarrow (ab \geq 0)
The contrapositive is:
\text{not }(ab \geq 0) \Rightarrow \text{not }( a \geq 0 \text{ and } b \geq 0)
or equivalently
(ab < 0) => (a<0 or b<0)
Cases:
We will check for every case of a,b whether the statement
(ab <0) => (a<0 or b<0) is true.
(Let's call this statement S as in the beginning.
The x corresponds to "ab<0" and y corresponds to "a<0 or b<0".)
Examine statement S: "If (ab<0) then (a<0 or b<0)"
Case 1) a<0, b<0:
(ab<0) is false, (a<0 or b<0) is true
From our truth table we can conclude that S is true.
Case 2) a<0, b=0:
(ab<0) is false, (a<0 or b<0) is true
From our truth table we can conclude that S is true.
Case 3) a<0, b>0:
(ab<0) is true, (a<0 or b<0) is true
From our truth table we can conclude that S is true.
Case 4) a=0, b<0:
(ab<0) is false, (a<0 or b<0) is true
From our truth table we can conclude that S is true.
Case 5) a=0, b=0:
(ab<0) is false, (a<0 or b<0) is false
From our truth table we can conclude that S is true.
Case 6) a=0, b>0:
(ab<0) is false, (a<0 or b<0) is false
From our truth table we can conclude that S is true.
Case 7) a>0, b<0:
(ab<0) is true, (a<0 or b<0) is true
From our truth table we can conclude that S is true.
Case 8) a>0, b=0:
(ab<0) is false, (a<0 or b<0) is false
From our truth table we can conclude that S is true.
Case 9) a>0, b>0:
(ab<0) is false, (a<0 or b<0) is false
From our truth table we can conclude that S is true.
As you can see the statement S is true for all cases of a,b.