Logic Flashcards

1
Q

commutativity

A

φ ∧ ψ ≡ ψ ∧ φ
φ ∨ ψ ≡ ψ ∨ φ

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

idempotence

A

φ ∧ φ ≡ φ
φ ∨ φ ≡ φ

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

associativity

A

(φ ∧ ψ) ∧ χ ≡ φ ∧ (ψ ∧ χ)
(φ ∨ ψ) ∨ χ ≡ φ ∨ (ψ ∨ χ)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

De Morgan

A

¬(φ ∧ ψ) ≡ ¬φ ∨ ¬ψ
¬(φ ∨ ψ) ≡ ¬φ ∧ ¬ψ

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

involution

A

¬¬φ ≡ φ
φ → ψ ≡ ¬φ ∨ ψ

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

distributivity

A

(φ ∧ ψ) ∨ χ ≡ (φ ∨ χ) ∧ (ψ ∨ χ)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

sheffer stroke

A

φ | ψ ≡ ¬(φ ∧ ψ)
φ | φ ≡ ¬φ
φ ∨ ψ ≡ (φ | φ) | (ψ | ψ)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

φ ∧ ψ

A

¬¬(φ ∧ ψ)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

CNF1:

A

IMPL-FREE: φ → ψ ≡ ¬φ ∨ ψ

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

CNF2:

A

NNF: ¬(φ ∧ ψ) ≡ ¬φ ∨ ¬ψ
¬(φ ∨ ψ) ≡ ¬φ ∧ ¬ψ
¬¬φ ≡ φ

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

CNF3:

A

DISTR: (φ ∧ ψ) ∨ χ ≡ (φ ∨ χ) ∧ (ψ ∨ χ)
χ ∨ (φ ∧ ψ) ≡ (χ ∨ φ) ∧ (χ ∨ ψ)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

CNF from truth table

A

look at false formulas and negate the literals (…v…) ^ (…v…)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

DNF from truth table

A

look at true formulas and write down literals (… ^ …) v (…^…)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

DPLL

A

assume a literal is true or false, look for pure literals and unit clauses first then repeat till satisfiable or not satisfiable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly