General Definitions Flashcards

(64 cards)

1
Q

Order

A

Number of Vertices

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Size

A

Number of Edges

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Simple Graph

A

No loops or mult. edges

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

K-Regular

A

All vertices have degree k

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Trail

A

Walk w/ distinct edges

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Path

A

Walk w/ distinct vertices

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Euler Circuit

A

A path containing every edge

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Eulerian Theorem

A

A graph is Eulerian IFF it is even and has at most 1 nontrivial component. (Proof by Maximality)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Independent Set

A

Set of non-pairwise adjacent vertices

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Clique

A

Set of vertices s.t. all vertices are adjacent to eachother (subgraph is a complete graph)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Degree Sequence

A

List of integers from highest to lowest

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Graphic Sequence

A

sequence that produces a simple graph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Girth

A

length of shortest cycle

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Max Edges (simple)

A

Complete Graph, n choose 2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Min Edges (simple connected)

A

n-1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

cut-edge/cut-vertex

A

edge or vertex that if removed increases the number of components (disconnects the graph)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

subgraph INDUCED by a vertex set S

A

The graph with only the vertices in S, or G - (complement of S)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Spanning Subgraph

A

Subgraph with vertex set v(G)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Forest

A

A graph with no cycles

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Tree

A

A connected graph with no cycles

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Leaf

A

vertex with d(v) = 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

𝜏(G)

A

number of spanning trees in G. Can consider all trees containing e then all trees without e separately. 𝜏(G) = 𝜏(G - e) + 𝜏(G · e).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

Contraction (G · e)

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

MST

A

Minimum Spanning Tree, Spanning tree of a weighted graph G with minimum weight.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Matching
Independent Set of Edges
26
M-Saturated Vertex
A vertex that is an endpoint of an edge in M
27
Perfect Matching
A matching in which every vertex is saturated
28
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!
29
α'(G)
max size of a matching (independent set of edges)
30
β(G)
min size of a vertex cover
31
α(G)
max size of an independent set of vertices
32
β'(G)
min size of an edge cover (doesn't exist if their are isolated vertices.. Duh..)
33
K-Factor
A K-regular spanning subgraph
34
Vertex Cut
a set of vertices (S) s.t. G-S is disconnected.
35
Connectivity κ(G)
κ(G) is the minimum size of S s.t. G-S is disconnected or only has 1 vertex
36
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.
37
κ(G) upper bounds
1. δ(G) (Deleting the neighborhood of the vertex with the smallest degree disconnects the graph)
38
Edge connectivity κ'(G)
Minimum size of F s.t. G-F is disconnected or only has 1 vertex
39
[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.
40
Edge Cut
[S, S complement]
41
When does k = k' = δ?
Trees, Cycles, Kn, Km,n hypercube
42
Block
Maximal connected subgraph which has no cut vertex
43
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)
44
Leaf-Blocks`
A leaves of a block-but point graph (representing blocks)
45
Internally Disjoint Paths
uv paths with no common vertices other than u and v. (will obviously not have any common edges)
46
Subdivison
replacing an edge uv with 2 edges uw and wv with w being a new vertex.
47
Ear
Maximal path all of whose internal vertices have degree 2
48
Ear Decomp
A decomposition of a graph G with a Cycle then all ears.
49
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.
50
κ(x,y)
minimum size of an xy separator
51
λ(x,y)
max number of pairwise internally disjoint xy paths
52
xu fan
a set of xu paths whose only common vertex is x.
53
κ'(x,y)
min size of an xy edge separator
54
λ'(x,y)
max number of edge disjoint x,y paths
55
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)
56
k-colorable
A graph is k-colorable if there is a proper k-coloring
57
x(G)
Chromatic Number of G, minimum number of colors in a proper coloring
58
ω(G)
clique number - max size of a clique in G
59
x(G) ? ω(G)
60
x(G) ≥ ?
1. ω(G) | 2. n(G) / α(G) *each color used at most α times.
61
x(G) ≤ ?
Δ(G) + 1, unless G is connected and not regular`
62
x'(G)
Chromatic Index of G, minimum # of colors in a proper edge coloring
63
x'(G) ≤ ?
1. 3/2 Δ(G) 2. 2Δ(G) - 1 x'(G) = x(L(G)) ≤ Δ(L(G)) + 1 ≤ 2(Δ(G) - 1) + 1 = 2Δ(G) - 1
64
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.