Key Terms Flashcards

1
Q

What are the ‘points’ and the ‘lines’ on a graph called?

A
  • The ‘points are referred to as nodes or vertices.

- The ‘lines’ are referred to as edges or arcs.

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

Define a network:

A

A network is a graph with weighted edges. (A weighted edge is an edge with values assigned to it, such as a line being 72 km).

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

What is the degree/valency/order of a point?

A

The number of edges connected to the vertex.

Note: depending on the order of a node it can be odd or even.

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

How would you describe two graphs that have equal amounts of edges, nodes and degrees?

A

These two graphs would be describes as ‘isomorphic’.

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

Describe the difference between a walk and trail:

A
  • A walk is a sequence of edges where the end vertex of one edge is the start vertex of the next.
  • A trail is a sequence of edges where the end vertex of one edge is the start vertex of the next but where none of the edges are repeated. (A trail is a walk where none of the edges are repeated).
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a path?

A
  • A path is a sequence of edges where the end of one edge is the start vertex of the next but none of the edges or vertices are repeated. (A path is a trail where none of the vertices are repeated).
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Define a cycle or circuit:

A
  • A cycle/circuit is a closed sequence of edges where the end of one edge is the start vertex of the next but where no edges or vertices are repeated. (A cycle/circuit is a closed path)

Closed - The end of the path joins back to the beginning).

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

What is a loop?

A

An edge connecting a node to itself.

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

Describe a simple graph:

A

The graph has no loops and at most one edge connected any pair of vertices.

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

What is a tree?

A

A tree is a connected graph with no cycles.

  • A graph is connect if all of its pairs of vertices are connected.
  • Two vertices are connected if there is a path between them
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is a ‘complete’ graph?

A

A complete graph is one in which every pair of vertices is connected by a single edge.

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

A complete graph with ‘n’ vertices is referred to as…?

A

K (subscript) n

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

Define a planar graph:

A

A planar graph is one that can be drawn so that none of the arcs cross.

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

What is a graph:

A

A graph consists of points (called nodes or vertices ) which are connected by lines (called edges or arcs).

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

Describe a directed graph:

A

If the edges/arcs on a graph have directions on them they are called directed edges, making the graph a directed graph (or a digraph).

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

Explain Euler’s handshaking lemme

A

In any UNDIRECTED graph, the sum of the degrees of the vertices is equal to 2 * the number of the edges. Consequently, the number of odd nodes must be even.

17
Q

What is a Hamiltonian cycle?

A

A cycle that passes through EVERY node once before returning to the starting vertex.

  • One possible way to check if a cycle is Hamiltonian is to count the edges and vertices (which should be equal).