Graph Theory Definitions

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/26

flashcard set

Earn XP

Description and Tags

These flashcards cover the definitions and key properties of graph theory concepts introduced in the lecture.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

27 Terms

1
New cards

Graph

A set of vertices and edges connecting some pairs of vertices.

2
New cards

Vertex (node)

An individual object in a graph.

3
New cards

Edge

A connection between two vertices.

4
New cards

Degree

Number of edges incident to a vertex.

5
New cards

Regular Graph

A graph where every vertex has the same degree.

6
New cards

Adjacency List

A representation where each vertex stores a list of adjacent vertices.

7
New cards

Adjacency Matrix

A matrix where entry (i, j) indicates the presence (or absence) of an edge between vertices i and j.

8
New cards

Walk

A sequence of vertices and edges where each edge's endpoints are consecutive vertices.

9
New cards

Length of a Walk

Number of edges in the walk.

10
New cards

Closed Walk

A walk where the first and last vertices are the same.

11
New cards

Trail

A walk with no repeated edges.

12
New cards

Circuit

A closed trail (starts and ends at the same vertex without repeating edges).

13
New cards

Path

A walk with no repeated vertices.

14
New cards

Cycle

A closed path (starts and ends at the same vertex, no other repeated vertices).

15
New cards

Connected Graph

A graph in which there is a path between any two vertices.

16
New cards

Connected Component

A maximal set of connected vertices.

17
New cards

Edge Connectivity

The minimum number of edges that need to be removed to disconnect the graph.

18
New cards

k-Edge Connected Graph

A graph that remains connected whenever fewer than k edges are removed.

19
New cards

Euler Circuit

A closed walk that includes every edge exactly once.

20
New cards

Euler Trail

A walk that includes every edge exactly once but does not necessarily end at the starting vertex.

21
New cards

Even Degree

A vertex has even degree if the number of edges incident to it is even.

22
New cards

Hamiltonian Path

A path that visits every vertex exactly once.

23
New cards

Hamiltonian Cycle

A cycle that visits every vertex exactly once and returns to the starting vertex.

24
New cards

Isolated Vertex

A vertex with degree 0.

25
New cards

Maximal

A property is maximal if it cannot be extended by including one more element.

26
New cards

Incident

An edge is incident to a vertex if it is connected to that vertex.

27
New cards

Neighbors

Vertices connected by an edge.