Modelling With Graphs Flashcards

1
Q

Nodes/Vertices

A

Points on a graph, usually connected by arcs or edges

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

Arcs/Edges

A

Lines that connect nodes

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

What is a Network

A

A weighted graph - where the edges of a graph have a corresponding value (weights)

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

What is a simple graph

A

A graph in which there are no loops and each pair of vertices is connected by at MOST one arc (can be not connected)

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

Directed graph

A

A graph in which at least one of the arcs has a direction associated with it

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

Degree/Order/Valency

A

The number of arcs incident to a vertex

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

Walk

A

Route through a graph along edges from one node to the next

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

Path

A

A walk where no node is visited more than once

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

Trail

A

Walk where no edge is visited more than once

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

Cycle

A

Walk where start and end vertex are the same, no other node is visited more than once

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

Hamiltonian cycle

A

Cycle where every node is visited

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

Connected Graph

A

A graph where every vertex is connected by a walk

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

The handshake lemma

A

In an undirected graph:

Sum of valences = 2(#edges)
Therefore the number of odd vertices must be even

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

Tree

A

Connected graph with no cycles

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

Spanning Tree

A

Sub Graph which includes every node and is also a tree

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

A complete Graph

A

A graph where every vertex is directly connected by a single edge to each of the other vertices

17
Q

Edges to draw Kn

A

n^2 - n
—————
2

18
Q

Isomorphic graph

A

Two graphs are isomorphic if they show the same information but are constructed different

19
Q

What does a graph need to be isomorphic

A
  • Same number of vertices
  • same set of orders
  • Each vertex must have the same set of Valencies of connected nodes as the corresponding vertex in the other graph (see book)