Week 3 Flashcards

(22 cards)

1
Q

How is edge deletion and vertex deletion of G denoted?

A

G-v is vertex deletion
G+e is edge addition

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

What is the union of two graphs G and H called and what is the vertex set and edge set going to be?

A

G∪H

V(G)∪V(H)

E(G)∪E(H)

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

When is G∪H said to be disjoint?

A

If V(G)∩V(H)=Ø

G and H do not share any vertices

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

What does 2K⌄2 stand for and is it disjoint?

A

K⌄2∪K⌄2

Yes

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

What is a walk?

A

A alternating sequence of vertices and edges

(v⌄1,e⌄1,v⌄2,e⌄2,…,e⌄k-1,v⌄k)
such that e⌄i = {v⌄i, v⌄i+1} where i=1,2,…, k-1

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

When is a graph connected?

A

If for any two distint vertices, u and v, there is a (u,v)- walk

Meaning that any point is connected to any other point with a walk along points or a single movement

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

Are these graphs connected: K⌄3, 2K⌄3?

A

yes

no

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

What is a (u,v) walk?
(u,v)-path?
simple (u,v)-path?

A

A (u, v)-walk is any sequence of vertices and edges that starts at vertex u and ends at vertex v

A (u, v)-path is a walk from 𝑢 to 𝑣 in which no vertex is repeated

This means exactly the same thing as a (u, v)-path

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

Is it true that a (u,v)-walk contains a (u,v)-path, a simple (u,v)-path?

A

yes

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

What is a connected componant of a graph g?

A

Its maximal connected subgraph. Every graph is the disjoint
union of its connected components.

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

What is a degree of a vertex?

A

The degree of a vertex v is the number of vertices in its neighbourhood

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

How is the degree of a vertex notated?

A

deg v = |N(v)|

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

What makes a vertex isolated?

A

A vertex v is isolated if deg v = 0

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

What a vertex a pendant?

A

A vertex v is pendant if deg v = 1

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

When is a vertex dominating?

A

A vertex v is dominating if deg v = |G(v) |-1.

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

What are the minimal and maximal vertex degrees of a graph G are denoted by?

A

∂(G) and Δ(G), respectively. E.g.
∂(K2,k)= and Δ(K2,k)= .

17
Q

∂(K⌄2,k)= ?

Δ(K⌄2,k)= ?

18
Q

What is the handshake Lemma?

State it in simple terms

A

It states that the sum of degrees of all vertices is an even number which is twice the size of E(G)

There as many total connections to vertices as there are edges times by 2

19
Q

For any simple graph, the number of vertices of odd degree is what?

20
Q

What is the degree sequence of a graph?

A

Where the degree of all vertices of a graph are listed, typically put in descending order

21
Q

Which graphs are specified by the degree sequence (2,…,2,1,1)= (2(k)
,1(2))?

A

A path, could be a long path, but has to be path. Loop type graphs dont work, only paths

22
Q

What is the difference between degree of v and neighbourhood of v (+ example)

A

Neighbourhood is the vertexs that are adjacent to v and degree is how of those vertex

N(v) = {a,b,c}
deg(v) = 3