First Oral Exam Flashcards
What is a graph?
an ordered pair of sets (V,E).
What is V?
the vertex set
What is E?
the edge set. E contains two element subsets of V.
What is the complement of a graph?
the complement of a graph, denoted G_bar, is a graph with the vertex set V(G), and an edge set defined by:
uv » E(G_bar) iff uv ¬« E(G)
What is a clique?
A SET of pairwise adjacent vertices of a graph
What is an independent set?
A set of pairwise nonadjacent vertices
What is a path?
A graph G with a vertex set {x1, x2, x2, …, xk} such that E(G) = {x1x2, x2x3, …, xk-1xk}
What is a cycle?
A graph G with V(G) = {x1, x2, x2, …, xk} and E(G) = {x1x2, x2x3, …, xk-1xk, xkx1}
How do you denote a path with k vertices?
P_k
How do you denote a cycle with k vertices?
C_k
What is a complete graph?
A graph where all vertices are pairwise adjacent, denoted K_k.
What is a trivial, or null, graph?
A graph with |V(G)| = 0
What is an empty graph?
A graph with |V(G)| ≥ 1, and |E(G)| = 0
What is the order of a graph?
The size of the vertex set
What is the size of a graph?
The size of the edge set.
What is a bipartite graph?
A graph G is bipartite if V(G) is the union of two disjoint (possibly empty) independent sets called partite sets ofG.
What is the degree of a vertex?
The degree of a vertex v in a graph G, written d_G(v) or d(v), is the number of edges incident to v.
How do we denote the minimum degree of a vertex in G?
∂(G)
How do we denote the maximum degree of a vertex in G?
∆(G)
How do we denote the average degree of G?
d(G)
What is the distance between vertices u and v?
the minimum length of a u-v path, if one exists. If not it is infinity.
What is the diameter of a graph?
the maximum distance between any two points u and v
How is the distance between vertices u and v denoted?
d(u,v), or d_G(u,v)
How is the diameter of a graph denoted?
max_(u,v »V(G)) d(u,v)
What is the eccentricity of a vertex u?
The maximum distance between u and any other point.
How is the eccentricity of a vertex u denoted?
epsilon(u)