D1 Definitions Flashcards

1
Q

Tree

A

A tree is a connected graph with no cycles

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

Minimum Spanning Tree

A

A minimum spanning tree is a tree that contains all vertices and the total length of its arcs (weight of the tree) is as small as possible.

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

Bipartite Graph

A

A bipartite graph consists of two sets of vertices X and Y. The edges only join vertices in X to vertices in Y, not vertices within a set.

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

Matching

A

A Matching is the pairing of some or all of the elements of one set, X, with elements of a second set, Y.

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

Degree/Valency

A

The degree/valency of a vertex is the number of edges incident to it.

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

Path

A

A path is a finite sequence of edges, such that the end vertex of one edge in the sequence is the start vertex of the next, and in which no vertex appears more than once.

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

Graph

A

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

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

Subgraph

A

A subgraph is a graph, each of whose vertices and edges belong to the original graph

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

Weighted Graph/Network

A

If a graph has a number associated with each edge (usually called its weight) then the graph is called a
weighted graph or network.

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

Cycle

A

A cycle or circuit is a closed path, i.e. the end vertex of the last edge is the start vertex of the first edge.

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

Connected Graph

A

Two vertices are connected if there is a path between them. A graph is connected if all its vertices are connected.

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

Directed Edges/Digraph

A

If the edges of a graph have a direction associated with them, they are known as directed edges and the graph is known as a digraph.

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

Spanning Tree

A

A spanning tree of a graph is 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
14
Q

Complete Graph

A

A graph in which each of the total number of vertices is connected to every other vertex is called a complete graph.

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

Complete Matching

A

If every member of X is paired with a member of Y the matching is said to be a complete matching.

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

Eulerian

A

If all the valencies in a graph are even, then the graph is Eulerian.

17
Q

Semi-Eularian

A

If precisely two valencies are odd, and all the rest are even, then the graph is semi-Eulerian.

18
Q

Traversable

A

A graph is traversable if it is possible to traverse (travel along) every arc just one without taking your pen from the paper.
A graph is traversable if all the valencies are even.
A graph is semi-traversable if it has precisely two odd valencies.
A graph is not traversable if it has more than two odd valencies.