Networking Definitions Flashcards

(34 cards)

1
Q

ADJACENCY MATRIX

A

A square matrix showing the number of edges joining each pair of vertices in a graph

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

ADJACENT VERTICES

A

vertices that are joined by an edge

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

BRIDGES

A

an edge in a connected graph that, if removed, leaves the graph disconnected

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

CIRCUIT

A

is a walk that has no repeated edges and starts and ends at the same vertex

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

CLOSED SEQUENCE

A

a sequence that starts and finishes at the same vertex

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

CONNECTED GRAPHS

A

is when there is a path between every pair of vertices

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

CYCLE

A

is a walk that has no repeated vertices and starts and ends at the same vertex

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

DEGREE

A

the number of edges attached to a vertex. A loop counts as degree of 2

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

EDGE

A

a line joining one vertex to another or itself (loop)

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

EULERIAN CIRCUIT

A

is an Euler trail that starts and finishes at the same vertex. It must have an even degree at every vertex

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

EULERIAN TRAIL

A

passes along every edge once, starting at one vertex and finishing at another. A network must be connected and have exactly two vertices of odd degree, with the remaining vertices having even degree

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

EULERS FORMULA

A

is V + F = E + 2 relates the number of vertices, faces and edges in a connected graph

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

FACE

A

area in a graph that can only be reached by crossing an edge. The area surrounding a graph is a face

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

HAMILTONIAN CYCLE

A

a Hamilton path that starts and finishes at the same vertex

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

HAMILTONIAN PATH

A

passes through every VERTEX once, it may not use all edges

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

ISOLATED VERTEX

A

a vertex with no edges incident to it - ie a vertex on its own.

17
Q

ISOMORPHIC GRAPHS

A

can look different but be the same. They have the same number of edges and vertices. Corresponding vertices have the same degree and the edges connect the same vertices

18
Q

LOOP

A

an edge in a graph that joins a vertex to itself. Degree = 2. Edge = 1

19
Q

MINIMUM SPANNING TREE

A

spanning tree of minimum length. For a given connected graph, there may be more than one minimum spanning tree

20
Q

MULTIPLE EDGES

A

more than one edge connects the same two vertices in a graph

21
Q

NETWORK

A

a weighted graph in which the weights are physical quantities (e.g. distance, time, cost)

22
Q

OPEN SEQUENCE

A

a sequence that does not start and finish at the same vertex

23
Q

PATH

A

is a walk with no repeated vertices or edges

24
Q

PLANAR GRAPH

A

graph that can be drawn in such a way that no two edges intersect, except at the vertices.

25
PRIMS ALGORITHM
used to determine a minimum spanning tree in a connected graph.
26
SIMPLE GRAPH
a graph with no loops or multiple edges.
27
SPANNING TREE
a subgraph of a connected graph that contains ALL the vertices of the original graph, but without any multiple edges, circuits or loops.
28
SUBGRAPH
part of a graph that is also a graph in its own right
29
TRAIL
is a walk with no repeated edges
30
TRAVERSABLE GRAPHS
a path through the network along the edges, using each edge only once
31
TREE
a connected graph with no circuits, multiple edges or loops. If n vertices then (n - 1) edges.
32
VERTICES
the dots in a graph
33
WALKS
a sequence of edges, linking successive vertices, which connects two different vertices in a graph
34
WEIGHTED GRAPHS
a graph in which a number representing the size of some quantity is associated with each edge