Graph Theory Flashcards

(65 cards)

1
Q

Graph consists of ?

A

Vertices and edges

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

Undirected graph?

A

Edges have no direction

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

degree of a vertex

A

No. of vertices adjacent to it

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

In degree of a vertex

A

No. of vertices directed towards a particular vertex

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

Out degree of a vertex

A

No. of vertices directed away from a particular vertex

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

Sum of degree=

A

2*no. of edges

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

In directed , sum of out degree=

A

Sum of in degree = no. of edges

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

outgoing edges denoted by

A

-

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

incoming edges denoted by

A

+

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

Undirected graph types

A

Simple graph and Multigraph

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

Simple graph

A

No parallel edge, no self loop

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

Multigraph

A

Parallel edges and self loop present

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

Self loop degree=

A

2

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

If n vertex simple graph, max and min degree

A

max-n-1
min-0

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

If n vertex multigraph, max and min degree

A

max-infinite
min-0

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

Null graph

A

0 edges

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

Complete graph

A

All edges in a simple graph
no. of edges=n(n-1)/2

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

Min and max edges in a complete graph

A

both n(n-)/2

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

min and max edges in null graph

A

0

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

n-regular graph

A

all vertices have degree n

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

for k regular graph no. of edges

A

e=(k*n)/2

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

Complete graph with n vertices can be represented as n-1 regular graph

A

yes

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

Every cycle graph is a

A

2-regular graph

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

Cycle graph is not possible for

A

vertices less than or equal to 2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Cycle graph Cn (2-regular graph with n vertices)
n vertices, n edges
26
Wheel graph
Using Cn-1 graph and adding 1 vertex in middle
27
For wheel graph
E=2*(n-1)
28
Bipartite graph
Two groups m & n , no vertex b/w the members of same group
29
In bipartite graph m U n =
V
30
How to verify if graph is bipartite
BFS
31
m intersection n for bipartite
empty set (phi)
32
m can be anything but
empty set or phi
33
n can be anything but
empty set or phi
34
Which graph can never be bipartite
if it contains odd cycle
35
Min. vertex for bipartite
2
36
Min. edges for bipartite
0
37
Complete bipartite graph
When all possible edges present in bipartite graph
38
K2,4
Total edges = 8
39
K m,n
edges= m.n vertices=m+n
40
Suppose you have 10 vertices, max edges complete bipartite =
when divided in half=5*5=25 edges
41
Min. edges in bipartite graph
0
42
Min. edges in complete bipartite graph with n vertices
(n-1).1
43
Min edges in complete bipartite graph with m and n groups
m.n
44
Max edges in bipartite graph
m.n
45
Star graph edges with n vertices
n-1
46
Planar graph
Draw graph w/o crossing any edges(can be represented in one plane)
47
From which complete graph are all complete graphs non planar
K5
48
Non planar requires least how many vertices
5 (one edge causes non planarity, if we remove becomes planar)
49
In complete bipartite graph non planarity starts from
K3,3(one edge causes non planarity, if we remove becomes planar) so K3,4 K4,4 all are non planar
50
Non planarity starts from min. vertices min. edges
V-5 (K5) E-9 (K3,3)
51
A graph G is planar if and only if
it does not contain subgraph which is subdivision of K5 or K3,3
52
Subdivision means
Same structure, only vertices added inside edges
53
See question on copy
54
Regions or faces
Every planar graph is divided into some regions
55
Degree of a region
No. of edges it is bounded by
56
Every edge is used twice in making regions
True
57
Sum of degree of regions =
2*no. of edges
58
See question
59
Euler formula(Connected graph)
|V| + |R| = |E| + 2
60
Euler formula(disconnected graph)
|V| + |R| = |E| + k + 1 (k-no. of connected components)
61
For n vertices how many simple graphs possible
2^(n(n-1)/2)
62
Average degree
Sum of degree/ no. of vertices
63
Average degree bounds
Min degree <= Avg degree <= Max degree
64
Average degree
2 |E| / |v|
65