Math: Graph Theory

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/29

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

30 Terms

1
New cards

Trail

A walk in which no edge is repeated

2
New cards

Path

A walk in which no edge or vertex is repeated

3
New cards

Circuit

A trail that starts and finishes at the same vertex

4
New cards

Cycle

A circuit in which no vertex is repeated

5
New cards

Graph

A collection of vertices connected by edges, used to represent relationships in various structures.

6
New cards

Vertices

The fundamental units of a graph, representing points or nodes that can be connected by edges.

7
New cards

Edges

Connections between vertices in a graph, representing relationships or paths.

8
New cards

Walk

A sequence of vertices in a graph where each adjacent pair is connected by an edge. A walk can revisit vertices and edges.

9
New cards

Adjacency table

A data structure used to represent a graph, where each row and column corresponds to a vertex, indicating whether pairs of vertices are adjacent.

10
New cards

Connected graph

A graph in which there is a path between every pair of vertices, ensuring that all vertices are reachable from one another.

11
New cards

Subgraph

A graph formed from a subset of the vertices and edges of a larger graph, maintaining the connections between the chosen vertices.

12
New cards

Unconnected graph

A graph that consists of two or more components, meaning there are at least two vertices that are not connected by a path.

13
New cards

Direct

a graph where there is a directed edge between pairs of vertices, indicating a one-way relationship.

14
New cards

Connected

A type of graph in which there is a path between every pair of vertices, ensuring all vertices are reachable from one another.

15
New cards

Strongly connected

A directed graph where there is a directed path from every vertex to every other vertex. This means every pair of vertices is mutually reachable.

16
New cards

Degree

The number of edges incident to a vertex in a graph, indicating how many connections it has.

17
New cards

Even degree

A vertex in a graph has an even degree if it is connected to an even number of edges.

18
New cards

In degree

The number of edges directed into a vertex in a directed graph.

19
New cards

Out degree

The number of edges directed away from a vertex in a directed graph.

20
New cards

Loop

An edge from a vertex back to itself

21
New cards

Simple graph

One with no loops or multiple edges

22
New cards

Multigraph

Multiple edges between vertices

23
New cards

Tree

A connected graph with no cycles.

24
New cards

Eulerian circuit

A circuit which transverses every edge exactly once

25
New cards

Eulerian trail

A trail which transverses every edge exactly once, but does not start and end at the same vertex

26
New cards

A connected graph is Eulerian if…

there are no vertices of odd degree

27
New cards

A connected graph is semi-Eulerian if..

there are exactly two vertices of odd degree

28
New cards

Hamiltonian cycle

A cycle which visits each vertex exactly once

29
New cards

Hamiltonian path

A path which visits each vertex exactly once, but doesn’t start and end at the same vertex

30
New cards

Walk

A sequence of vertices such that each successive pair of vertices is adjacent