unit 5 dm Flashcards

1
Q

When are two vertices said to be adjacent/neighbours?

A

one edge between them atleast pic8

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

What is a null graph

A

no edges, all isolated vertexes

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

What is a trivial graph?

A

no edges and one vertices

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

What is a graph?

A

A collection of edges and vertices where the ordered pairs form edges

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

What does Graph G(V,E) represent?

A

V is an unempty set of vertices and E is a set of ordered pairs which represent edges

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

what does the therefore symbol represent (pic1)

A

null graph, 3 vertices

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

How is an edge represented?

A

a line, straight, curvy, long or short

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

Can the same graph be represented in diff ways? example?

A

pic2

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

How can graphs be classified?

A

finite: finite no. of edges and vertices
infinite: infinite no. of vertices

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

What are order and set and in which type of graph are the present?

A

In finite graph
OVSE
Order: no. of vertices
Set: no. of edges

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

(n,m) graph?

A

order -> n

size -> m

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

Graph(V,E) cardinality of V?

Set E cardinality?

A
|V| = order
|E| = size
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Null graph with n vertices representation?

A

(n,0) graph

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

How are finite graphs classified?

A
  1. Directed
    direction associated with edge (ordered pair)
  2. Undirected
    no direction associated with edge (unordered pair)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are end vertices?

A

Vi and Vj are vertices joined by edge ek then edge vertices are Vi, Vj of ek
Symbolically pic3

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

How are vertices and edges represented?

A

Vertices: V1, v2 (subscript)
OR
A,B,C…

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

How are edges and edges represented?

A

e1, e2, e3..
or
AB, CD, …

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

Can edges intersect and not form a vertex at intersection point

A

yes

pic5

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

even if one vertix diff, denoted as

A

distinct end verticespic5

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

self loop?

A

same vertex as end vertices

pic5

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

loop?

A

edges with same end vertices
diff directions
pic5

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

parallel edges

A

edges with same end vertices
same direction
pic5

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

multiple edges

A

2 or more edges with same end vertix pic 4

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

simple graph

A

no loops, no multiple edges

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
loop free graph
no loops
26
multigraph
no loops, yes multiple edges
27
general graph
yes loops, yes multiple edges
28
labeled graph
names are assigned to graph
29
unlabeled graph
no names assigned to graph
30
incidence
if there is an edge between A and B, A is incident on B pic 6 edge incident -> 2 vertices vertix incident -> as many vertices
31
degree of vertices? in which graph type?
undirected | no. of vertices incident on a vertix (edges between how many vertices)
32
adjacent edge
non parallel edges with one common vertix | pic7
33
complete/full graph
order >= 2 (vertices) at least one edge between all vertices denoted by k subscript n (n = vertices) n = 5, Kuratowski's first graph pic9
34
bipartite graph
pic10 split into 2 disjoint sets V1 and V2 every edge connects vertex from V1 to vertex in V2 None only within V1 or within V2
35
complete bipartite
every v1 to every v2 | pic 11, kurotowskis second graph
36
is complete bipartite, complete graph? why
no edge between same bipartite
37
How to check if bipartite?
assign 2 colors alternatively no adj same color | pic 12
38
Types of undirected simple graphs
complete cycle: every vertex degree = 2 pic13 wheel: vertex connected to every other vertex(all degree 3 except center = vertex no. - 1)pic14
39
Types of graph
simple multi pseudo: self loops + maybe parallel edges pic15
40
Directed graph G(V,E) u and v?
collection of ordered pairs V -> nonempty set of vertices E -> ordered set of edges starting ->u, ending -> v
41
types of directed graphs
simple directed: no loops, no parallel edges multi directed: parallel edges pseudo/mixed directed: directed + undirected edges
42
Union of graphs
G(V1,E1) union G(V2,E2) G(V,E) where V = v1 union V2 etc | pic 16
43
path/walk
seq of edges/vertices
44
circuit/closed walk
same initial and end point
45
simple path
each edge only once
46
adjacency and incidence
``` row,column = vertices row = vertices column = edges ```
47
deg(V) or d(v)
no. of edges join V vertices, loops 2x
48
degree sequence of graph
all degrees in non-ascending order
49
degree of graph
min deg(V) of graph
50
isolated vertex
not end vertix (deg(V) = 0)
51
pendant vertex
deg(V) = 1
52
pendant edge
edge from pendant vertex
53
regular graph of degree k/k-regular graph
all vertices, same degree, k
54
3 regular graph aka
cubic graph
55
Peterson graph
pic17 | 10 vertices, 15 edges
56
3d hypercube Q3
pic 18
57
k regular grapgh, 2^k vertices aka
k dimensional hypercube Qk
58
handshaking property why does it work? why called handshake? aka
``` sum of all degrees = 2 * edges each edge counted twice (at each end) even no. of hanshakes obvio First Theorem of Graph theory pic 19 -> math form ```
59
Isomorphism
pic19 isomorphism reprsentation f:V->V' (f onto 1-1) {A,B}->E {f(A),f(B)}->E' SAME ADJ MATRIX(rearrange columns) SAME DEGREES Same order, same size -> not need isomorphic
60
Subgraphs
g1 subgraph of g if: all vertices and edges of g1 in g edge in g1 same end vertices as g g1 part of g
61
Subgraph results
all graphs subgraph of itself graph n vertices sub of complete kn single vertex in G1 sub G single edge + end verices sub G
62
Spanning SubG
vertices in main
63
Induced SubG
vertices and edges in main
64
Edge/Vertex disjoint
both subs no common edge/no common edge and vertex | vertex disjoint -> edge disjoint
65
complement of subG
G - subG(G1) = comp of G1 in G G - G1 or G1(bar) G1(bar) = G triangle G1
66
walk classification
seq of vertixedge+ no. of edges -> length vertix and edge more than once possible
67
how many paths of length n
A = adj matrix -> A^n paths