Graphs and Networks Flashcards

1
Q

What is a connected graph?

A

each vertex is connected to all other vertices either directly or indirectly

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

What is a bridge?

A

An edge that if removed, leaves the graph disconnected

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

What are isomorphic graphs?

A

Graphs that are equivalent to each other

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

What are planar graphs?

A

Graphs that can be drawn so no edges cross

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

What are subgraphs?

A

contains parts of original graph but missing some vertices or edges, any remaining edges are still connected same way

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

What are simple graphs?

A

contains no loops or multiple edges between vertices

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

What are complete graphs?

A

each vertex is connected once to every other vertices (e=v(v-1)/2)

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

What are cycles?

A

• closed path
• start and finish at same vertex
• no repeated edges
no other repeated vertices

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

What is a tree?

A

Connected graph with no loops or cycles

e=v-1

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

Recall Euler’s formula and what it is used for.

A

v+f-e=2

It expresses the relationship between vertices, edges and faces

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

What is a bipartite graph?

A

Graph whose vertices are split into two groups, with each of graph’s edges joining one vertex in one group to a vertex in the other group

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

What is a directed graph (digraph)?

A

Contains vertices joined by directed edges or arcs (arrows)

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

What is a walk?

A

Repeat edges, repeat vertices, open ->start and finish at different vertices, closed-> start and finish at same vertex, may not include all edges or vertices

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

What is a trail?

A

no repeated edges, repeat vertices, open-> start and finish at different vertices (Semi-Eulerian - use all edges), closed -> start and finish at same vertex (Eulerian - use all edges)

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

What is a path?

A
• no repeated edges
• no repeated vertices (except starting vertex)
• Open
	• start and finish at different vertices
	• Semi-Hamiltonian - use all vertices
• Closed
	• start and finish at same vertex
Hamiltonian - use all vertices
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How can you tell when a graph is Eulerian?

A

All vertices have an even degree = traceable (can start at any vertex and finish at same vertex)