Combo vocab/theorems

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

1/130

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.

131 Terms

1
New cards

graph

two finite sets, V (a set of vertices) and E (a set of pairs of unordered vertices/edges)

2
New cards

vertex

node

3
New cards

edge

pair of unordered vertices

4
New cards

order

size/cardinality of a graph’s vertex set

5
New cards

adjacent (vertices u,v)

uv ∈ E(G)

6
New cards

nonadjacent

uv ∉ E(G)

7
New cards

incident

e ∈ E contains vertex v

8
New cards

degree (deg(v))

number of edges incident with v

9
New cards

maximum degree (and its notation, ∆(G))

max degree of all vertex degrees in the graph

10
New cards

minimum degree (and its notation, δ(G))

min degree of all vertex degrees in the graph

11
New cards

degree sequence

the sequence of the vertex degrees, usually listed in descending order

12
New cards

walk

a sequence of vertices v1, …, vk s.t. (vi vi+1) ∈ E ∀ i ∈ {1, …, k-1}

13
New cards

path

a walk in which all vertices are distinct

14
New cards

trail

a walk in which all edges are distinct

15
New cards

circuit/closed trail

a trail that begins and ends at the same vertex

16
New cards

cycle/closed path

a v1-vk path (k≥3) together with edge (vk,v1)

17
New cards

length (of a walk, path, trail, cycle, or circuit)

the number of edges

18
New cards

vertex deletion (and its notation, G \ v)

graph obtained by removing v and all edges incident to v from G

19
New cards

edge deletion (and its notation, G \ e)

graph obtained by removing e

20
New cards

connected

every pair of vertices can be joined by a path

21
New cards

connected component

each connected piece of a graph

22
New cards

cut vertex

a vertex whose removal causes the number of connected components to increase

23
New cards

cut set

proper subset of V(G) s.t. G-S is not connected

24
New cards

bridge

an edge whose removal causes the number of connected components to increase

25
New cards

complement (and its notation, Gbar)

the graph whose vertex set is the same as G, but whose edge set is all edges not in G

26
New cards

regular and r-regular

if every vertex has the same degree (deg(v)=r)

27
New cards

subgraph (H subgraph of G)

V(H) ⊆ V(G) and E(H) ⊆ E(G)

28
New cards

induced subgraph , S subset of V(G)

the subgraph with vertex set S with all edges between vertices in S

29
New cards

bipartite

its vertex set can be partitioned into two sets X and Y so that every edge has one vertex in X and one in Y

30
New cards

partite sets

the two sets of a bipartite graph

31
New cards

isomorphic

there exists a mapping from one vertex set to another that preserves adjacencies

32
New cards

distance d(u,v)

the number of edges of the shortest u-v path

33
New cards

adjacency matrix

the nxn matrix A whose (i,j) entry is 1 if (vi,vj) ∈ G, 0 otherwise

34
New cards

distance matrix

the nxn matrix D whose (i,j) entry is d(vi,vj)

35
New cards

tree

a connected graph that contains no cycles

36
New cards

forest

a collection of one or more trees

37
New cards

leaf

a vertex of degree 1 in a tree

38
New cards

spanning tree

Tree that contains every vertex of G

39
New cards

weighted graph

a graph G together with a weight function

40
New cards

minimum weight spanning tree

the sum of the weights of the edges of T is no more than the sum for any other spanning tree

41
New cards

Eulerian trail

a trail in G that contains every edge of G

42
New cards

Eulerian circuit

a circuit in G that contains every edge of G

43
New cards

Eulerian graph

a graph that contains an Eulerian circuit

44
New cards

Hamiltonian path

a path that visits all vertices of G

45
New cards

Hamiltonian cycle

a cycle that visits all vertices of G

46
New cards

Hamiltonian graph

a graph that contains a Hamiltonian cycle

47
New cards

S-free (for a set S, a collection of graphs)

G does not contain any of the paths in S as induced subgraphs

48
New cards

H-free (for a graph G)

G does not contain a copy of H as an induced subgraph

49
New cards

planar

a graph that can be drawn in a way that pairs of edges intersect only at vertices or not at all

50
New cards

nonplanar

