Graph Theory

studied byStudied by 0 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 86

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

87 Terms

1

|G|

Order, no. vertices

New cards
2

||G||

Size of G, number of edges

New cards
3

Notation for an edge between x and y

xy (or yx)

New cards
4

Vertices x and y are adjacent if

xy is an edge in G

New cards
5

Two edges are adjacent if

They share an end

New cards
6

u-v walk

a sequence of vertices starting with u and ending with v, so that consecutive vertices in the walk are adjacent

New cards
7

Trail

A walk where no edge is repeated

New cards
8

Path

A walk where no edge or vertex is repeated

New cards
9

Open walk

A walk where the start and end are different

New cards
10

Circuit

A closed trail

New cards
11

Cycle

A circuit with no repeated vertex except the first & last

New cards
12

Eulerian graph

A graph with a circuit containing every vertex and edge (no repeated edges)

New cards
13

Degree

The number of edges incident to a vertex in a graph deg(v)

New cards
14

Eulerianity conjecture: A graph is Eulerian if and only if

It is connected and even

New cards
15

In an even graph, any trail that is not closed

can be extended

New cards
16

G’ = (V’, E’) is a subgraph of G if

V’ is a subset of V and E’ is a subset of E

New cards
17

G’ is an induced subgraph of G if

Every edge E connected to V’ in V is included in E'

New cards
18

result of G-U (U is a set of vertices)

G[V\U]

New cards
19

result of G-F (F is a subset of edges)

(V, E\F)

New cards
20

Result of G + F (F is a subset of edges)

(V, E U F)

New cards
21

3 key properties of connectedness

  1. If u and v are connected, the v and u are connected

  2. Every vertex v is connected in G to itself

  3. If u is connected to v, and v to w, then u is connected to w

New cards
22

Semi-Eulerian

There exists an open trail (walk w/ no repeated edges) containing all edges and vertices

New cards
23

A graph is semi-Eulerian if and only if… (2 conditions)

It is connected and has exactly two odd vertices

New cards
24

Connected component

Maximal connected subgraph

New cards
25

Hamiltonian cycle

A circuit visiting each vertex exactly once

New cards
26

Hamiltonian path

An open walk (path) visiting each vertex exactly once

New cards
27

Hamiltonian graph

Graph with a Hamiltonian cycle (circuit that visits each vertex once)

New cards
28

Semi-Hamiltonian

Graph with a Hamiltonian path (path that visits each vertex once)

New cards
29

Let G be a graph with n>=3 vertices. G is Hamiltonian if for every vertex of G we have deg(v)…

deg(v) >= n/2

New cards
30

Ore’s theorem. G is Hamiltonian if for every pair of non-adjacent vertices v, w of G we have…

deg(v) + deg(w) >= n

New cards
31

The closure of a graph C(G) is obtained by

repeatedly joining pairs of non-adjacent pairs whose degree sum is at least n

New cards
32

Optimality of condition: dk <= k < n/2 →

dn-k >= n - k

New cards
33

Hamiltonian-connected

For every two vertices, u, v of G, there is a u-v Hamiltonian path

New cards
34

A vertex v of connected graph G is a cut vertex if

G-v is not connected

New cards
35

If G is a connected graph with no cut-vertices then G²

G² is Hamiltonian-connected

New cards
36

If G is Hamiltonian, then G is (connectivity)

G is 2-connected

New cards
37

u-B fan

given vertex u and vertices in set B, each pair of these paths only chare u in common

New cards
38

Isomorphic graphs

There is a bijection between the graphs

New cards
39

Graph property

A class, C, of graphs closed under isomorphism

New cards
40

Graph invariant

A map that assigns equal values to isomorphic graphs. ex. f(G) = |G|

New cards
41

Every graph has a unique _____ ___ ___ , whish is a _____ _____

decreasing degree sequence, graph invariant

New cards
42

2-switch (w/ edges uv and wx)

Delete edges uv and wx from G and add edges uw and vx

New cards
43

2-switch equivalent

G ~2 G’ if G’ can be obtained from G by a sequence of 2-switched

New cards
44

Forest

A graph with no cycles

New cards
45

Tree

connected forest

New cards
46

||T|| (number of edges in a tree)

|T| - 1 (number of vertices - 1)

New cards
47

A graph is a tree if and only if

Every two vertices are connected by a unique path

New cards
48

Leaves

vertices of a tree with degree 1

New cards
49

How many leaves does every tree have?

At least 2

New cards
50

If v is ANY vertex, then T - v is a… (T is a tree)

Forest

New cards
51

T-v is a tree if an only if v is a

v is a lead

New cards
52

If F is a forest with components, ||F|| =

||F|| = |F| - k

New cards
53

A subgraph H of G is spanning if

V(H) = V(G)

New cards
54

