Further maths - Graph definitions

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

25 Terms

1
New cards

Graph, vertice, nodes

a graph consists of points (vertices / nodes) which are connected by lines (edges / arcs)

2
New cards

Weighted graph / network

if a graph has a number associated with each edge (usually called its weight) then the graph is known as a weighted graph / network

3
New cards

subgraph

a graph where each vertex belongs to an original graph and each edge belongs to an original graph, it’s part of the original graph

4
New cards

degree/valency

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

5
New cards

walk

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

6
New cards

path

a walk in which no vertex is visited more than once

7
New cards

even / odd degree

if a vertex’s degree is even it had even degree if it’s odd it had odd degree

8
New cards

trail

a walk in which no edge is visited more than once

9
New cards

cycle

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

10
New cards

Hamiltonian cycle

a cycle that includes every vertex

11
New cards

loop

edge that starts and finishes at the same vertex

12
New cards

connected

two vertices are connected if there is a path between them, graphs are connected if all its vertices are connected

13
New cards

simple graph

a graph with no loops and there is at most one edge connecting any pair of vertices

14
New cards

directed edges + graph / digraph

if the edges of a graph have a direction associated with them they are known as directed edges and the graph is a directed graph / digraph

15
New cards

Euler’s handshaking lemma

in any undirected graph the sum of the degrees of the vertices = 2 x the number of edges ; as a result the number of odd nodes must be even

16
New cards

tree

connected graph with no cycles

17
New cards

spanning tree

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

18
New cards

complete graph

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

19
New cards

Isomorphic graph

graphs that have the same number of vertices and the degrees of corresponding vertices are the same and they’re connected in the same way

20
New cards

planar graph

a graph that can be drawn in a plane in a way so that no two edges meet except at a vertex to which they’re both incident

21
New cards

eulerian graph + cycle

a graph with every vertex of even degree, a cycle which includes every edge of a graph exactly once

22
New cards

semi-eulerian graph

a graph with exactly two vertices of odd degree

23
New cards

efficiency

measure of an algorithm’s run-time and in most cases is proportional to the number of operations that must be carried out

24
New cards

size

of a problem is a measure of its complexity and so in the case of algorithms on graphs it’s likely to be the number of vertices on the graph

25
New cards

order

of an algorithm is a measure of its efficiency as a function of the size of the problem