graph theory Flashcards

1
Q

bipartite graph

A

graph whose vertices can be divided into 2 disjoint sets in which all edges contain one vertex from each set

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

matching

A

set of edges without common vertices

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

complete matching

A

every vertex incident to some edge in the matching

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

path

A

sequence of vertices where all vertices are adjacent and no vertex repeats

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

circuit, cycle

A

sequence of adjacent vertices, first and last adjacent

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

connectivity

A

if for all pairs there exists a path

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

ismorphism

A

bijection function such that v1,v2 are adjecent if f(v1) is adjacent to f(v2)

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

graph complement

A

graph drawn on the same set of vertices but a complementary set of edges

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

walk

A

sequence of edges which joins a sequence of vertices

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

trail

A

walk in which all edges are distinct

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

path graph

A

on n vertices, can be expressed as a single path

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

circuit graph

A

on n vertice, can be expressed as a single circuit

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

complete graph

A

on n vertice, all pairs of vertices are complete

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

planar graphs

A

if it can be drawn in a plane without edges crossing

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

eular cycle

A

cycle ( with no repeated edges ) that transverses every edge ( has to have even degree )

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

eular trail

A

trail ( no repeated edges ) that traverses every edge, 2 vertices have odd degree

17
Q

hamilton circuit

A

circuit ( no repeated vertices ) that passes through every vertex ( don’t have to hit every edge )

18
Q

graph coloring

A

assignment of colors to vertices such that no pair of adjacent vertices are of the same color

19
Q

chromatic number

A

fewest number of colors that can be used to make a valid coloring

20
Q

star graph

A

connected graph where all vertices have 1 degree and center vertex has degree n-1

21
Q

wheel graph

A

circuit with a center vertex that connects to every vertex in circuit

22
Q

dual graph

A

graph in which regions are mapped to vertices and adjacency is preserved

23
Q

chromatic polynomial

A

number of ways to color G with k colors

24
Q

tree

A

undirected graph with no circuits; a graph which contains a unique path from root to any other vertex

25
Q

rooted tree

A

directed tree with a unique root ( exists a path from the root to every other vertex )

26
Q

level number

A

length of the path from the root

27
Q

binary tree

A

each parent has exactly three children

28
Q

ternary tree

A

each parent has exactly three children

29
Q

m-ary tree

A

each interval vertex has exactly m children

30
Q

balanced tree

A

a tree of height h is balanced if all of the leaves are at level h or h-1