Graph Theory Definitions Flashcards

1
Q

Network

A

a graph with weights along each edge, number may refer to time, distance or money.

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

Order/Degree of a vertex

A

number of edges it’s attached to, a loop counts as 2

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

Odd vertex

A

a vertex with an odd order/degree

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

loop

A

edge with the same vertex at each end

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

if a graph has n edges, what’s the sum of it’s order?

A

2n

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

Complete Graph

A

every vertex is connected by an edge to all other vertices

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

Simple Graph

A

no loops, one edge connects to any pair of vertices

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

When would a complete graph have n odd vertices?

A

when it’s Eulerian

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

Digraph/directed graph

A

a graph that has at least one edge with a direction

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

Cycle

A

a route starting and finishing at the same vertex

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

Hamiltonian Cycle

A

a cycle that visits every vertex once (not every edge) and returns to the start vertex

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

What is the connection between a Hamiltonian cycle and the number of edges?

A

They are the same, no. of edges = no. vertices

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

How many different Hamiltonian cycles are associated with a fully connected graph?

A

(n-1)!/2 where n = number of vertices and (n-1)! is the number of possible cycles

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

Eulerian Graph

A

A connected graph with with all even orders

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

Eulerian Cycle

A

visits every edge once and all vertices are of an even order

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

Semi Eulerian Graph

A

a connected graph where only 2 vertices are odd

17
Q

A tree

A

a graph that has no cycles

18
Q

How many edges are on a MST with n vertices

A

(n-1)

19
Q

Edges/Nodes

A

Lines on a graph, connecting vertices

20
Q

Vertices/Arcs

A

points on a graph connected by edges

21
Q

Graph

A

consists of a finite number of points connected by lines