Exam 2 Flashcards

1
Q

Vertices

A

Dots

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

Edges

A

Lines

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

Adjacent Vertices

A

Two vertices that are connected with an edge.

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

Isomorphic

A

A function that renames the vertices (dots) between two edges (lines)

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

Bijection

A

An isomorphism between two graphs

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

Isomorphism Class

A

Collection of isomorphic graphs

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

Induced Subgraph

A

Smaller graph of a larger one formed by choosing some vertices but all the edges in between them

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

Multigraph

A

Double edges or Single loops

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

Find number of edges

A

1) Sum of Degree: (Vertices * 2)

2) SoD = 2 * Number of Edges

3) NoE = SoD/2

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

Handshaking Lemma

A

Sum of Degrees (Vertices * 2) = 2 * Number of Edges

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

Tree

A

Connected Graph with no cycles

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

Forest

A

Multiple Trees

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

Rooted Tree

A

One vertex that a section of the tree is directed away from

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

Proposition 2.2.2

A

A graph is a tree if there is only one distinct path connecting them

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

Corollary 2.2.3

A

If you pick any two vertices in a forest, there can be at most one path connecting them.

A leaf is a vertex that is connected to exactly one other vertex by a single edge.

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

Degree of a vertex

A

Number of edges connected

17
Q

Proposition 2.2.4

A

A tree with two or more vertices must have at least two leaves.

Leaves are vertices with degree one, meaning they are connected to only one other vertex.

18
Q

Proposition 2.2.5

A

You will always have 1 less edges vs vertexes
E = V-1

19
Q

Theorem 2.2.7

A

Every connected graph has a spanning tree.

20
Q

Spanning Tree

A

A subgraph of a graph that is a tree, containing all vertexes in a line

21
Q

Smallest/Largest number of edges to remove from Spanning Graph

A

1) Vertexes - 1 = Edges
2) Given number of edges - Found Edges

22
Q

Euler Path

A

A path in a graph that travels through every edge exactly once but doesn’t have to return to the starting point.

Every vertex in the graph must have an even number of edges (even degree or even amount of edges)

23
Q

Euler Circuit

A

A special type of Euler Path where you travel through every edge exactly once and return to the starting point.

All vertices must have an even degree (even number of edges).

24
Q

Lattice Path

A

One of the shortest paths (Horiz or Vert only) connecting two paths on the Lattice (integers only)

25
Q

Lattice

A

Only coordinates with integers

26
Q
A