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
M-Saturated Vertex
A vertex that is an endpoint of an edge in M
Perfect Matching
A matching in which every vertex is saturated
Vertex Cover
A set of vertices such that each edge in G has at least one endpoint in the set. *In fact |M| ≤ |Q|. If we have equality then M is maximum and Q is minimum!
α’(G)
max size of a matching (independent set of edges)
β(G)
min size of a vertex cover
α(G)
max size of an independent set of vertices
β’(G)
min size of an edge cover (doesn’t exist if their are isolated vertices.. Duh..)
K-Factor
A K-regular spanning subgraph
Vertex Cut
a set of vertices (S) s.t. G-S is disconnected.
Connectivity κ(G)
κ(G) is the minimum size of S s.t. G-S is disconnected or only has 1 vertex
k-connected
A graph is k-connected if it can not be disconnected by deleting fewer then k vertices
For all k smaller than or equal to κ(G), G is k connected.
κ(G) upper bounds
- δ(G) (Deleting the neighborhood of the vertex with the smallest degree disconnects the graph)
Edge connectivity κ’(G)
Minimum size of F s.t. G-F is disconnected or only has 1 vertex
[S, T]
set of edges with one endpoint in S and one endpoint in T where S and T are sets of vertices of G.
Edge Cut
[S, S complement]
When does k = k’ = δ?
Trees, Cycles, Kn, Km,n hypercube
Block
Maximal connected subgraph which has no cut vertex
Block-Cut point graph
Bipartite graph with partitions X = {set of blocks} Y = {set of cut vertices} and xy is an edge IFF block x contains cut vertex y. (always a forest)
Leaf-Blocks`
A leaves of a block-but point graph (representing blocks)
Internally Disjoint Paths
uv paths with no common vertices other than u and v. (will obviously not have any common edges)
Subdivison
replacing an edge uv with 2 edges uw and wv with w being a new vertex.
Ear
Maximal path all of whose internal vertices have degree 2
Ear Decomp
A decomposition of a graph G with a Cycle then all ears.
xy separator
Given vertices x,y , a set of vertices S (excluding x,y) is an x,y separator if G-S has no xy path.
κ(x,y)
minimum size of an xy separator
λ(x,y)
max number of pairwise internally disjoint xy paths
xu fan
a set of xu paths whose only common vertex is x.
κ’(x,y)
min size of an xy edge separator
λ’(x,y)
max number of edge disjoint x,y paths
k-coloring
A coloring with at most k color classes is called a k coloring. (called proper if all adjacent vertices have a different color)
k-colorable
A graph is k-colorable if there is a proper k-coloring
x(G)
Chromatic Number of G, minimum number of colors in a proper coloring
ω(G)
clique number - max size of a clique in G
x(G) ? ω(G)
≥
x(G) ≥ ?
- ω(G)
2. n(G) / α(G) *each color used at most α times.
x(G) ≤ ?
Δ(G) + 1, unless G is connected and not regular`
x’(G)
Chromatic Index of G, minimum # of colors in a proper edge coloring
x’(G) ≤ ?
- 3/2 Δ(G)
- 2Δ(G) - 1
x’(G) = x(L(G)) ≤ Δ(L(G)) + 1 ≤ 2(Δ(G) - 1) + 1 = 2Δ(G) - 1
Line Graph
L(G) is the simple graph with vertex set E(G) and xy is an edge in L(G) IFF x and y share a vertex in G.