3033: CHAPTER 1: BASIC NOTIONS Flashcards
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.