Discrete Structures - Revised Graph Theory

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

1/52

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.

53 Terms

1
New cards

Graph

collection of nonempty set of vertices and edges

2
New cards

end vertices

the two vertices at either end of an edge

3
New cards

parallel edges

edges with the same start and end vertices

4
New cards

loop

edges with the same start and end vertex

5
New cards

simple graph

a graph with no loops or parallel edges

6
New cards

empty graph

a graph with no edges

7
New cards

null graph

a graph with no vertices

8
New cards

trivial graph

a graph with only one vertex

9
New cards

adjacent edges

when an edge shares one or more vertice s

10
New cards

adjacent vertices

vertices connected by the same edge

11
New cards

degree

number of edges that are connected to a vertex (count loops twice)

12
New cards

pendent vertex

a vertex with degree of 1

13
New cards

pendent edge

a edge connected to a vertex with a degree of 1

14
New cards

isolated vertex

a vertex with degree 0

15
New cards

degree sequence

sequence of degrees in decreasing order

16
New cards

graphic

when a degree sequence forms a simple graph

17
New cards

complete graph

Kn, a graph where each vertex is adjacent to all the other vertices

18
New cards

Cycle Graph

a graph where n vertices, n >= 3, and each vertex has a degree of 2.

19
New cards

Wheel Graph

Wn, which is a cycle graph, but with an extra vertex that is adjacent to all the other vertices in the graph.

20
New cards

Bipartite Graph

A graph where its set of vertices can be divided into two sets, V1 and V2, and none of the vertices in V1 or V2 are adjacent within their own sets

21
New cards

Complete Bipartite Graph

A Bipartite Graph where each vertex is adjacent to every vertex from the other set and so on.

22
New cards

walk

a sequence of vertices and edges that allow us to travel from initial vertex to terminal vertex.

23
New cards

Trail

a walk with no repeated edges, but vertices can repeat.

24
New cards

path

walk with no repetition of vertices, and thus no repeating edges.

25
New cards

closed walk

a walk from initial vertex back to initial vertex,

26
New cards

circuit

a walk from initial vertex back to initial vertex with no repeating edges

27
New cards

cycle

a closed path or walk without repeating vertices or edges

28
New cards

length

total number of edges from initial vertex to terminal vertex

29
New cards

circuitless graph

a graph without any walks from initial vertex to initial vertex without repeating edges, or in other words without having a trail.

30
New cards

connected vertices

if a walk between two vertices exist

31
New cards

connected graph

when all the vertices of the graph have a walk between one another.

32
New cards

Euler walk

a walk that uses every edge only once e

33
New cards

Euler circuit

a closed walk, initial v to initial v, that uses each edge only once.

34
New cards

Euler Graph

a connected graph that has a closed walk, initial v to initial v, that uses each edge only once, aka Euler circuit

35
New cards

Hamiltonian Cycle

a circuit that uses every vertex in a graph exactly once

36
New cards

Hamiltonian Path

a path which uses every vertex once

37
New cards

Hamiltonian Graph

a graph with a path that uses each vertex once, aka with a Hamiltonian Path

38
New cards

Dirac’s Theorem

If every vertex, n>=3, has a degree >= n/2, graph must have a Hamiltonian cycle, which would mean it is a Hamiltonian Graph, which means that it has a Hamiltonian path.

39
New cards

Ore’s Theorem

if G is a simpel graph, n >= 3, and any two non-adjacent vertices degree sum >= n, G has a Hamiltonian circuit, thus is a Hamiltonian graph, thus has a Hamiltonian path.

40
New cards

tree

a connected graph with no circuits or cycles

41
New cards

trivial tree

a trivial graph, or a tree with only once vertex

42
New cards

forest

a disconnected graph, with each “piece” being at tree

43
New cards

rooted tree

a graph with one vertex that is designed as the root, and every edge points away from this root vertex.

44
New cards

level

the number of edges from it to the root on its unique path.

45
New cards

height

the maximum levels that are in the tree.

46
New cards

children

all the adjacent vertices below v

47
New cards

parent

the adjacent vertex that is above v

48
New cards

ancestors

all the vertices excluding the root and v itself, that are on the unique path from v to the root.

49
New cards

descendants

all the vertices below v that are connected

50
New cards

m-ary

every internal vertex has no more than m children

51
New cards

full m-ary

every internal vertex has exactly m children.

52
New cards

binary m-ary

if all leaves at level h or h-1

53
New cards

Decision Tree

a tree where every vertex corresponds to a decision/question, and edge is outcome, and then the leaves are the conclusion.