W11 - graph theory 1 Flashcards

(12 cards)

1
Q

What does Adjacency mean

A

two vertices v,w of a graph are adjacent if v,w is an edge in the graph

notation v~w or v,w∈E

If v and w are adjacent, then they are said to be endpoints, or endvertices, of the edge v,w between them

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

Incidence meainng

A

Vertex-edge incidence: if that vertex is one of the endpoints of the edge.

Edge-edge incidence: Two edges are incident if they share the same vertex

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

isolated vertex meaning

A

A vertex is isolated if it does not belong to (i.e., is not incident with) any edges.

deg⁡(v)=0

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

Leaf vertex meaning

A

A vertex is a leaf if it belongs to exactly one edge.

deg⁡(v)=1

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

Special type of graphs and their notation

Complete, path, cycle graphs

A

Complete graph

  • every pair of vertices joined by an edge
  • K_n

Path graph
* Has n vertities and n−1 edges where the vertices can be put in a sequence so that two vertices are adjacent if and only if they are consecutive in the sequence
* P_(n-1)

Cycle
* Has n vertities and n edges and can be formed from a path graph on the same vertices by adding a new edge between the first and last vertex of the path
* C_n

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

Handshaking Lemma

sum of (deg(v)) =?

and one of the corollaries

A

sum of all deg(v) = 2*m

Every graph has an even number of vertices of odd degree. The number of odd-degree vertices is even

m=number of edges

n= number of nodes

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

Average degree of G

what is the formula?

comes from handshaking lemma

A

Average degree of G= (2*m/n)

m=number of edges

n= number of nodes

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

What is a walk, trail, path and cycle?

Properties of repeated edges and repeated vertices

A

Walk
* Closed walk: start=end
* Repeated edges allowed
* Repeated Vertices allowed

Trails
* closed trail: start=end
* No repeated edges
* repeated vertices allowed

Paths
* No repeated edges
* No repeated vertices

Cycles
* Start=end
* No repeated edges
* No repeated vertices (apart from start and end)

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

What does it mean for a graph to be connected?

A

A graph G is connected if for every pair of vertices v and w, there is a path from v to w in G.

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

What is a component of a graph

A

A component of a graph is a connected subgraph of a graph which is not contained in any larger connected subgraph of that graph
* Maximal (you cannot add any more vertices or edges from the original graph while maintaining connectivity)

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

Bipartite graph meaning

A

A graph is bipartite:
* iff it has 2 coloring, OR
* iff it has no odd closed walk

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

What is an Euler tours

Also, which graph have euler tours

A

A closed trail that uses every edge.
* Trail = every edge gets used exactly once
* Closed = finishes at starting vertex

A graph has an Euler tour iff every vertex has an even degree

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