Graph theory

studied byStudied by 1 person
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 176

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

177 Terms

1

Order of a Graph G(V,E)

The number of vertices in a graph = |V|

New cards
2

Size of a Graph G(V,E)

The number of edges in a graph = |E|

New cards
3

Self-loop edge

Start and end vertices are same for the edge

New cards
4

Parallel edges

Edges that connect the same pair of vertices

New cards
5

Incident

Meeting point of an edge and a vertex

New cards
6

Degree of a vertex

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

New cards
7

Odd degree vertex is called __________

Odd vertex

New cards
8

Even degree vertex is called __________

Even vertex

New cards
9

Null Graph

A graph with no edges

New cards
10

Trivial Graph

It is a null graph with order 1

New cards
11

Multi-Graph

Graphs containing parallel edges and self loops

New cards
12

Simple graph

Graphs containing neither parallel edges nor self loops

New cards
13

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

(n-1)

New cards
14

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

n(n-1)/2

New cards
15

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

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

New cards
16

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

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

New cards
17

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

New cards
18

Sum of degrees of all vertices must be an __________ number

even

New cards
19

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

even

New cards
20

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

(n-1)

New cards
21

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

∂(G)

New cards
22

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

△(G)

New cards
23

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

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

New cards
24

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

New cards
25

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

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

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

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

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

New cards
29

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

Havel-Hakimi

New cards
30

Is the following degree sequence valid?

New cards
31

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

Valid

New cards
32

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

New cards
33

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

New cards
34

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

New cards
35

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

New cards
36

d) {2, 2, 3, 3}

a) ❌ odd number of vertices

New cards
37

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

New cards
38

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

New cards
39

d) {2, 2, 3, 3}

New cards
40

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

New cards
41

a) {1, 1, 2, 2}

New cards
42

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

New cards
43

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

New cards
44

d) {1, 3, 3, 3}

d) {1, 3, 3, 3}

New cards
45
New cards
46

reason: it has an odd number of odd vertices

New cards
47

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

8

New cards
48

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

New cards
49

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?

New cards
50

a) |V| = 24

New cards
51

b) |V| = 8

New cards
52

c) |V| = 16

New cards
53

d) |V| = 6

d) |V| = 6

New cards
54
New cards
55

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

New cards
56

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

23

New cards
57
New cards
58

reason: ∂(G) = 3

New cards
59

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

New cards
60

therefore, |V| = 70/3 ≈ 23

New cards
61

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

New cards
62

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

Graphical

New cards
63

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

Complete graph

New cards
64

A complete graph with n vertices is denoted by __________

Kn

New cards
65

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

[n(n-1)/2]

New cards
66

Degree of each vertex in a complete graph is __________

(n-1)

New cards
67

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

New cards
68

G + G' = __________

Kn

New cards
69

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

|E(Kn)|

New cards
70

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

|V(Kn)|

New cards
71

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

(n-1)

New cards
72

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}

New cards
73

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

Equal

New cards
74

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

n, 2

New cards
75

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

Cn

New cards
76

|E(Cn)| = __________ = __________

|V(Cn)| , Length of the cycle

New cards
77

Degree of each vertex v in Cycle graph is __________

2

New cards
78

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

Wn

New cards
79

W4 is derived from __________

C3

New cards
80

Degree of hub vertex in Wn is __________

(n-1)

New cards
81

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

3

New cards
82

Total number of edges in Wn is __________

2(n-1)

New cards
83

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

k-regular

New cards
84

Every cycle graph is a __________ -regular graph

2

New cards
85

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

nk/2

New cards
86

__________ 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

New cards
87

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

Km,n

New cards
88

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

Complete

New cards
89

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

m*n

New cards
90

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

m+n

New cards
91

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

min{m,n}

New cards
92

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

n^2/4

New cards
93

A bipartite graph should have __________ length cycle

even

New cards
94

A Star graph of n vertices can be defined as __________

K 1,(n-1)

New cards
95

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

complete, (n-1), isolated

New cards
96

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

New cards
97

K5 and K3,3 are __________ graphs

Non-planner

New cards
98

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

K5

New cards
99

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

K3,3

New cards
100

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

Regions

New cards

Explore top notes

note Note
studied byStudied by 39 people
70 days ago
5.0(1)
note Note
studied byStudied by 13 people
183 days ago
5.0(1)
note Note
studied byStudied by 253 people
681 days ago
4.5(6)
note Note
studied byStudied by 18 people
813 days ago
5.0(1)
note Note
studied byStudied by 215 people
720 days ago
5.0(2)
note Note
studied byStudied by 22 people
710 days ago
5.0(2)
note Note
studied byStudied by 2488 people
700 days ago
4.7(6)

Explore top flashcards

flashcards Flashcard (55)
studied byStudied by 84 people
381 days ago
5.0(1)
flashcards Flashcard (44)
studied byStudied by 39 people
789 days ago
4.1(7)
flashcards Flashcard (58)
studied byStudied by 170 people
730 days ago
5.0(1)
flashcards Flashcard (45)
studied byStudied by 12 people
764 days ago
5.0(1)
flashcards Flashcard (45)
studied byStudied by 1 person
74 days ago
5.0(1)
flashcards Flashcard (43)
studied byStudied by 10 people
220 days ago
5.0(1)
flashcards Flashcard (42)
studied byStudied by 33 people
372 days ago
5.0(1)
flashcards Flashcard (101)
studied byStudied by 183 people
2 days ago
5.0(1)
robot