Graph theory

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

1/176

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.

177 Terms

1
New cards

Order of a Graph G(V,E)

The number of vertices in a graph = |V|

2
New cards

Size of a Graph G(V,E)

The number of edges in a graph = |E|

3
New cards

Self-loop edge

Start and end vertices are same for the edge

4
New cards

Parallel edges

Edges that connect the same pair of vertices

5
New cards

Incident

Meeting point of an edge and a vertex

6
New cards

Degree of a vertex

The number of edges incident of the vertex, with loops counted twice

7
New cards

Odd degree vertex is called __________

Odd vertex

8
New cards

Even degree vertex is called __________

Even vertex

9
New cards

Null Graph

A graph with no edges

10
New cards

Trivial Graph

It is a null graph with order 1

11
New cards

Multi-Graph

Graphs containing parallel edges and self loops

12
New cards

Simple graph

Graphs containing neither parallel edges nor self loops

13
New cards

The minimum number of edges in a simple connected graph with n vertices is __________

(n-1)

14
New cards

The maximum number of edges in a simple connected graph with n vertices is __________

n(n-1)/2

15
New cards

The total number of simple graphs possible with n vertices and e edges is __________

[n(n-1)/2] C e

16
New cards

The total number of simple graphs possible with n vertices is __________

2^[n(n-1)/2)]

17
New cards

The sum of degrees of all vertices in a graph i.e Σd(|V|) equals to __________

twice of number of edges i.e 2(|E|)

18
New cards

Sum of degrees of all vertices must be an __________ number

even

19
New cards

In a simple connected graph, total number of odd vertices should be __________

even

20
New cards

In a simple connected graph with n vertices, maximum degree of a vertex is __________

(n-1)

21
New cards

Minimum degree of a vertex in a graph G is represented as __________

∂(G)

22
New cards

Maximum degree of a vertex in a graph G is represented as __________

△(G)

23
New cards

The relation between minimum degree and maximum degree of a graph G is __________

∂(G) <= 2|E|/|V| <= △(G) <= (|V| - 1)

24
New cards

Writing degree of all vertices either in increasing order or decreasing order is called __________ of a graph G

Degree sequence ex. 1,1,2,2,3,3

25
New cards

What conditions does a degree sequence need to satisfy to be valid?

  1. Maximum degree should be (n-1) where n = number of vertices

26
New cards
  1. Sum of degrees of all vertices should be an even number

27
New cards
  1. Number of the odd degrees must be even

28
New cards
  1. At least two degrees will have same degree

29
New cards

An efficient way to find out whether the degree sequence is valid or not is __________ method

Havel-Hakimi

30
New cards

Is the following degree sequence valid?

31
New cards

5, 3, 3, 3, 2, 2, 2

Valid

32
New cards

Which of the following degree sequence represent a simple non-directed graph?

33
New cards

a) {2, 3, 3, 4, 4, 5}

34
New cards

b) {2, 3, 4, 4, 5}

35
New cards

c) {1, 3, 3, 4, 5, 6, 6}

36
New cards

d) {2, 2, 3, 3}

a) ❌ odd number of vertices

37
New cards

b) ❌ minimum degree should be 4 since |V| = 5

38
New cards

c) ❌ we have 2 vertices with degree 6 i.e is the maximum degree of the graph with 7 vertices hence we cannot have a vertex with degree 1

39
New cards

d) {2, 2, 3, 3}

40
New cards

Which of the following degree sequences cannot represent a simple non-directed graph?

41
New cards

a) {1, 1, 2, 2}

42
New cards

b) {3, 3, 3, 3, 2}

43
New cards

c) {0, 1, 2, 2, 3}

44
New cards

d) {1, 3, 3, 3}

d) {1, 3, 3, 3}

45
New cards
46
New cards

reason: it has an odd number of odd vertices

47
New cards

A non-directed graph contains 16 edges and all vertices are of degree 2. Then the number of vertices in the graph is __________

8

48
New cards

A simple non-directed graph contains 21 edges, 3 vertices of degree 4 and the other vertices are of degree 2. Then the number of vertices in the graph is __________

18

49
New cards

If a simple non-directed graph G contains 24 edges and all vertices are of the same degree then which of the following is false?

50
New cards

a) |V| = 24

51
New cards

b) |V| = 8

52
New cards

