Graphs Flashcards

1
Q

What are graphs?

A
  • Consists of a FINITE:
    • Vertices - Non-empty set of points
    • Edges - set of lines
  • Every edge is attaches at each end to a vertex
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is an undirected graph?

A
  • Non directed edge vertex pairs
  • Simple graph:
    • Undirected graph
    • No loops (edge with vertex to itself)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a directed graph?

A
  • Directed edge vertex pairs
  • NO multiple edges
  • Loops are allowed
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a multigraph?

A
  • Undirected graph
  • More than one edge between a pair of vertices
  • No loops allowed
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you describe a undirected graph

A
  • e = unique edge
  • x, y = vertices that e connects
  • SO e = (x,y)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you describe a directed graph?

A
  • e = (x,y)
  • x = origin vertices
  • y = terminating vertex
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Describe this graph

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

What is a complete graph?

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

What is a connected graph?

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

What is a vertex degree in a non directed graph?

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

What is a vertex degree in a directed graph?

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

What is a path?

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

What is a circuit?

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

What is a eulerian path?

A
  • Eulerian Path = Path that visits every edge of a graph ONCE
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is a eulerian circuit?

A
  • Eulerian Circuit = Path that starts and end at the same vertex
    • Vertices can be repeated in both an eulerian path and circuit
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is a hamiltonian path?

A
  • Hamiltonian path = path with every vertex of graph ONCE
17
Q

What is a hamiltonian circuit?

A
  • Hamiltonian circuit = path that starts and ends at the same vertex
    • Not all edges needs to be traverse in a hamiltonian circuit
18
Q

What is an adjacency matrix?

A
19
Q

What is an isomorphic graph?

A
  • Two graphs are isomorphic if
  • The vertices and edges are the same/ preserved in the other
  • Can one graph be rearranged to look like the second one