Graph Theory Flashcards

1
Q

What does κ(G) represent?

A

minimal vertex cut

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

What does λ(G) represent?

A

minimal edge cut

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

What does ω(G) represent?

A

number of components

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

What does δ(v) represent?

A

degree of v

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

What does |x| represent?

A

number of “x” – NOT absolute value

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

How many edges are in a complete graph?

A

n(n-1) / 2

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

What is the sum of the degree of all vertices?

∑v∈v(g) δ(v) = ?

A

Twice the number of edges. 2*|E(G)|

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

When is a degree sequence graphic?

A

If there is a corresponding simple graph.

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

If you sum up the contents of a row in an adjacency or incidence matrix, what is the resulting number?

A

The degree of the vertex. δ(v)

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

If each vertex in a graph G1 is associated with a vertex in a graph G2 such that the edges correspond, we can say G1 and G2 are:

A

isomorphic.

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

Two vertices are connected if:

A

there is a path between them.

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

A graph is connected if:

A

all pairs of vertices are connected.

i.e. from any vertex, there is a path to any other vertex.

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

What is a component of G?

A

A connected subgraph that isn’t strictly contained another connected subgraph of G.

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

What is the difference between a walk and a path?

A

A walk is just a sequence of vertices and edges.
In a path, all vertices the vertices are unique.

i.e. you never cross the same vertex twice.

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

What are vertex/edge cuts?

A

A subset of the vertices/edges such that if you take them away from the graph, the graph will become disconnected.

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

What can we say about the minimal: vertex cut, edge cut, and degree of vertices in a graph?

A

The minimal vertex cut is less than or equal to the minimal edge cut which is less than or equal to the minimal degree of the vertices in a graph.
κ(G) ≤ λ(G) ≤ min v∈V(G) {δ(v)}

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

What is the minimal vertex/edge cut?

A

The minimum number of vertices/edges you have to remove to disconnect the graph.

18
Q

What does it mean if a graph is k-connected?

A

that the minimal vertex cut is greater than or equal to k.
κ(G) ≥ k

i.e. it has more than k vertices and remains connected whenever fewer than k vertices are removed. You have to remove k+ vertices to disconnect the graph.

19
Q

If you have two non-adjacent vertices (u,v), the number of vertex independent paths between (u,v) is equal to:

A

The minimum number of vertices you need to remove to disconnect u and v. (by Mengers Theorem)

20
Q

By Mengers Theorem, the minimum number of vertices you need to remove to disconnect two non-adjacent vertices u and v is equal to:

A

The number of vertex independent paths between u and v.

21
Q

Which property is “stronger” vertex independence, or edge independence?

A

Vertex independence. Since vertex independence implies edge independence, but not vice versa.

22
Q

These properties represent what type of graph?

  1. V(G)=V1∪V2
  2. V1 ∩ V2 = {}
  3. E(G)⊆{⟨v1,v2⟩ | v1 ∈V1 and v2 ∈V2}

Additionally, translate each of the above lines into english.

A

Bipartite graph.

  1. The vertex set of G is equal to the union of vertex set V1 and vertex set V2.
  2. V1 and V2 have no elements in common. Meaning, V1 and V2 share no vertices.
  3. The edge set E(G) contains edges whose endpoints are in different sets.
23
Q

What is a ranked embedding?

A

A type of graph embedding that can be performed on bipartite graphs such that each “row” of the embedding contains vertices from a different set.

24
Q

How does a spring embedding work? (simply)

A

A spring embedding is constructed by assigning attractive forces to adjacent vertices, and repelling forces to non-adjacent vertices. Calculations are then performed until an equilibrium is achieved, and then you’ll have the result of the embedding.

25
Q

A graph in which no two edges cross is known as what type of graph?

A

Planar graph.

26
Q

What is Eulers formula?

What does it mean?

A

n-m+r = 2
In a planar graph, it means that the number of vertices, minus the number of edges, plus the number of regions, is equal to 2.

27
Q

What is a complete graph?

A

A complete graph is a graph in which every node is directly connected to every other node. In a graph with N vertices, each node will have a degree of n-1.

28
Q

The number of vertices of odd degree in a graph G is:

A

even.

by the handshaking lemma, a result of the degree sum formula.

29
Q

There exists a strongly connected orientation for a graph iff:

A

The minimal edge cut is greater than or equal to 2.

λ(G) ≥ 2

30
Q

What does χ′(G) represent?

A

edge chromatic number

i.e. the minimal k for which G is k-edge colourable.

31
Q

What does χ(G) represent?

A

vertex chromatic number

i.e. the minimal k for which G is k-vertex colourable.

32
Q

What does ∆(G) represent?

A

the max degree of G

33
Q

What does it mean if a graph G is k-vertex/edge colourable?

A

It means the graph can be coloured with k colours, such that no two adjacent vertices/edges have the same colour.

34
Q

How many orientations exist for a simple graph with m edges?

A

2^m, though, its slightly less if you account for isomorphisms.

35
Q

What does the Four Colours Theorem state?

A

It is possible to colour any planar graph with 4 colours.

36
Q

What is a closed walk?

A

A u,v walk where u=v

37
Q

What is a tour?

A

A closed walk that traverses each edge.

38
Q

What is an Euler Tour?

A

A tour that traverses each edge exactly once.

39
Q

If a graph G is connected, and all its vertices have even degree, it has a:

A

Euler tour

40
Q

What is a trail?

A

A walk that traverses each edge at most once.

41
Q

What is a hamilton cycle?

A

A cycle containing every vertex exactly once.

If a graph contains a hamilton cycle, it is called Hamiltonian.

42
Q

Diracs theorem says what?

A

The number of edges is less than or equal to 3n-6