Graphs and networks Flashcards

1
Q

a walk

A

a route through a graph along edges from one vertex to the next

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

Path

A

A walk in which no vertex is visited more than once

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

Cycle

A

A walk in which the end vertex is the same as the start vertically and no other vertex is visited more than once

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

Order/Degree/Valency

A

The number of edges incident to a vertex

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

Vertices

A

A singular point on a graph where edges can meet

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

Arcs

A

A link between two vertices (or the same one) that can be traversed

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

Simple Graph

A

There are no loops and at most one edge connecting any pair of vertices

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

Sub Graph

A

A graph where all the vertices and edges belong to the original graph
- A part of it essentially

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

Connected graph

A

a graph in which all of the vertices are connected by edges

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

Euler’s Handshaking Lemma (2 points)

A
  • In any undirected graph, the sum of the degrees of the vertices is equal to 2 times the number of edges.
  • The number of odd nodes must be even for this to be true
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Loop

A

An edge that starts and finishes at the same vertex

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

Network/weighted graph

A
  • graph with numbers associated with each edge (its weight)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Hamiltonian Cycle

A

A cycle that includes every vertex

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

Planar Graph

A

One that can be drawn in a plane such that no two edges meet except at a vertex (no crossing edges)

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

Spanning tree

A

A subgraph which includes all the vertices of the original graph and is also a tree

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

Isomorphic graphs

A

Graphs which show the same information but which may be drawn differently

17
Q

Complete graph

A

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

18
Q

Adjacency Matrix

A

Each entry describes the number of arcs joining the corresponding vertex. (a vertex degree table)

19
Q

Distance matrix

A

The entries represent the weight of each arc, not the number of arcs

20
Q

Eulerian graph

A

A graph in which all of the vertices have even degree

21
Q

Semi-Eulerian graph

A

A graph in which all of the vertices except 2 have even degree and the other two are odd

22
Q

A trail

A

a walk in which no edge is visited more than once

23
Q

tree

A

a connected graph with no cycles

24
Q

digraph

A

a graph where some or all of the edges have a specific direction

25
Q

Planarity algorithm

A

May be applied to any graph that contains a hamiltonian cycle. It provides a method of redrawing a graph to become clear if it is planar or not