Further maths- Decision and definitions

0.0(0)
studied byStudied by 1 person
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/34

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.

35 Terms

1
New cards

Algorithm

a finite sequence of step-by-step instructions carried out to solve a problem

2
New cards

How are unordered lists sorted?

bubble sort or quick sort

3
New cards

A graph

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

4
New cards

Weighted graph or network

A graph that has a number associated with each edge

5
New cards

Vertex or vertices or nodes

a point on a graph

6
New cards

An edge or arc

a line segment joining vertices

7
New cards

Vertex set

A list of vertices

8
New cards

Edge set

a list of edges

9
New cards

A subgraph

a graph of each of whose vertices and edges belongs to another graph

10
New cards

A degree or valency or order of a vertex

the number of edges incident to it

11
New cards

A walk

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

12
New cards

A path

A walk in which no vertex is visited more then once

13
New cards

A trail

a walk in which no edge is visited more than once

14
New cards

A cycle

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

15
New cards

A Hamiltonian cycle

a cycle that includes every vertex

16
New cards

A connected graph

all vertices are connected

17
New cards

A loop

an edge that starts and finishes at the same vertex

18
New cards

A simple graph

is one in which there are no loops and there is at more one edge connecting any pair of vertices

19
New cards

directed graph or digraph

a graph in which the edges have a direction associated with them.

20
New cards

Euler’s handshaking lemma

Any undirected graph that the sum of degrees of the vertices is equal to 2x the number of edges. As a consequence, the number of odd vertices must be even, including the number zero

21
New cards

A tree

a connected graph with no cycles

22
New cards

A spanning tree

a subgraph which includes all the vertices and is also a tree

23
New cards

A complete graph

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

24
New cards

An isomorphic graph

graphs which show the same information but may be drawn differently

25
New cards

Adjacency matrix

describes the number of arcs joining the corresponding vertices

26
New cards

A distance matrix

the entries represent the weight of each arc, not the number or arcs

27
New cards

A planar graph

one that can be drawn in a plane such that no two edges meet except at a vertex

28
New cards

Kruskal’s algorithm

used to find a minimum spanning tree

29
New cards

Prim’s algorithm

used to find a minimum spanning tree

30
New cards

Dijkstra’s algorithm

used to find the shortest path through a network

31
New cards

Floyd’s algorithm

used to find the shortest pair between every pair of vertices in a network

32
New cards

Eulerian graph or network

one which contains a trail that includes every edge and starts and finishes at the same vertex. Any connected graph whose vertices are all even is eularian.

33
New cards

A semi-Eulerian graph or network

one which contains a trial that includes every edge but starts and finished at different vertices. Any connected graph with exactly two odd vertices is semi-Eulerian

34
New cards

A walk in a network

A finite sequence of edges such that the end vertex of one edge is the start vertex of the next

35
New cards

A tour

A walk in which visits every vertex and returns to its starting vertex