combinatorics Flashcards

1
Q

order of a graph

A

n, number of vertices

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

size of a graph

A

m, number of edges

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

trivial graph

A

order 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

empty graph

A

size 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

complete graph

A

every pair of vertices is connected

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

degree of a vertex

A

the number of vertices connected to vertex

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

delta G

A

max degree of G

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

S(G)

A

min degree of g

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

if G is a graph of size m, the sum of the degrees of v =

A

2m

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

any graph has a ___ number of vertices with odd degrees

A

even

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

isomorphic

A

if uv are adjacent in G, then they’re adjacent in H

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

bipartite graph

A

if vertices can be partitioned into two sets, and if uv is an edge, u and v are not in the same set

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

size of a bipartite graph of order n is

A

at most ceil(n/2)*floor(n/2)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

the size of a bipartite graph is <=

A

ceil(n^2/4)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

size of a bipartite graph =

A

ceil(n^2/4) iff n is even

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

No bipartite graph contains a

A

triangle

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

if size of a graph is > ceil(n^2/4)

A

G has c3 as a subgraph

18
Q

a degree sequence is not a sequence of a graph when

A

sum of degrees is odd, or if one of the degrees is greater than the number of vertices of the graph

19
Q

erdos gollci theorem

A

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)]

20
Q

u-v walk

A

sequence of vertices beginning with u and ending with v

21
Q

u-v trail

A

walk where no edge is traversed more than once

22
Q

u-v path

A

walk where no vertex is visited more than once

23
Q

circuit

A

closed trail of length 3 or more

24
Q

adjacency matrix of a graph

A

nxn matrix where aij is 1 if vi,vj is an edge, 0 if not

25
incidence matrix of a graph
nxm matrix where bij is 1 if v incident to an edge, 0 otherwise
26
d(u,v)
min length of a u-v walk
27
eccentricity of a vertex e(u)
max distance u is from another vertex
28
diameter of graph
max eccentricity
29
radius of graph
min eccentricity
30
central vertex u
if eccentricity(u) = diameter(G)
31
center of G
subgraph created by all the central vertices
32
periphery of G
subgraph created by the not central vertices
33
rad G <= ? <= ?
diam(G), 2rad(G)
34
if T is a tree of order n, size m, then m =
n-1
35
a degree sequence of a tree if
sum of degrees = 2n-2
36
a set of vertices u in a graph is independent if
no edges between vertices of u
37
independence number of G
max number of vertices in an independent set
38
chromatic number X(G)
minimum amount of colors needed to give a proper coloring
39
clique number W(G)
order a largest complete subgraph
40
X(G) () W(G)
>=
41
Lames theorem
Iterations of Euclidean algorithm < lnb/lna + 1