Graph Theory Exam 1

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/66

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.

67 Terms

1
New cards

Order of a graph

Number of vertices

2
New cards

Size of a graph

Number of edges

3
New cards

Trivial Graph

Specific type of empty graph where G=(V,E) or E = empty set

4
New cards

Empty Graph

G=(V,E) where |v| ≥ 1, E = empty set

5
New cards

Equal Graphs

Two graphs might be equal which means they are labeled

6
New cards

Proper subgraph

If H subset G such that H does not equal G, then H is a proper subgraph of G

7
New cards

Spanning subgraph

If V(H) = V(G) and E(H) is a subset of E(G) then H is a spanning subgraph

8
New cards

A subgraph H spans G

if it uses all the vertices of G

9
New cards

Induced subgraph

A subset V’ is a subset of V(G) on V’ is the graph H with vertex set V’ = V(H) and all edges in G supported on these vertices

10
New cards

u-v Walk

a series of adjacent vertices and edges starting with u and ending with v

11
New cards

u-v Trail

u-v walk where we can’t repeat edges

12
New cards

u-v Path

u-v trail which does not repeat vertices which also means it can’t repeat edges

13
New cards

u-v walk/trail/path is closed

u=v

14
New cards

closed trail

circuit (no repeated edges)

15
New cards

closed path

cycle (no repeated vertices so no repeated edges)

16
New cards

A graph G is connected

if and only if for all u,v in V(G) there exists a u-v path in G

17
New cards

Connected component of a graph G

maximal connected subgraph H of G

18
New cards

if you have a u-v walk

you have a u-v path

19
New cards

u-v Geodesic

shortest u-v path

20
New cards

a graph G contains a u-v walk of length l

then G contains a u-v path of length ≤ l

21
New cards

Let R be the relation defined on the vertex set of a graph G by u R v where u,v in V(G)

if u is connected to v that is G contains a u-v path

22
New cards

Let G be graph of order 3 or more. If G contains two distinct vertices u and v such that

G-u and G-v are connected then G itself is connected

23
New cards

If G is a connected graph of order 3 or more

then G contains two distinct vertices u and v such that G-u and G-v are connected

24
New cards

Let G be a graph of order 3 or more then G is connected

if and only if G contains two distinct vertices u and v such that G-u and G-v are connected

25
New cards

graph operations

complement, join (G+H), and Cartesian product

26
New cards

cycles

C_n

27
New cards

complete graphs

K_n

28
New cards

empty graph

K bar_n

29
New cards

Star graph

K_1,s

30
New cards

bipartite graph

v_1 and v_2 are partite sets (no edges within a partite set)

31
New cards

multipartite graph

K-partite graph

32
New cards

complete bipartite

K_s,t

33
New cards

complete k-partite graph

K_n_1,n_2,n_3,..,n_k

34
New cards

hypercube

Q_n is hypercube of dimension n

35
New cards

Q_n

vertices is set of binary n-tuples, 2 vertices are neighbors if their n-tuples differ in exactly one position 

36
New cards

If G is a disconnected graph

G bar is connected

37
New cards

Nontrivial graph G is bipartite graph if and only if

G contains no odd cycles

38
New cards

multigraph

graph which there may be more than one edge connecting a pair of vertices (parallel edges)

39
New cards

pseudo graph

multigraph which edge can start and end at the same vertex (loops)

40
New cards

digraph

edges are ordered pairs of vertices (directed edges or arcs)

41
New cards

oriented graph

digraph for which at most one of (u,v) and (v,u) is an edge for each pair of vertices u,v

42
New cards

orientation of K_n

tournament

43
New cards

hypergraph

graph whose edges can consist of more or less than two vertices (hyper edges)

44
New cards

a leaf has one

neighborhood

45
New cards

neighborhood

the vertices that is connected to that point

46
New cards

First theorem of graph theory

if G os a graph of size m, then the sum of v in V(G) deg v = 2m (sum of all degrees equals twice the number of edges)

47
New cards

every graph has an even number of

odd vertices

48
New cards

Let G be a graph of order n. If deg u + deg v ≥ n-1 for every two nonadjacent vertices u and v of G 

then G is connected and diam(G)≤2

49
New cards

a graph is regular if 

all of its vertices have the same degree

50
New cards

r-regular graph

shared degree is r

51
New cards

Peterson graph

famous cubic graph

52
New cards

degree sequence

list of degrees in a sequence

53
New cards

if there exists a graph with degree sequence s

s is graphical

54
New cards

Havel-Hakimi Theorem

cross out the largest number and use the number you crossed out to keep proving if it is graphical

55
New cards

bridge

an edge e for which G-e has more components than G

56
New cards

An edge e of a graph G is a bridge if and only

e lies on no cycle of G

57
New cards

acyclic 

a graph G does not contain a cycle as a subgraph, we call G a cyclic 

58
New cards

tree

connected acyclic graph

59
New cards

forest

disconnected acyclic graph

60
New cards

types of tree names

star, double star, caterpillar

61
New cards

a graph G is a tree if and only if

every two vertices of G are connected by a unique path

62
New cards

every nontrivial tree has at least

two end vertices

63
New cards

every tree of order n has size

n-1

64
New cards

every forest of order n with k components has size

n-k

65
New cards

the size of every connected graph of order n is at least

n-1

66
New cards

Let G be a graph of order n and size m. If G satisfies any two of the properties

(1) G is connected

(2) G is acyclic

(3) m=n-1

then G is a tree

67
New cards

Let T be a tree of order k. If G is a graph with min degree of G ≥ k-1 

then T is isomorphic to some subgraph of G