Simple Graphs Flashcards

1
Q

What is a simple graph?

A

G(V, E) Where V and E denote vertex and edges

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

What is the order of a graph?

A

p(g) = |v(g)|

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

what is the size of a graph?

A

q(g) = |e(g)|

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

What is graph density

A

How close the number of edges are to max amount of edges
q(g) / binom(p(g))(2)

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

What is an r-regular graph?

A

Degree of vertex v = degree of all vertices
deg(v) = r forall v in V(G, where r is in Natural number and r <= p
r denotes amount of edges

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

What is a complete graph?

A

Kn = n-1 regular graph

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

What is an empty graph?

A

bar(Kn) is a graph with n vertices but with an empty set of edges

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

What is a k-partite graph?

A

V(G) can be partitioned into k subsets, such that no two vertices of Vi are adjacent to each other.
That means that no vertices in their sets are adjacent, rather adjacent to the vertices in their opposite sets.

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

What is a complete k-partite graph?

A

Knk is a k-partite graph such that each pair of vertices not in the same subset are adjacent. Every possible edge is on the vertex.

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

What is a complete balanced k-partite graph?

A

K(kxn) is a complete k-partite graph such that each subset contain n vertices

Therefore, k = num sets, n = num vertices

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

What isa a directed graph?

A

Graph in which edges have a direction called an arc, denoted by (v, w) or vw (with a arrow)

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

What is a weighted graph?

A

Each edge or arc is assigned a pos real number.

Learn notation in notes

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

How do you calculate the total weight of a weighted graph?

A

W(G) = sum of the edges of weights in the graph

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

What is a proper subgraph?

A

When subgraph is not identical to its parent

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

What is a spanning subgraph?

A

Subgraph such that vertex set is equal to that of the original graph
therefore V(H) = V(G), E(H) subset E(G)

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

What is a vertex induced subgraph?

A

Selection of vertices from larger graph including all the edges that connect these vertices

Subgraph S(G) whose vertex set V({S}G) = Subset of V(G). It has an edge set E({S}G) that contains all edges in G whose end-points are both in S

Study notation on notes

17
Q

What is an edge induced subgraph?

A

{T}G by taking subset of the edge set of G, with the vertex set being the end points of those edges.

Study notation on notes