Topic 3 - Graphs and Networks

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/47

flashcard set

Earn XP

Description and Tags

term 2

Last updated 7:40 AM on 5/24/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

48 Terms

1
New cards

What is a graph?

A visual representation of a network

2
New cards

What is a vertex?

A point representing an object in a network

3
New cards

What is an edge?

A connection between vertices

4
New cards

What is a loop?

An edge that starts and ends at the same vertex

5
New cards

What is the degree of a vertex?

The number of edges connected to the vertex

6
New cards

What is an arc?

A one-way edge

7
New cards

What is a subgraph?

A smaller section of a graph

8
New cards

What is a digraph?

A graph containing at least one arc

9
New cards

What is a simple graph?

No loops and no multiple edges

10
New cards

What is a complete graph?

Every vertex connected to every other vertex

11
New cards

What is a weighted graph?

Edges have values like distance or cost

12
New cards

What is a bipartite graph?

Two groups with no connections inside the same group

13
New cards

What is a planar graph?

A graph with no crossing edges

14
New cards

What is a face?

An enclosed region in a planar graph

15
New cards

Euler’s formula

V-E+F=2

16
New cards

What is an adjacency matrix?

A table showing connections between vertices

17
New cards

Undirected adjacency matrix rule

Matrix is symmetrical across diagonal

18
New cards

Simple graph adjacency matrix rule

0s on leading diagonal

19
New cards

Complete graph adjacency matrix rule

1s everywhere except leading diagonal

20
New cards

Degree rule from adjacency matrix

Add row or column values

21
New cards

Loop rule in adjacency matrix

Diagonal values count twice

22
New cards

Total edges from adjacency matrix rule

Add one side of leading diagonal

23
New cards

Multistage connection rule

Raise adjacency matrix to a power

24
New cards

Two-stage connection rule

M^2

25
New cards

What is a walk?

Can repeat edges and vertices

26
New cards

What is a trail?

No repeated edges but vertices can repeat

27
New cards

Why is a trail not a path?

Because vertices can repeat

28
New cards

What is a path?

No repeated edges and no repeated vertices

29
New cards

Why is a path also a trail?

Because if vertices do not repeat then edges cannot repeat

30
New cards

What is a circuit?

A closed trail

31
New cards

Why is a circuit not always a cycle?

Because vertices can repeat

32
New cards

What is a cycle?

A closed path

33
New cards

Why is a cycle stricter than a circuit?

Because no vertices or edges can repeat

34
New cards

What is a connected graph?

Every vertex can be reached from another vertex

35
New cards

What is a bridge?

An edge that disconnects the graph if removed

36
New cards

What is a Hamiltonian graph?

Visits every vertex exactly once in a cycle

37
New cards

Why is a Hamiltonian graph not Eulerian?

Hamiltonian focuses on vertices not edges

38
New cards

What is a semi-Hamiltonian graph?

Visits every vertex exactly once in an open path

39
New cards

Why is a semi-Hamiltonian graph not Hamiltonian?

Because it does not end where it started

40
New cards

What is a Eulerian graph?

Uses every edge exactly once in a closed trail

41
New cards

Why is a Eulerian graph not Hamiltonian?

Eulerian focuses on edges not vertices

42
New cards

Eulerian graph rule

All vertices even degree

43
New cards

What is a semi-Eulerian graph?

Uses every edge exactly once in an open trail

44
New cards

Semi-Eulerian graph rule

Exactly two odd vertices

45
New cards

Why is a semi-Eulerian graph not Eulerian?

Because it starts and ends at different vertices

46
New cards

What is the shortest path?

The path with the smallest total weight

47
New cards

Shortest path algorithm start rule

Label starting vertex 0

48
New cards

Shortest path algorithm rule

Keep smallest possible total at each vertex