General Definitions Flashcards
Order
Number of Vertices
Size
Number of Edges
Simple Graph
No loops or mult. edges
K-Regular
All vertices have degree k
Trail
Walk w/ distinct edges
Path
Walk w/ distinct vertices
Euler Circuit
A path containing every edge
Eulerian Theorem
A graph is Eulerian IFF it is even and has at most 1 nontrivial component. (Proof by Maximality)
Independent Set
Set of non-pairwise adjacent vertices
Clique
Set of vertices s.t. all vertices are adjacent to eachother (subgraph is a complete graph)
Degree Sequence
List of integers from highest to lowest
Graphic Sequence
sequence that produces a simple graph
Girth
length of shortest cycle
Max Edges (simple)
Complete Graph, n choose 2
Min Edges (simple connected)
n-1
cut-edge/cut-vertex
edge or vertex that if removed increases the number of components (disconnects the graph)
subgraph INDUCED by a vertex set S
The graph with only the vertices in S, or G - (complement of S)
Spanning Subgraph
Subgraph with vertex set v(G)
Forest
A graph with no cycles
Tree
A connected graph with no cycles
Leaf
vertex with d(v) = 1
𝜏(G)
number of spanning trees in G. Can consider all trees containing e then all trees without e separately. 𝜏(G) = 𝜏(G - e) + 𝜏(G · e).
Contraction (G · e)
Replace an edge e = uv with a single vertex w, then any edges that were incident with u or v are now incident with w
MST
Minimum Spanning Tree, Spanning tree of a weighted graph G with minimum weight.
Matching
Independent Set of Edges