If G is a connected graph, then ||G|| >=

||G|| >= |G| - 1

New cards
55

An edge e is a bridge if

G-e has more components than G

New cards
56

A graph G is nonseparable if (2 things)

It is connected & has no cut vertices

New cards
57

A block of a graph is

A maximal nonseparable subgraph

New cards
58

Two distinct blocks can share how many vertices?

At most one

New cards
59

The block-cut graph of a connected graph G is a

Tree (non-connected is a forest)

New cards
60

If G is Hamiltonian, then it has no

no cut-vertices

New cards
61

A graph is edge-nonseparable if (2 things)

It is connected and contains no bridge

New cards
62

If e = uv is a bridge, then at least one of u, v is

a cut vertex

New cards
63

A graph G is k-connected if: (2 things)

  1. |G| > k

  2. G-S is connected for every S in V with |S| < k

New cards
64

The connectivity of G is denoted by:

kappa(G)

New cards
65

A graph G is l-edge connected if: (2 things)

  1. |G| > 1

  2. G-F if connected for every F in E with |F| < l

New cards
66

edge-connectivity if denoted by:

lambda(G)

New cards
67

What if F called if G - F is disconnected? (F is a subset of edges)

edge cut

New cards
68

What is S called if G-S is disconnected? (S is a set of vertices)

separating or vertex cut

New cards
69

A graph is 2-connected iff it has

an open ear decomposition

New cards
70

A graph is 2-edge-connected iff it has

a closed ear decomposition

New cards
71

If F is a minimal edge-cut then G_F

has exactly 2 components

New cards
72

relationship between min degree/connectivity/edge-connectivity? (Whitney inequalities)

kappa(G) <= lamba(G) <= delta(G)

New cards
73

If G is k-connected and v is a vertex then G-v is

(k-1) connected

New cards
74

Notation for edge-contraction of G along e is

G/e = (V/e,E/e)

New cards
75

Menger’s vertex/set:

The maximum size of a collection of pairwise disjoint A-B paths is equal to the minimum size of an A-B separating set.

New cards
76

Menger’s vertex/vertex:

Let u,v be non-adjacent vertices. The maximum size of a collection of pairwise internally disjoint u-v paths is equal to the minimum size of a set separating u and v.

New cards
77

Menger’s vertex/global:

A graph with at least k+1 vertices is k-connected if and only if for every pair of distinct vertices u and v there is a collection of k internally disjoint u-v paths.

New cards
78

Two paths are edge-disjoint if

They do not share any edges

New cards
79

A u-v edge separating set is a set X in Edges such that

There are no uv paths in G-X

New cards
80

Menger’s edge/vertex:

The maximum size of a collection of pairwise edge disjoint u-v paths is equal to the minimum size of a u-v edge separating set.

New cards
81

Menger’s edge/global:

G is l-edge connected iff for all distinct vertices u, v there are l edge disjoint u-v paths in G.

New cards
82

A graph is k-regular if

for all vertices, deg(v) = k

New cards
83

A graph G is bipartite if we can

partition V into U and W (partite sets) so that every edge joins a vertex of U with a vertex of W

New cards
84

Every subgraph of a bipartite graph is

is bipartite

New cards
85

The disjoint union of bipartite graphs is

bipartite

New cards
86

A graph G is bipartite iff

we can “color” the vertices with two colors so that adjacent vertices receive different colors

New cards
87

A graph is bipartite if and only if it contains no

odd cycles

New cards

Explore top notes

note Note
studied byStudied by 39 people
70 days ago
5.0(1)
note Note
studied byStudied by 13 people
183 days ago
5.0(1)
note Note
studied byStudied by 253 people
681 days ago
4.5(6)
note Note
studied byStudied by 18 people
813 days ago
5.0(1)
note Note
studied byStudied by 215 people
720 days ago
5.0(2)
note Note
studied byStudied by 22 people
710 days ago
5.0(2)
note Note
studied byStudied by 2488 people
700 days ago
4.7(6)

Explore top flashcards

flashcards Flashcard (55)
studied byStudied by 84 people
381 days ago
5.0(1)
flashcards Flashcard (44)
studied byStudied by 39 people
789 days ago
4.1(7)
flashcards Flashcard (58)
studied byStudied by 170 people
730 days ago
5.0(1)
flashcards Flashcard (45)
studied byStudied by 12 people
764 days ago
5.0(1)
flashcards Flashcard (45)
studied byStudied by 1 person
74 days ago
5.0(1)
flashcards Flashcard (43)
studied byStudied by 10 people
220 days ago
5.0(1)
flashcards Flashcard (42)
studied byStudied by 33 people
372 days ago
5.0(1)
flashcards Flashcard (101)
studied byStudied by 183 people
2 days ago
5.0(1)
robot