Module 12 Vocab Flashcards

1
Q

Graph Isomorphism (notation)

12.1

A

G1 ≃ G2

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

Graph Isomorphism (definition)

12.1

A

bijection β: V1 → V2
such that for any u1v1 ∈ V1 we have
u1—v1∈E1 iff β(u1)—β(v1)∈E2

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

Graph Isomorphism (words)

12.1

A

match up the vertices based on their degree

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

How to write isomorphism

12.1

A

G1 ≃ G2 by the bijection
4→5, 2→6, 3→8, 1→7

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

Isomorphism Proposition I

12.1

ex path

A

any 2 complete/path/cycle/edgeless graphs are isomorphic iff they have the same number of vertices

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

Isomorphism Proposition II

12.1

ex grid

A

any 2 mxn grids are isomorphic, as well as isomorphic to any nxm grids

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

Isomorphism Proposition III

12.1

ex complete

A

any permutation of n vertices in Kn is n isomorphism

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

Subgraph (intuitive)

12.1

A

the part of a graph that can be in its own right, a graph

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

Subgraph (definition)

12.1

A

G1 is a subgraph of G2
when V1⊆V2 and E1⊆E2
if it actually makes a graph
(beware pointless edges)

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

Induced Subgraphs

12.1

A

the subgraph of G induced by V’∈V
is the graph G’ = (V’, E’)
where E’ consists of all the edges of G whose endpoints are both in V’

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

Counting Paths

12.1

A

to count paths of length n(edges),
count the subgraphs that are path graphs on n+1 vertices

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

Paths of length 2 in Cn

12.1

A

n paths of length 2 in Cn

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

Sujective

12.1

A

range = whole codomain
ex: every vertex fits some characteristic

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

Bijective

12.1

A

every element maps to a distinct element
ex: only maps to one path

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

Bijection Rule

12.1

A

|A| = |B|
domain = codomain

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

Closed Walk

12.2

A

walk where first and last vertex are the same

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

Cycle

12.2

A

closed walk of length ≥ 3 (edges)
in which all nodes are pairwise disjoint
except for the last/first

reminder: 4 nodes total for mininum 1-2-3-1

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

1-2-3-4-2-1

12.2

A

closed walk
(2 twice)

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

2

12.2

A

closed walk of length 0

20
Q

2-3-4-2

12.2

A

cycle length 3

21
Q

Counting Cycles

12.2

A

to count cycles of length n,
count subgraphs that are cycle graphs
on n vertices

22
Q

How many cycles are there in K4?

12.2

A

length 3: 4 choose 3
length 4: induce last node from node 1, 3 choose 2

23
Q

Cycle of length 3
(of Kn)

12.2

A

“the subgraph induced by any 3 vertices is a cycle subgraph”

n choose 3

24
Q

Cycle of length 4
(of Kn)

12.2

A

step 1: pick 4 nodes
step 2: multiply by 3 (3 choose 2)

25
Q

What is the total number of cycles in K5?

12.2

A

37

26
Q

cc Partition

12.3

A

cc’s partition the set of vertices V
as well as the set of edges E

27
Q

we can view — as — induced by a set of —

12.3

A

cc’s
subgraphs
vertices

28
Q

Edge Partition Proposition

12.3

A

every edge {u,v}∈E belongs to
exactly one of the subgraphs
induced by the cc’s of G

29
Q

cc’s as graphs proposition

12.3

A

to count the # of paths/cycles of length k
we add up the # of paths/cycles in each of its cc’s

30
Q

Acyclic

12.3

A

a graph in which there are no cycles

31
Q

Tree

12.3

A

a graph that is both connected and acyclic

32
Q

Forest

12.3

A

an acyclic graph,
since all its cc’s are trees

33
Q

3 Isomorphism Propositions

12.3

A

if G1 ≃ G2, then

G1 is acyclic iff G2 is acylic
G1 is connected iff G2 is connected
G1 is a tree iff G2 is a tree

34
Q

Edges in Trees Proposition

12.3

A

a tree has one more vertex than edges

if tree, then |E| = |V| - 1

35
Q

Edges in Forrests Corollary

12.3

A

the sum of a forrest’s edges is the difference between its nodes and cc’s

if forest, |E| = |V| - |CC|

36
Q

Vertices in Trees Propositions

12.3

A

any tree with n vertices has n-1 edges

37
Q

Leaf

12.3

A

a node of degree 1

38
Q

Leaf Lemma I

12.3

A

every tree with edges has at least one leaf

39
Q

Leaf Lemma II

12.3

A

removing a leaf from a tree with edges leaves again a tree

*removing a leaf means also removing its one incident edge

40
Q

Maximally Connected Tree Proposition

12.4

A

removing any edge in a tree disconnects it

41
Q

Maximally Acyclic Tree Proposition

12.4

A

adding an edge between any two non-adjacent vertices in a tree creates a cycle

42
Q

Unique-Path Connected Tree Proposition

12.4

A

any two distinct vertices of a tree are connected by one unique path

43
Q

Edge in Acyclic Graph Lemma

12.4

A

adding an edge to an acyclic graph creates at most one cycle

44
Q

Cycle in Closed Walk Lemma

12.4

A

any closed walk of non-zero length that traverses at least one of its edges exactly once contains a cycle

45
Q

Unique Path Connectivity Proposition

12.4

A

a graph such that any two distinct vertices are connected by a (1) unique path must be a tree

46
Q

Cut Edge

Self

A

an edge that if removed gives us a graph with strictly more cc’s

47
Q

Cut Edge Proposition

Self

A

removing a cut edge increases the number of cc’s by exactly 1