graph theory terms

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/22

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 1:39 AM on 8/18/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

23 Terms

1
New cards

Vertices

points on a graph representing an object or entity

2
New cards

edges

lines that connect vertices

3
New cards

loops

an edge that connects a vertex to itself

4
New cards

undirected graph

when you are able to move in either direction along the edges of a graph

5
New cards

sum of degrees

2E=D

6
New cards

directed graphs

a graph where edges have a direction show using arrows.

7
New cards

degree of a vertex

the number of edges incident to a vertex

8
New cards

in and out degrees

in degree is the number of edges toward the vertex

out degree is the number of edges directed out of it

9
New cards

simple graph

a graph in which there are no loops, and there is at most one edge connecting any pair of vertices

10
New cards

subgraph

a graph made from a subset of the vertices and edges of another graph

11
New cards

connected

a graph where there is a path (a walk in which no vertex or edge is repeated) between every pair of vertices

12
New cards

strongly connected

a directed graph where there is a directed path from every vertex to every other vertex

13
New cards

complete graph

a simple graph where every pair of vertices is connected by an edge

14
New cards

formula for number of edges

E = n(n-1)/2

15
New cards

weighted graph

a graph where each edge is assigned a weight such as a distance or cost

16
New cards

weighted adjacency table

summarizes the weights on a graph, - symbol indicates that two vertices are not adjacent

17
New cards

walk

a route through a graph along edges from one vertex to the next (edges and vertices can repeat).

18
New cards

trail

a walk in which no edge is repeated but a repeated vertex is allowed

19
New cards

path

a walk in which no edge or vertex is repeated

20
New cards

circuit

a walk that starts and finishes at the same vertex with no edges repeated (vertices can be repeated)

21
New cards

cycle

a walk that starts and finishes at the same vertex where no edge or vertex is repeated

22
New cards

tree

a connected graph with no cycles

23
New cards

spanning tree

a subgraph that contains all the vertices of the original connected graph, is connected and has no cycles and n-1 edges