Algorithmic Foundations 2 Flashcards
Identity Laws
P ∧ true ≡
P ∨ false ≡
P ∧ true ≡ P
P ∨ false ≡ P
Domination Laws
P ∨ true ≡
P ∧ false ≡
P ∨ true ≡ true
P ∧ false ≡ true
Idempotent Laws
P ∧ P ≡
P ∨ P ≡
P ∧ P ≡ P
P ∨ P ≡ P
Double Negation Law
¬(¬P) ≡ P
Commutative laws
P ∧ Q ≡
P ∨ Q ≡
P ∧ Q ≡ Q ∧ P
P ∨ Q ≡ Q ∨ P
Associative laws
(P ∧ Q) ∧ R ≡
(P ∨ Q) ∨ R ≡
(P ∧ Q ) ∧ R ≡ P ∧ (Q ∧ R)
(P ∨ Q) ∨ R ≡ P ∨ (Q ∨ R)
Distributive Laws
P ∨ (Q ∧ R) ≡
P ∧ (Q ∨ R) ≡
P ∨ (Q ∧ R) ≡ (P ∨ Q) ∧ (P ∨ R)
P ∧ (Q ∨ R) ≡ (P ∧ Q) ∨ (P ∧ R)
De Morgan Laws
¬ (P ∧ Q) ≡
¬ (P ∨ Q) ≡
¬ (P ∧ Q) ≡ ¬P ∨ ¬Q
¬ (P ∨ Q) ≡ ¬P ∧ ¬Q
Contradiction and Tautology Laws
P ∧ ¬P ≡
P ∨ ¬P ≡
P ∧ ¬P ≡ false
P ∨ ¬P ≡ true
Implication Law
P → Q ≡
P → Q ≡ ¬P ∨ Q
Exclusive or and Biconditional Laws
P ⊕ Q ≡
P ≡ Q ≡
P ⊕ Q ≡ (P ∨ Q) ∧ ¬(P ∧ Q)
P ≡ Q ≡ (P → Q) ∧ (Q → P)
Quantifier Law One
∀x. ∀y. Q(x, y) ≡
∀x. ∀y. Q(x, y) ≡ ∀y. ∀x. Q(x, y)
Quantifier Law Two
∃x. ∃y. Q(x, y) ≡
∃x. ∃y. Q(x, y) ≡ ∃y. ∃x. Q(x, y)
Quantifier Law Three
¬(∃x. ¬P(x)) ≡
¬(∃x. ¬P(x)) ≡ ∀x. P(x)
Quantifier Law Four
¬(∀x. ¬P(x)) ≡
¬(∀x. ¬P(x)) ≡ ∃x. P(x)
Quantifier Law Five
∀x. (P(x) ∧ Q(x)) ≡
∀x. (P(x) ∧ Q(x)) ≡ ∀x. P(x) ∧ ∀x. Q(x)
Quantifier Law Six
∃x. (P(x) ∨ Q(x)) ≡
∃x. (P(x) ∨ Q(x)) ≡ ∃x. P(x) ∨ ∃x. Q(x)
P ∨ Q means?
P or Q
P ∧ Q means?
P and Q
A fucntion is injective or ‘one-to-one’ if?
|X| ≤ |Y|
informally f maps different elements of X to different elements of Y
A fucntion is surjective or onto if?
|Y| ≤ |X|
informally each value in the codomain has a preimage
∀y. ∃x. (f(x) = y)
If a fucntion is bijecitve then?
Both injective and surjective
|X| = |Y|
Describe what it means for a graph to be connected?
A graph is connected if every pair of vertices is joined by a path.
Describe what it means when a graph is a clique (complete) ?
A graph is complete (a clique) if every pair of vertices is joined by an edge.
A binary relation is reflexive if…
if a ∈ A then (a,a) ∈ R
every element is related to itself
A binary relation is symmetric if…
if (a,b) ∈ R and a ≠ b then (b,a) ∈ R
a is related to b if and only if b is related to a
A binary relation is anti-symmetric if…
if (a,b) ∈ R and a ≠ b then (b,a) ∉ R
if a is related to b, then b is not related to a
A binary relation is transitive if…
if (a,b) ∈ R and (b,c) ∈ R then (a,c) ∈ R
if a is related to b and b related to c, then a is related to c
A relation R is a partial order on S if it is…
Reflexive
Anti-Symmetric
Transitive
A relation R is called an equivalence reltaion if it is…
Reflexive
Symmetric
Transitive
What is the Handshaking theorem?
The handshaking theorem states that the sum of the degrees is equal to 2·|E| (two multiplied by the number of edges).
Describe what it means for a simple graph to be connected
A simple graph is connected if every pair of vertices is joined by a path. (A path from vertex u to vertex v is a sequence of edges that take us from u to v).
A simple graph is bipartite if?
A simple graph is bipartite if the vertices can be divided into two disjoint sets U and W such that every edge joins a vertex in U and a vertex in W.