∀
(∀x)[P(x)]
P(v1) /\ P(v2) /\ P(v3) /\ ...
P(1) /\ P(2) /\ P(5)
(∀x)[H(x)]
Color.GREEN
Color.BLACK
Color.CYAN
(∀x)[if x != Color.BLACK then L(x)]
L(x)
(∃z)[R(z)]
(∃x)[x < 3]
(∃x)[P(x)]
P(v1) \/ P(v2) \/ P(v3) \/ ...
for ( int i = 0; i < 8; i++ ) System.out.println(i);
for ( int j = 0; j < 8; j++ ) System.out.println(j);
(∀x)(∃y)[not R(x,y)]
(∀z)(∃y)[not R(z,y)]
for ( int i = 0; i < 8; i++ ) for ( int k = 0; k < 5; k++ ) System.out.println(i + ", " + k); ?⇔? for ( int i = 0; i < 8; i++ ) for ( int i = 0; i < 5; i++ ) System.out.println(i + ", " + i); (∀x)(∃y)[not R(x,y)] ?⇔? (∀x)(∃x)[not R(x,x)]
(∃x)[F(x)]
true
x
F(x)
(∃x)(x > 1 → x² > x)
2
(2 > 1 → 2² > 2)
( → > 2)
( → )
()
∃
false
-5
(-5 > 1 → (-5)² > -5)
( → > -5)
(∀x)[F(x)]
(∀x)(x² > x)
0
(0² > 0)
( > 0)
½
((½)² > ½)
( > ½)
a
F(a)
1. (∀x)(∃y)[x < y] with domain D := natural numbers N {0, 1, 2, 3, ...}
[a < ]
¬ (∀x)[F] ⇔ (∃x)[¬ F]
¬ (∃x)[F] ⇔ (∀x)[¬ F]
(∃x)[ not P(x) and not E(x) ]
not (∃x)(∀y)[R(x,y)]
(∀x)(not (∀y)[R(x,y)])
int
double