c) |V| = 16

53
New cards

d) |V| = 6

d) |V| = 6

54
New cards
55
New cards

reason: if the number of vertices is 6 then degree of each vertex is 8 which is impossible because maximum degree each vertex in a graph with 6 vertices is (n-1) = (6-1) = 5

56
New cards

The largest possible number of vertices in a graph G, with 35 edges and all vertices are of degree at least 3 is __________

23

57
New cards
58
New cards

reason: ∂(G) = 3

59
New cards

∂(G) <= 2|E|/|V|

60
New cards

therefore, |V| = 70/3 ≈ 23

61
New cards

Let G be a simple graph with n vertices. Then the number of edges of G is less than or equal to __________

n(n-1)/2

62
New cards

If the degree sequence is valid for a simple graph G then the sequence is called __________

Graphical

63
New cards

Every vertex is connected to every other vertex in a simple connected graph then the graph is known as __________

Complete graph

64
New cards

A complete graph with n vertices is denoted by __________

Kn

65
New cards

Number of edges in a complete graph with n vertices is __________

[n(n-1)/2]

66
New cards

Degree of each vertex in a complete graph is __________

(n-1)

67
New cards

If the edges that exist in G1 am absent in another G2, and if both G1 and G2 are combined together to form a complete graph, then G1 and G2 are called __________ to each other.

complement

68
New cards

G + G' = __________

Kn

69
New cards

|E(G)| + |E(G')| = __________

|E(Kn)|

70
New cards

|V(G)| + |V(G')| = __________

|V(Kn)|

71
New cards

deg(v1) in G + deg(v1) in G' = __________

(n-1)

72
New cards

If a simple graph G has 4 vertices and has a degree sequence {1, 1, 1, 1}, then the degree sequence in G' is __________

{2, 2, 2, 2}

73
New cards

Number of odd degrees in G and number of odd degrees in G' are __________

Equal

74
New cards

A Cycle graph of order n, must contain a cycle of length __________ , and degree of each vertex should be __________

n, 2

75
New cards

A Cycle graph is denoted by __________ and n is >= __________

Cn

76
New cards

|E(Cn)| = __________ = __________

|V(Cn)| , Length of the cycle

77
New cards

Degree of each vertex v in Cycle graph is __________

2

78
New cards

A Wheel graph is denoted as __________ and n is >= __________

Wn

79
New cards

W4 is derived from __________

C3

80
New cards

Degree of hub vertex in Wn is __________

(n-1)

81
New cards

Degree of any vertex except for the hub vertex in Wn is __________

3

82
New cards

Total number of edges in Wn is __________

2(n-1)

83
New cards

If degree of every vertex is 'k' then it is called a __________ graph

k-regular

84
New cards

Every cycle graph is a __________ -regular graph

2

85
New cards

Total number of edges in a k-regular graph with n vertices is __________

nk/2

86
New cards

__________ graph G(V, E) where vertices V can be divided into two disjoint sets V1 U V2 whose each edge will be from one set to another but not in the same set

Bipartite

87
New cards

A Bipartite graph with vertex sets Vm and Vn is denoted as __________

Km,n

88
New cards

If every vertex of set V1 is connected to every vertex of set V2 then it is called a __________ Bipartite graph

Complete

89
New cards

Total number of edges in a complete bipartite graph Km,n is __________

m*n

90
New cards

Total number of vertices in a complete bipartite graph Km,n is __________

m+n

91
New cards

Minimum number of edges in a bipartite graph Km,n is __________

min{m,n}

92
New cards

Maximum number of vertices in a bipartite graph Kn/2,n/2 is

n^2/4

93
New cards

A bipartite graph should have __________ length cycle

even

94
New cards

A Star graph of n vertices can be defined as __________

K 1,(n-1)

95
New cards

The complement of a star graph of order n, is a __________ graph of __________ vertices and an __________ vertex

complete, (n-1), isolated

96
New cards

A graph or a multi-graph that can be drawn in a plane so that no two edges cross with each other is called __________ graph

Planner

97
New cards

K5 and K3,3 are __________ graphs

Non-planner

98
New cards

A non-planner graph with minimum number of vertices is __________

K5

99
New cards

A non-planner graph with minimum number of edges is __________

K3,3

100
New cards

A planner graph divides the area into connected areas those areas are called __________

Regions