UNIT 4 GENERAL MATH QCAA

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

1/26

flashcard set

Earn XP

Description and Tags

Finance, Graphs + Networks, Networks and decision mathematics

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

27 Terms

1
New cards

edge

lines on a graph

2
New cards

vertex

the points on the graph

3
New cards

single graph/network

each pair of vertices is connected by at most one edge

4
New cards

complete graph/network

each vertex connects to every other vertex

5
New cards

connected graph/network

possible to travel between any given pair of vertices

6
New cards

disconnected graph/network

at least one vertex which can’t be reached

7
New cards

directed graph (digraph)

only move along the edges in one way by arrows

8
New cards

undirected graph

edges can be travelled in either direction

9
New cards

degree

number of edges connected to a vertex

10
New cards

subgraph

a small part of any graph

11
New cards

loop

edge which travels to and from one vertex

12
New cards

planar

when graph is re-drawn to have no crossing edges

13
New cards

face

flat surfaces in graph including the entire thing as a whole

14
New cards

walk

any route taken through a network, including routes that repeat edges and vertices

15
New cards

closed walk

a route taken through a network that starts and ends at the same vertex

16
New cards

trail

a walk in which no edges are repeated

17
New cards

path

a walk in which no vertices are repeated, except possibly the start and finish

18
New cards

cycle

a path beginning and ending at the same vertex

19
New cards

closed trail

a trail beginning and ending at the same vertex

20
New cards

Eulerian trail

connected graph which allows you to start a a vertex, traverse each edge only once and return to vertex where started

21
New cards

semi-Eulerian

connected graph which allows start at a vertex and traverse each edge only once without returning to the start

22
New cards

Hamiltonian cycle

includes every vertex exactly once, which ending at initial vertex

23
New cards

semi-Hamiltonian cycle

includes every vertex exactly once, but ends at a vertex other than the starting vertex

24
New cards

weighted graphs

attach value to edges

25
New cards

trees

are simple connected with no circuits

26
New cards

spanning trees

subgraphs that include all the vertices of the original graphs

27
New cards

prims algorithm

  1. vertex with the lowest weighted edges

  2. progressively select lowest edges

  3. continue until all are selected