« previous | Sunday, February 20, 2011 | next »
Nested Quantifiers
Think of nested quantifiers as loops:
for x in Domain do
for y in Domain do
p(x,y)
end
end
Order Matters
Left side: For all real numbers , there is a real number such that . (Namely, )
Right side: There is a real number such that for all real numbers , . (can never be true)
Negating Nested Quantifiers
Follow rules of negating quantifiers and De Morgan's Laws, just cascade down the line.