Graph Theory Flashcards

1
Q

Define a graph

A

An ordered pair (V, E), where V is a non-empty finite set and E is an unordered subset of 2 elements of V.

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

Define isomorphic graphs

A

Two graphs, G and H are isomorphic if there exists a bijection φ: V(G) → V(H) such that xy ∈ E(G) if and only if φ(x)φ(y) ∈ E(H).

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

Define a subgraph

A

H is a subgraph of G if H is a graph with V(H) ⊆ V(G) and E(H) ⊆ E(G).

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

Define a complete graph

A

The graph with all possible edges included.

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

Define an empty graph

A

The graph with vertices and no edges.

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

Define a path graph

A

The graph with V = {v0, v1, …, vn} and E = {v0v1, v1v2, …, v(n-1)vn}.

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

Define a cycle graph

A

The graph with V = {v0, v1, …, vn} and E = {v0v1, v1v2, …, v(n-1)vn, vnv0}.

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

Define adjacent vertices

A

Given a graph G, two vertices, v and w are adjacent if vw ∈ E(G).

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

Define a walk

A

Given a graph G, a walk is a sequence v0v1…vt of (not necessarily distinct) vertices of G such that v(i-1)vi ∈ E(G) for all 1 ≤ i ≤ t.

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

Define a closed walk

A

A closed walk is a walk with the same first and last vertices.

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

Define a path

A

A path is a walk with distinct vertices.

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

Define connected vertices

A

Vertices x, y in G are connected if there exists a path between them.

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

Define a connected graph

A

G is connected if every pair of points in G is connected.

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

Define a component of a graph

A

H is a component of a graph G if it is a connected subgraph of G.

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

Define an acyclic graph

A

A graph G is acyclic if it does not have any subgraphs which are cycles.

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

Define a tree

A

A tree is a connected acyclic graph.

17
Q

Define a minimal connected graph

A

A graph G is minimal connected if it is connected, but removing any edge e from E(G) results in G – e not being connected.