Graph Theory Terminology

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

1/43

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

44 Terms

1
New cards

Graph

A non-empty set of vertices and edges connecting vertices

2
New cards

Parallel Edges

Two edges that have the same end vertices

3
New cards

Loop

An edge that connects a vertex to itself

4
New cards

Simple Graph

A graph that does not contain parallel edges or loops

5
New cards

End Vertex

A vertex at one of the endpoints of an edge in a graph

6
New cards

Empty Graph

A graph that contains no edges

7
New cards

Null Graph

A graph with no vertices and no edges

8
New cards

Trivial Graph

A graph with a single vertex and no edges

9
New cards

Adjacent Edges

Two edges that share a common vertex

10
New cards

Adjacent Vertices

Two vertices that are connected by an edge

11
New cards

Deg

12
New cards

d(V)

the number of edges connected to a vertex, loops are counted twice

13
New cards

Pendant Vertex

a vertex connected to exactly one edge

14
New cards

Pendant Edge

an edge that connects a pendant vertex to the rest of the graph.

15
New cards

s(G)

The minimumdegree of any vertex in graph G

16
New cards

Δ(G)

The maximum degree of any vertex in graph G

17
New cards

Complete Graph - K(n)

A simple graph in which every vertex is connected/adjacent to all other vertices

18
New cards

Cycle Graph - C(n)

A simple graph that is a cycle with n vertices (n >2). Each vertex has degree 2.

19
New cards

Wheel Graph - W(n)

A graph formed by connecting a single central vertex to all vertices of a cycle graph C(n) with n vertices, resulting in n+1 vertices in total.

20
New cards

Bipartite Graph

A graph whose vertices can be divided into two disjoint and independent sets such that every edge connects a vertex in one set to a vertex in the other set.

21
New cards

Complementary Graph

The graph formed by replacing the edges of a graph with non-edges and the non-edges with edges, while keeping the same set of vertices

22
New cards

Walk

A sequence of vertices and edges that helps us to travel from an initial vertex to a terminal vertex in a graph

23
New cards

Terminal Vertex

A vertex with no outgoing edges, marking the end of a walk in a graph

24
New cards

Initial Vertex

The starting point of a walk in a graph, where the traversal begins

25
New cards

Trail

A walk in which all edges are distinct, meaning no edge is traversed more than once.

26
New cards

Circuit

A closed trail in a graph where the starting and ending vertices are the same, and all edges are distinct.

27
New cards

Path

A walk in a graph where all vertices are distinct, meaning no vertex is visited more than once.

28
New cards

Cycle

A closed path in a graph where the starting and ending vertices are the same, and all vertices are distinct.

29
New cards

Circuitless Graph

A graph with no loops & there is at most one path between any two vertices

30
New cards

Cut Vertex

A vertex in a graph whose removal increases the number of connected components, effectively disconnecting the graph.

31
New cards

Cut Edge

An edge in a graph whose removal increases the number of connected components, effectively disconnecting the graph.

32
New cards

Euler Walk

A walk in a graph that visits every edge exactly once and may repeat vertices.

33
New cards

Euler Circuit

An Euler walk that starts and ends at the same vertex, visiting every edge exactly once.

34
New cards

Hamiltonian Cycle

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

35
New cards

Hamiltonian Path

A path in a graph that visits every vertex exactly once without necessarily returning to the starting vertex.

36
New cards

Dirac’s Theorem

States that in a graph of n vertices (n ≥ 3), if each vertex has a degree of at least n/2, then the graph contains a Hamiltonian cycle.

37
New cards

Ores Theorem

States that any graph with n vertices (n ≥ 3) that contains no K{3,3} or K{5} subgraphs is Hamiltonian.

38
New cards

Tree

A connected acyclic graph that has no cycles and any two vertices are connected by exactly one path.

39
New cards

Trivial Tree

A tree with only one vertex and no edges, which is a special case of a tree.

40
New cards

Forest

A disjoint union of trees, where each component is a tree and there are no cycles.

41
New cards

Rooted Tree

A tree in which one vertex is designated as the root, and every other vertex has a unique parent, thus establishing a hierarchical structure.

42
New cards

Height

The length of the longest path from the root to a leaf in a tree.

43
New cards

Internal Vertex

A vertex in a tree that has at least one child, meaning it is not a leaf.

44
New cards

Leaf

A vertex in a tree that has no children, meaning it is at the end of a path.