Discrete Mathematics - Graphs Flashcards

1
Q

What is a Graph

A

A diagram of vertices connected by edges

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

What is a vertex

A

A point on a graph where edges meet and intersect

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

What is an edge

A

A line connected to a vertex

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

What is an Isomorphic Graph

A

A graph that display the same set of veritces and edges as another graph

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

What is a connected graph

A

A graph by which you can travel from one vertex to any other vertex on the graph

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

What are multiple edges

A

Two or more egdes that connect to the same pair of vertices

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

What is a loop

A

A vertex connected to itself by the same edge

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

What is meant by the degree of a vertex

A

The number of edges that a vertex is incedent ( connected ) to

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

What is a Simple graph

A

A graph that has no multiple edges or loops

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

What is a Sub-graph

A

A graph formed by some of the vertices and edges of the original graph

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

What is a Planar Graph

A

A graph that has no edges that cross over each other

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

What is a Bipartite graph

A

A graph containing 2 distinct sets of vertices that have edges which connect vertices from one set to another

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

How is a Bipartite Graph denoted

A

Kₙ,ₘ where ₙ is the number of vertices in the 1st set and, ₘ is the number of vertices in the 2nd set.

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

What is a Complete Graph

A

A simple graph where each vertex is connected to all other vertices within the graph by an edge

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

How is a Complete graph denoted

A

Kₙ where ₙ is the number of vertices in the graph.

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

What is a subdivision

A

Where a vertex has been added to an edge, between a direct pair of vertices

17
Q

What is the equation relating the number of degrees and edges within a graph

A

Degrees (D) = 2 x Edges (E)

18
Q

What is a Euler’s Formula

A

V + F - E =2

19
Q

What is a face in a graph

A

Areas created by edges drawn on a plane

20
Q

What is an adjacency matrix

A

A table showing the vertices and the number of connections between them

21
Q

How is a Complement Graph denoted

A

G’

22
Q

What is a walk

A

A sequence of vertices and edges

23
Q

What is a trail

A

A walk with no repeated edges

24
Q

What is a Cycle

A

A Trail with no repeated vertices, that starts and finishes on the same vertex

25
Q

Explain why Kₙ,ₘ has mn edges

A

Each vertex in the first set is connected by an edge to each vertex in the other set. Meaning that there are n edges for every m vertices

26
Q

Where is an adjacency matrix symetrical from

A

The lead diagonal

27
Q

What is meant by the complement of a simple graph

A

A set of edges such that when added to the original graph gives a complete graph

28
Q

What is a tree

A

A simple-connected graph that has the minimum number of egdes

29
Q

What is the trend for the degrees of vertices in a tree / tree branch

A

The vertices at the end of the branch have a degree of 1. This means a tree with n vertices must have a minimum of 2 vertices with degree 1 and a maximum of n - 1 vertices of degree 1.

30
Q

What is a Traversable graph

A

A graph that can be drawn as a trail that visits every edge

31
Q

What is an Eulerian Graph

A

A graph that has no vertices with an odd degree

32
Q

What is a Semi-Eulerian Graph

A

A graph that has exactly 2 vertices with an odd degree

33
Q

What is a Hamiltonian Graph

A

A graph that contains a cycle that passes through each vertex once, and starts and ends on the same vertex