FURTHER MATHS - MWA

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

1/30

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.

31 Terms

1
New cards

trail

sequence of joined edges such that no edges are
repeated

2
New cards

Algorithm

a precise set of instructions which if followed will solve a problem

3
New cards

Path

is a sequence of edges such that the ned vertex on one edge is that start of the next, no vertex is visited more than once.

4
New cards

Heuristic Algorithm

provide a solution to the problem but not necessarily the optimum solution

5
New cards

First Fit Algorithm

Take the items in the order listed and place them into the first compartment that they will fit into.

6
New cards

First Fit Decreasing Algorithm

List the items in decreasing order and then place apply the first fit algorithm

7
New cards

Full Bin Algorithm

Gather the items into groups that fully fill the compartments completely, then pack the rest efficiently. (your own choice)

8
New cards

Recursive Algorithm

An algorithm which repeats instructions on a previous value sorted. The instructions used will define the output of the algorithm.

9
New cards

Efficiency

A measure of the speed or time of operation of the Algorithm

10
New cards

Worst Case Scenario Comparisons

1/2n(n-1)

11
New cards

digraph

directed graph, in which at least one edge has a direction associated with it.

12
New cards

Bipartite graph

where the nodes are in two distinct sets. Every edge connects a member of the first set to a member of the second set k(4,3)

13
New cards

isomorphic

corresponding or similar in form and relations.

14
New cards

Cycle

a closed path, the first and last vertex are the same.

15
New cards

Planar

Graphs which can be drawn without edges crossing

16
New cards

complete bipartite graph Ka,b

Each vertical in group A is joined to every vertex in group B by an edge.

17
New cards

Leading diagonal of a matrix

Symmetrical either side

18
New cards

Simple graph

No loops or multiple edges

19
New cards

Connected graph

Every vertex is linked by at least a single edge

20
New cards

Simply connected graph

Every edge is connected by only a single edge

21
New cards

Complete graph

Simple graph in which every vertex is connected to every other by a single edge Kn
N = vertices

22
New cards

Formula for edges in a complete graph

1/2n(n-1)

23
New cards

Degree of a vertex

Number of edges which start or finish at the vertex

24
New cards

Handshaking theorem

Sum of degree of vertices = 2x number of edges

25
New cards

Tree

A connected graph in which there are no cycles

26
New cards

Formula for tree

# of edges is = # of vertices - 1

27
New cards

Spanning tree

A subgraph which includes all the vertices in the original graph but is also a tree

28
New cards

Eulerian graph

It is possible to make a trail that uses all edges once, starting and ending at the same vertex

29
New cards

Semi-Eulerian graph

It is possible to make a trail that uses all edges once, starting and ending at different vertices

30
New cards

When is a connected graph Traversable (Eulerian)?

If and only it has no nodes with an odd degree

31
New cards

When is a connected graph semi- Eulerian ?

When a graph has exactly two odd nodes