Graph Theory Flashcards

(39 cards)

1
Q

What a is a vertex

A

it is a point on the graph

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

What is an edge

A

Is a line or a curve with a vertex at each end

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

What does it mean when two vertices are adjacent

A

If they are connected by an arc

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

What is a loop

A

An arc that connects a vertex to itself is called a loop

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

What is a directed graph

A

A graph where at least one edge has a direction associated with it

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

What is a network

A

A graph where each edge has a number or weight associated with it

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

What does it mean when a graph is connected to

A

When it is possible to get from any vertex to any other vertex directly or indirectly

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

What does it mean when a graph is simple

A

If there is only ever one arc between two adjacent vertices and no loops

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

What a simply connected graph

A

A graph that is connected and simple

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

What is the degree

A

The number of edges that join a vertex with a loop counting twice

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

What are indegrees and outdegrees

A

The indegree is the number of edges leading to the vertex and the outdegree is the number of edges leading from the vertex

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

What are odd and even vertices

A

A vertex with an odd degree is called an odd vertex and an even vertice is a vertex with an even degree

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

What is the sum of the vertices always

A

Even in graph theory

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

What is a tree

A

A simply connected graph with the minimum number of arcs is called a tree

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

What is a walk

A

A sequence of edges in which the end of one edge is the beginning of the next

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

What is a trail

A

A walk with no repeated edges

17
Q

Hat is a closed trail

A

WA trail that starts and ends at the same vertex

18
Q

What is a path

A

A trail with no repeated vertices

19
Q

What is a cycle

A

A closed path

20
Q

What is a route

A

A general term referring to walk, trail or path, that can be closed or not closed.

21
Q

What is a complete graph

A

A graph where every vertex is connected to every other vertex

22
Q

What is a complete graph denoted as

23
Q

What is the formula for the number of arcs in a complete graph

24
Q

What are bipartite graphs

A

When every vertex from the first set connects to a vertex from the second set

25
What is a complete bipartite graph
A bipartite graph with the maximum number of arcs
26
What is the denotion for a complete bipartite graph
Km,n has mn arcs
27
What is the colouring algorithm to show whether a graph is bipartite
Step 1. Choose any vertex as the starting vertex and colour it red Step 2. Colour every vertex that is adjacent to a red vertex as blue Step 3. Colour every vertex that is adjacent to a blue vertex as red Step 4. If a vertex is coloured both red and blue STOP; the graph is not bipartite
28
What is a traversible graph
A graph that is one that cna be drawn without asking pen from paper, or going over the same graph twice
29
What is an Eulerian graph
A graph where you can draw a closed trail covering every edge
30
What is a semi-Eulerian graph
A graph that you can draw a trail that covers every edge, but none that’s closed is semi-Eulerian
31
What is a Hamiltonian graph
A graph that contains a cycle that passes through every vertex exactly once
32
What is ores theorem
For a simply connected graph with G with n>= 3 vertices, if the sum of the vertex degrees >= n for every pair of non-adjacent vertices then G is Hamiltonian
33
What is a feature of ores theorem
It’s a sufficient condition not a necessary condition, so if the condition fails it’s inconclusive
34
What is isomorphism in graphs
Two graphs are isomorphic if they share the same structure
35
How can you tell if two graphs are isomorphic
If two graphs have different degree sequences then they aren’t isomorphic
36
What is a digraph A
Graph with directed arcs
37
What is the relationship between the in-degree and out-degree and the number of arcs
Total in degree = total out degree = number of arcs
38
What is a subdivision
An insertion of vertex of degree two into an arc
39
What is contraction
Means removing an arc from a graph and merging the two vertices previously joined. The new vertex’s label is a concatenation of the previous vertices names.