3033: CHAPTER 1: BASIC NOTIONS Flashcards
(47 cards)
Definition of a graph
A graph is a pair of sets G=(V,E) such that E ⊆ V^{2}
What is A^{2}?
The set of 2 element subsets of A
What is the maximum number of vertices for a graph of n vertices?
(n 2) = n!/2!*(n-2)!
For 2<=k
It is the graph whose vertices are the k-element subsets of {1,…,n} with two k-subsets adjacent if they intersect in a (k-1)-subset
What does it mean for 2 vertices to be adjacent?
There is an edge between them
When are two vertices u and v neighbours?
When there is an edge between them
What does it mean for a vertex v to be incident to an edge e?
The edge e has an endpoint at v
What is the d(v)?
The number of edges incident to v
When is a vertex isolated?
When it has degree 0
What is the handshaking lemma?
SUM (i=1 n)(d(xi)) = 2|E|
For a graph G=(V,E), what is a subgraph?
A graph G’=(V’,E’) where V′⊆V and E′⊆E.
When is a subgraph a spanning subgraph?
When V’=V
When is a subgraph an induced subgraph?
When for all u,v ∈ V′, if uv ∈ E then uv ∈ E′.
When is a graph G complete?
When there is an edge between any two vertices
When is a graph G null?
When it has no edges
Let G = (V,E) be a graph. What is a bipartition of G?
It is a pair of subsets X,Y ⊆ V such that X ∪ Y = V, X ∩ Y =∅ and every edge of G has one endpoint in X and the other in Y
When is G complete bipartite
If it has a bipartition X , Y such that every vertex in X is adjacent to every vertex in Y .
Let G be a graph. For k ∈ N, what does it for G to be k-regular?
All the vertices of G have degree k.
Let G = (V,E) be a graph. For a subset V′ ⊆ V, what is G −V′?
It is the graph obtained from G by deleting the vertices in V ′ and deleting all edges incident with them
Let G = (V,E) be a graph. For a subset E′ ⊆ E, what is G−E′?
It is the graph obtained from G by deleting the edges in E′?
Let G = (V , E ) be a graph. What is the complement of G?
It is the graph Gc = (Vc, Ec), where Vc =V and Ec = V^{2}\E
Let G = (V,E) and G′ = (V′,E′) be graphs. What is an isomorphism f : G → G′ ?
It is a bijective function f : V → V′ such that u and v are adjacent in G if and only if f(u) and f(v) are adjacent in G ′ , for all u , v ∈ V .
If G ∼= H then what can we say about Gc and Hc
Gc ∼= Hc.
What is an automorphism?
It is an isomorphism of a graph G to itself