a graph that cannot be drawn in a way that pairs of edges intersect only at vertices or not at all

51
New cards

planar representation

a drawing of a graph drawn in a way that pairs of edges intersect only at vertices or not at all

52
New cards

region

enclosed area of a planar representation of graph G

53
New cards

exterior region

the region on the outside of a planar representation of G

54
New cards

k-coloring

a function K: V(G)→[k]

55
New cards

proper k-coloring

no 2 adjacent vertices in G have the same color

56
New cards

k-colorable

a proper k-coloring of G exists

57
New cards

chromatic number (and its notation, χ(G))

the smallest integer k s.t. G is k-colorable

58
New cards

Kn

complete graph of order n, every vertex is connected to every other vertex

59
New cards

En

graph of order n with no edges

60
New cards

Cn

the graph of a cycle on n vertices

61
New cards

Pn

the graph of the path on n vertices

62
New cards

Kn,m

complete bipartite graph with sets of size n and m

63
New cards

Kruskal's Algorithm

add edges of minimum weight that don't form a cycle until MST is formed

64
New cards

Hierholzer’s Algorithm is used for

identifying an Eulerian circuit in Eulerian graph

65
New cards

Prufer sequences are used for

providing a unique sequence representation of a labeled tree

66
New cards

Sum of degrees is equal to

twice the number of edges

67
New cards

every u-v walk contains

a u-v path

68
New cards

A graph with at least 2 vertices is bipartite iff

the graph contains no odd cycles

69
New cards

T is a tree of order n, T contains

n-1 edges

70
New cards

F is a forest of order n containing k connected components, F contains

n-k edges

71
New cards

A graph of order n is a tree iff

it is connected and contains n-1 edges

72
New cards

T is a tree of order n>=2

T has at least 2 leaves

73
New cards

Kruskal's algorithm produces

a minimum spanning tree

74
New cards

G is Eulerian iff

Every vertex has even degree iff the edges of G can be partitioned into edge-disjoint cycles

75
New cards

connected graph G contains an Eulerian trail iff

there are at most two vertices of odd degree

76
New cards

connected graph G of order n, q edges, r regions

n-q+r=2

77
New cards

K_3,3

is nonplanar

78
New cards

K_5

is nonplanar

79
New cards

every planar graph is

4-colorable

80
New cards

factorial (n!)

n(n-1)(n-2)…(2)(1)

81
New cards

permutation

an ordering of n objects (n!)

82
New cards

falling factorial power (x^k_)

x(x-1)…(x-k+1)

83
New cards

rising factorial power (x¯k)

x(x+1)…(x+k-1)

84
New cards

binomial coefficients

(n k)

85
New cards

algebraic proof

transforming one side of an equation to the expression on the other side using substitutions and arithmetic operations

86
New cards

combinatorial proof

showing both sides of an equation count the same thing (counting in 2 ways)

87
New cards

multinomial coefficient (k1+…+km = n)

(n k1,k2,…,km)

88
New cards

multiset

allows for multiple instances of each element

89
New cards

the pigeonhole principle (if more than n objects are distributed among n containers, then)

some container has more than one object

90
New cards

floor

largest integer m satisfying m ≤ x

91
New cards

ceiling

smallest integer m satisfying x ≤ m

92
New cards

relatively prime

two positive integers whose greatest common divisor is 1

93
New cards

generating function

∑k≥0 (ak*x^k) for a sequence {ak}

94
New cards

coefficient operator [x^k]

extracts the coefficient of x^k in a formal power series of x

95
New cards

partial fractions

N(x) / (ax+b)(cx+d) = A / (ax+b) + B / (cx+d)

96
New cards

recurrence relation

an expression for an in terms of n and values a0, a1, …, an-1

97
New cards

order of a recurrence relation (order k)

formula for an depends on only the previous k terms, requires k initial values

98
New cards

closed form of a recurrence relation

requires finitely many steps to complete and makes no reference to values of the sequence, except possibly the initial values

99
New cards

S1, …, Sm are finite sets with orders n1, …, nm, ways to select one from any set is?

n1+n2+…+nm

100
New cards

S1, …, Sm are finite sets with orders n1, …, nm, ways to select one from each set is?

n1 x n2 x…x nm