Final Discrete Structures Vocab

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/50

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.

51 Terms

1
New cards

Graph

a collection of a non-empty set of vertices and edges

2
New cards

End Vertices

The two vertices on either end of an edge

3
New cards

Parallel Edges

Edges with the same start and end vertices

4
New cards

Loop

An edge where both of its end vertices are the same vertex.

5
New cards

Simple Graph

A graph without loops or edges

6
New cards

Empty Graph

A graph with no edges, but any amount of vertices N

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

Edges that share 1 or more vertices

10
New cards

Adjacent Vertices

vertices that are connected by the same edge. A vertex can be term to itself if a loop is involved

11
New cards

Degree

the total number of edges that have v as an end vertex. Count loops twice

12
New cards

Pendent Vertex

vertex with a degree of 1

13
New cards

Pendent Edge

An edge that is connected to a pendent vertex.

14
New cards

Isolated Vertex

a vertex with a degree of 0, no edges connecting to it

15
New cards

Degree Sequence

The degrees of all the vertices in a graph listed in decreasing order

16
New cards

graphic

if a degree sequence forms a simple graph

17
New cards

Subgraph

A graph formed from a subset of the vertices and edges of another graph.

18
New cards

Complete Graph

a graph where every vertex is adjacent to all the other vertices

19
New cards

Cycle Graph

A graph where n vertices, n is at least 3, and each vertex has a degree of two

20
New cards

Wheel Graph

A cycle graph but with an additional vertex that is adjacent to all the vertices of the cycle graph.

21
New cards

Bipartite Graph

A graph where its vertices can be divided into two disjoint sets, v1, and v2 where none of the vertices within a subset are adjacent to each other.

22
New cards

Complete Bipartite Graph

a bipartite graph where each edge in one set of vertices is adjacent to all the other edges in the other subset and vice versa

23
New cards

Walk

Allows repeating edges and vertices.

24
New cards

Trail

allows repeating vertices, but not repeating edges.

25
New cards

Path

No repeating vertices or edges.

26
New cards

Closed walk

A walk from initial → initial vertex.

27
New cards

Circuit

a closed trail

28
New cards

Cycle

a closed path

29
New cards

Euler Walk

a trail that uses all the edges in a graph

30
New cards

Euler Circuit

A closed trail that uses all the edges in a graph. This implies a Eulerian Graph.

31
New cards

Hamiltonian Cycle

A closed path using all vertices in a graph. Implies a Hamiltonian Graph and Path

32
New cards

Hamiltonian Path

A path using all the vertices in a graph.

33
New cards

tree

A connected graph with no circuits or cycles

34
New cards

Trivial Tree

A trivial graph or a tree with only one vertex.

35
New cards

Forest

A disconnected graph, with each component being a tree.

36
New cards

Rooted Tree

A graph with one vertex designed as the root, and every edge pointing away from the root.

37
New cards

Level

the number of edges from a vertex to the root on its unique path in a tree. term of the root is 0.

38
New cards

Height

The maximum level of a tree

39
New cards

Children

all the adjacent vertices below vertex v

40
New cards

Parent

The vertex that is adjacent to the current vertex and one level above the current vertex

41
New cards

Ancestors

all the vertices, excluding the current and the root, on the unique path to the root.

42
New cards

Descendants

All the vertices that are connected and higher level than the current vertex (below it).

43
New cards

Dirac

if every vertex, n at least 3, has a degree of at least n/2, that graph has Hamiltonian Cycle and is a Hamiltonian Graph

44
New cards

Ore

If G is a simple graph, n is at least 3, and any two non-adjacent vertices degrees sum up to at least n, G has a Hamiltonian circuit and is a simple graph.

45
New cards

M-ary tree

a tree where the internal vertices have at most m children

46
New cards

Full m-ary tree

a tree where the internal vertices have exactly m children.

47
New cards

Balanced m-ary tree

when the leaf nodes are at level h or h-1.

48
New cards

Decision tree

a tree where each internal node represents a decision

49
New cards

Spanning tree

A subgraph of G, that is a tree, which contains every vertex of G.

50
New cards

Weighted Graph

A graph where we assign weights to each of the edges.

51
New cards

Minimum Spanning Tree

A spanning tree with the smallest possible sum of weights of its edges.