Graph Theory Flashcards
What does κ(G) represent?
minimal vertex cut
What does λ(G) represent?
minimal edge cut
What does ω(G) represent?
number of components
What does δ(v) represent?
degree of v
What does |x| represent?
number of “x” – NOT absolute value
How many edges are in a complete graph?
n(n-1) / 2
What is the sum of the degree of all vertices?
∑v∈v(g) δ(v) = ?
Twice the number of edges. 2*|E(G)|
When is a degree sequence graphic?
If there is a corresponding simple graph.
If you sum up the contents of a row in an adjacency or incidence matrix, what is the resulting number?
The degree of the vertex. δ(v)
If each vertex in a graph G1 is associated with a vertex in a graph G2 such that the edges correspond, we can say G1 and G2 are:
isomorphic.
Two vertices are connected if:
there is a path between them.
A graph is connected if:
all pairs of vertices are connected.
i.e. from any vertex, there is a path to any other vertex.
What is a component of G?
A connected subgraph that isn’t strictly contained another connected subgraph of G.
What is the difference between a walk and a path?
A walk is just a sequence of vertices and edges.
In a path, all vertices the vertices are unique.
i.e. you never cross the same vertex twice.
What are vertex/edge cuts?
A subset of the vertices/edges such that if you take them away from the graph, the graph will become disconnected.
What can we say about the minimal: vertex cut, edge cut, and degree of vertices in a graph?
The minimal vertex cut is less than or equal to the minimal edge cut which is less than or equal to the minimal degree of the vertices in a graph.
κ(G) ≤ λ(G) ≤ min v∈V(G) {δ(v)}