Networks Flashcards

1
Q

Edges

A

The sets of lines that join vertices

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

Vertices

A

A set of points

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

Loop

A

An edge that starts and ends at the same vertex

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

Multiple edges

A

When two or more edges connect the same two vertices

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

Adjacent vertices

A

When two vertices are connected by a path that only involves one edge

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

Degree of vertex

A

The number of edges connecting to the vertex

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

Sum of degrees

A

Formula that says if you add up of the degrees of the vertices in a graph, the result is twice the number of edges in the graph

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

Isolated vertice

A

A vertice that is not connected to any other vertices. It has a degree of 0

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

Null graph

A

A graph made up of multiple isolated vertice, has no edges

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

Regular graph

A

A graph in which each vertice has the same number of degrees

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

Weighted graph

A

Graphs that have amounts, distances or some information on each edge

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

Subgraph

A

A portion of an existing graph

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

Trivial graph

A

A graph containing one single isolated vertice

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

Simple graph

A

An undirected, unweighted graph with no loops or multiple edges

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

Connected graph

A

A graph where every vertex is connected to every other vertex. (Meaning travelling across several edges is applicable)

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

Complete graph

A

Simple graphs in which every vertice is connected to every other vertice by, in each case, a single edge

17
Q

Planar graph

A

A graph where no edges cross over each other

18
Q

Euler’s formula

A

vertices-edges+faces=2

19
Q

If a graph doesnt fit euler’s formula?

A

There is not a connected, planar network with those properties

20
Q

What statement defines a connected planar graph?

A

Connected planar graphs have an even number of vertices with odd degrees

21
Q

Bipartite graph

A

A graph whose vertices can be divided into 2 groups such that each edge connects a vertex from one group to a vertex in another. Vertices in a group are never connected to other vertices in that group

22
Q

Matrix properties

A
  • A loop is counted as one edge
  • The sum of the row entries gives the degree of the vertex corresponding to that row. For any vertex containing a loop, 1 must be added as a loop is counted as two edges in the context of the degree of a vertice
23
Q

Eulerian graph

A

It has a closed trail (Starts and finishes at same vertices) that includes every edge once only. The graph must be connected and have all vertices of an even degree

24
Q

Semi-eulerian

A

It has an open trail (Starts and finishes at different vertices) that includes every edge once only. The graph must be connected and have two vertices of an odd degree

25
Q

Where do semi-eulerian trails start and finish

A

Must start at one of the odd vertices and finish at another

26
Q

Hamiltonian cycle vs path

A

Path: Goes to every vertex
Cycle: Goes to every vertex and starts and ends at the same vertex