Graphs and Associated Terminology

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

1/35

flashcard set

Earn XP

Description and Tags

Vocabulary and formulas related to graph theory, including vertex properties, graph types, and connection rules.

Last updated 6:03 AM on 7/6/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

36 Terms

1
New cards

Graph

A diagram that shows connections between people or objects, such as towns connected by roads or people on social media.

2
New cards

Vertex

A dot in a graph representing an object, person, or city; the plural form is vertices.

3
New cards

Edge

A line that joins pairs of vertices to represent the connection between them.

4
New cards

Multiple edges

A feature where two or more edges connect the same two vertices in a graph.

5
New cards

Simple graph

A graph that has no loops and no duplicate or multiple edges.

6
New cards

Isolated vertex

A vertex that is not connected to any other vertex by an edge, resulting in a degree of 00.

7
New cards

Degenerate graph

A graph where all vertices are isolated, meaning there are no edges in the graph at all.

8
New cards

Connected graph

A graph where every vertex is connected to every other vertex, either directly or indirectly via other vertices.

9
New cards

Bridge

An edge in a connected graph that, if removed, will cause the graph to become disconnected.

10
New cards

Complete graph

A graph where every vertex is connected directly by an edge to every other vertex in the graph.

11
New cards

Degree of a vertex in a complete graph

One less than the number of vertices, represented as n1n - 1.

12
New cards

Number of edges in a complete graph

For a complete graph with nn vertices, the formula is 12×n×(n1)\frac{1}{2} \times n \times (n - 1).

13
New cards

Subgraph

A part of a larger graph where all of its edges and vertices must exist in the original graph.

14
New cards

Loop

An edge that connects a vertex to itself, adding 22 to the degree of that vertex.

15
New cards

Degree of a vertex

The number of times an edge connects to a vertex, written as deg(V)\text{deg}(V).

16
New cards

Even vertex

A vertex where the degree of the vertex is an even number.

17
New cards

Odd vertex

A vertex where the degree of the vertex is an odd number.

18
New cards

Sum of degrees

The total value of all vertex degrees in a graph, which is equal to 22 times the number of edges.

19
New cards

Eulers formula

V + f - e = 2

20
New cards

Walk

A route path through a graph from one vertex to another along the edges of a graph

21
New cards

Open walk

A walk that starts and ends at different vertices

22
New cards

Trail

A walk that has no repeated edges but can repeat vertices

23
New cards

Path

A walk with no repeated edges or vertices

24
New cards

Closed trail

A trail that starts and ends at the same vertex

25
New cards

Cycle

A path that starts and ends at the same vertex

26
New cards

Eulerian trail

A closed trail that involves every edge of the graph, where every vertex must have an even degree

27
New cards

Eulerian graph

A graph that contains an Eulerian trail

28
New cards

Semi Eulerian graph

A graph that contains an open trail that involves every edge of the graph and has two vertices eith an odd degree

29
New cards

Hamiltonian cycle

A closed path that visits every vertex of the graph and starts and ends in the same place

30
New cards

Hamiltonian path

An open path that visits every vertex of the graph

31
New cards

Semi-Hamiltonian path

A graph that contains an Eulerian Hamiltonian path

32
New cards

Weighted graph

A graph that has numbers associated with each edge of the graph

33
New cards

Network

A weighted graph that represents physical quantities ( e.g time, distance, cost, ect. )

34
New cards

The travelling salesperson problem

Finding a Hamiltonian cycle in a graph that has the smallest total weight ( uses key phrases/words such as minimising the total distance travelled through a graph to return to the start vertex …)

35
New cards

The shortest path problem

Finding the shortest path from one vertex to another, but does not have to visit every vertex

36
New cards

Planar

A graph where all vertices are connected but none cross over each other