Unit 4 - Introduction to Graphs Flashcards

1
Q

Undirected Graphs

A

All the edges are bidirectional

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

Vertices and Edges letters

A

Nodes or vertices (V)
Connection or lines edges (E)

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

Finite graph

A

A graph with a finite number of nodes and edges

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

Isolated node

A

Is a node without neighbors

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

Simple graph

A

A graph that has no loops and it has no multiple edges

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

Connected graph

A

A graph where there is a path between any two vertices

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

Degree of a node

A

The number of edges starting from a node.
δ delta

Isolated nodes have 0 degree.
Loops count double and increase the node degree by 2.

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

Handshaking lemma

A

In any finite, undirected and simple graph, the sum of the node degree is exactly twice the number of edges.

The sum of all node degrees of a graph is even (pari).

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

Isomorphic

A

Two graphs which contain the same number of graph vertices connected in the same way.

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

Regular graph

A

A graph in which every node has the same degree.
Generally the number of edges are 1/2ng
n = nodes
g = degree

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

Planar graph

A

If it has an isomorphic representation that can be drawn in the plane without intersections.

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

Euler polyhedral formula (planar graph)

A

v - e + f = 2

v = nodes
e = edges
f = number of faces

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

Subgraph

A

is created by removing edges or nodes together with all edges ending in that node.

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

Adiacent matrix

A

Is used for the compact representation of a graph.

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

How is an adiacent matric of an undirected graph?

A

It is always symmetric, because an edge connect both one node to the other and vice versa.

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