Graph teory Flashcards

1
Q

Graphs Definition (1)

A

1.) A graph is defined by a finite set of Vertices and a set of Edges which pare the vertices

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

Edges (1)

A

1.) Connections between two vertices, which can also be weighted (to assign for example distance)

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

Adjacency Matrixes (3)

A
  1. ) Adjacency matrices of graphs with n vertices is an (n x n) matrix.
  2. ) If the graph is unweighted the matrix is boolean and each combination of the elements is equal to 1 if there is an edge and 0 if there isn’t.
  3. ) If the graph is weighted the matrix is a weighted/cost matrix and each combination of the elements is equal to the edge weight if there is an edge and infinity if there isn’t.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Simple/Strict graphs (4)

A
  1. ) undirected
  2. ) unweighted
  3. ) no loops
  4. ) no more than one edge between two vertices
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Connected Graphs (1)

A

1.) Connected graphs: a graph is connected if for any two given points x and y there is a way to travel from x to y.

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

Component (2)

A
  1. ) Disconnected graph which is part of a super graph.

2. ) Also called sub-graph.

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

Complete Graph (3)

A
  1. ) All vertices are connected through direct edges.
  2. ) Each vertex will have n-1 edges.
  3. ) The graph will have ( n(n-1) ) / 2 edges
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Cycle Graphs (4)

A
  1. ) Simple, connected graph.
  2. ) Each vertex is connected to 2 other vertices.
  3. ) The number of edges equals the number of vertices.
  4. ) It has a path which starts and ends in the same vertex without traversing an edge more than once.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Trees and Forests (3)

A
  1. ) Tree: simple, undirected, connected acyclic graph.
  2. ) A tree with n vertices has n-1 edges.
  3. ) Forest: supergraph composed by sub-graphs which are trees.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Eulerian path/trail (1)

A

1.) Eulerian path/trail is a path which visits each edge only once.

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

Path (1)

A

1.) Finite or infinite sequence of edges which connect disconnected vertices.

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

Undirected Graph (2)

A
  1. ) Each edge in the graph is undirected.

2. ) Undirected graphs are symmetric.

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

Directed Graph (2)

A
  1. ) Each edge in the graph is directed.

2. ) Diagraphs are asymmetric.

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

Mixed Graphs (1)

A

1.) Mixed graphs have both directed and undirected edges.

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

Directed Edges (2)

A

e = (u, v)

  1. ) The edge is directed if (u, v) is not the same as (v, u).
  2. ) ‘u’ is called the edge’s tail and ‘v’ is called the edge’s head.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Eulerian cycle/circuit (2)

A
  1. ) Eulerian trail which starts and ends on the same vertex.
  2. ) If all vertices have an even number of edges then a eulerian cycle is possible
17
Q

Eulerian graph (1)

A

1.) A graph with an eulerian cycle is a Eulerian graph.

18
Q

Hamiltonian/Traceable path (1)

A

1.) path in undirected or directed graph which passes by each vertex only once.

19
Q

Hamiltonian cycle/circuit (1)

A

1.) A hamiltonian path which starts and ends in the same vertex.

20
Q

Hamiltonian Graph (1)

A

1.) Graphs which have hamiltonian cycles/circuits.

21
Q

Multigraphs (1)

A

1.) Graphs with multiple edges connecting two vertices.