DeMorgan’s laws
nUseful for simplifying expressions.
n
n!(b1 && b2) º !b1 || !b2
n!(b1 || b2) º !b1 && !b2
n
n!(i1>5 && i1<8) º !(i1>5) || !(i1<8)