Graph Theory Definitions

5.0(1)
studied byStudied by 35 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/56

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.

57 Terms

1
New cards

End vertices

two vertices connected by a specific edge

2
New cards

Parallel edges

edges with the same end vertices

3
New cards

Loop

an edge connecting a vertex to itself

4
New cards

Simple graph

a graph without parallel edges or loops

5
New cards

Empty graph

a graph with no edges

6
New cards

Null graph

a graph with no vertices

7
New cards

Trivial graph

a graph with only one vertex

8
New cards

adjacent edges

edges with a common end vertex

9
New cards

adjacent vertices

vertices connected by an edge

10
New cards

degree of a vertex

the number of edges connected to that vertex (loops are counted twice)

11
New cards

pendant vertex

a vertex with degree 1

12
New cards

pendant edge

an edge with a pendant vertex as an endpoint

13
New cards

isolated vertex

a vertex with degree 0

14
New cards

walk

a sequence of edges and vertices from an initial vertex to a terminal vertex

15
New cards

trail

a walk with no repeating edges

16
New cards

path

a walk with no repeating vertices (and edges)

17
New cards

closed walk

a walk from a vertex to itself

18
New cards

closed trail (circuit)

a trail from a vertex to itself

19
New cards

closed path (cycle)

a path from a vertex to itself

20
New cards

circuitless graph

a graph with no circuits

21
New cards

length of a walk

number of edges you go over to get to the terminal vertex

22
New cards

connected graph

a graph where all vertices are connected to each other

23
New cards

cut vertex

a vertex whose removal increases the number of connected components

24
New cards

cut edge

an edge whose removal increases the number of connected components

25
New cards

Euler walk

a walk that visits every edge exactly once

26
New cards

Euler circuit

a closed walk that visits every edge exactly once

27
New cards

Euler graph

a graph that has an Euler circuit

28
New cards

When does a graph have an Euler walk?

if it has exactly 2 vertices with an odd degree

29
New cards

When does a graph have an Euler circuit?

if every vertex has an even degree

30
New cards

Hamilton circuit

a circuit (closed walk) that visits every vertex exactly once

31
New cards

Hamilton path

a path that visits every vertex exactly once

32
New cards

Hamiltonian graph

a graph that has a Hamilton circuit

33
New cards

Dirac’s theorem

in a simple graph of n vertices, if the degree of each vertex is at least n/2, then the graph contains a Hamiltonian circuit

34
New cards

Ore’s theorem

in a simple graph of n vertices, if the degree of any two non-adjacent vertices sums to at least n, then the graph contains a Hamiltonian circuit

35
New cards

Complete graph (Kn)

a graph of n vertices, where each pair of vertices is connected by an edge

36
New cards

Cycle graph (Cn)

a graph of n vertices, where each vertex has a degree of 2 and are connected in a closed loop (edges follow “around” the graph)

37
New cards

Wheel graph (Wn)

a graph formed when adding a vertex to a cycle graph of n vertices (Cn) and connecting that vertex to all other vertices

38
New cards

Bipartite graph

a graph V whose vertices can be divided into two disjoint sets V1 and V2 such that every edge connects a vertex in V1 to one in V2

39
New cards

Complete bipartite graph (Km,n)

a bipartite graph that includes all possible edges between vertices in V1 and vertices in V2

40
New cards

When is a graph circuitless?

when there are no loops and there is at most one path between any two given vertices

41
New cards

When is a graph bipartite?

if it does not have a cycle of odd length

42
New cards

Tree

a connected graph with no circuits

43
New cards

Trivial Tree

a tree with one vertex

44
New cards

Forest

a graph that is circuit-free and not connected

45
New cards

rooted tree

a tree in which one vertex is designated as the root and every edge is away from the root

46
New cards

level of a vertex

number of edges you need to go over to get from that vertex to the root

47
New cards

height of a rooted tree

max level of any vertex of the tree

48
New cards

children of vertex v

all vertices that are adjacent to v and one level farther away from the root than v

49
New cards

internal vertices

vertices that have children

50
New cards

terminal vertex (leaf)

a vertex with no children

51
New cards

siblings

two distinct vertices that have the same parent

52
New cards

ancestors of a vertex

vertices on the path from the vertex to the root (including the root)

53
New cards

descendants of a vertex

vertices that have that vertex as an ancestor

54
New cards

m-ary tree

a rooted tree where every internal vertex has no more than m children

55
New cards

full m-ary tree

every internal vertex has exactly m children

56
New cards

What are the parts of a decision tree?

root nodes, internal nodes, and leaf nodes

57
New cards

How many edges does a tree with n vertices have?

A tree with n vertices has n - 1 edges