combinatorics Flashcards
order of a graph
n, number of vertices
size of a graph
m, number of edges
trivial graph
order 1
empty graph
size 0
complete graph
every pair of vertices is connected
degree of a vertex
the number of vertices connected to vertex
delta G
max degree of G
S(G)
min degree of g
if G is a graph of size m, the sum of the degrees of v =
2m
any graph has a ___ number of vertices with odd degrees
even
isomorphic
if uv are adjacent in G, then they’re adjacent in H
bipartite graph
if vertices can be partitioned into two sets, and if uv is an edge, u and v are not in the same set
size of a bipartite graph of order n is
at most ceil(n/2)*floor(n/2)
the size of a bipartite graph is <=
ceil(n^2/4)
size of a bipartite graph =
ceil(n^2/4) iff n is even
No bipartite graph contains a
triangle
if size of a graph is > ceil(n^2/4)
G has c3 as a subgraph
a degree sequence is not a sequence of a graph when
sum of degrees is odd, or if one of the degrees is greater than the number of vertices of the graph
erdos gollci theorem
a degree sequence is graphical iff the sum is even and the sum from 1 to k [degrees] <= k(k+1) + sum k+1 to n [min(k, d)]
u-v walk
sequence of vertices beginning with u and ending with v
u-v trail
walk where no edge is traversed more than once
u-v path
walk where no vertex is visited more than once
circuit
closed trail of length 3 or more
adjacency matrix of a graph
nxn matrix where aij is 1 if vi,vj is an edge, 0 if not