Graph Theory

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/28

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

29 Terms

1
New cards

EXAMPLE OF A GRAPH

knowt flashcard image
2
New cards

defn of a graph

a graph G is a pair (V(G), E(G))

3
New cards

V(G)

  • is a set

  • elements of V(G) are the vertices of graph G

4
New cards

E(G)

  • is a set

  • elements of E(G) are the edges of the graph G

5
New cards

the sets V(G) and E(G) are linked by an

incidence function (see image)

  • “e1 is incident to v1” if an end of e1 is connected to v1

<p>incidence function (see image)</p><ul><li><p>“e1 is incident to v1” if an end of e1 is connected to v1</p></li></ul><p></p>
6
New cards

defn of a loop

An edge e ∈ E(G) is a loop if ψG(e) = {v} for some vertex v ∈ V (G).

→ meaning both ends of the edge connects to the same vertex

7
New cards

defn of arc

An edge e ∈ E(G) is an arc if ψG(e) = {u, v}, for two distinct vertices u, v ∈ V (G).

  • meaning an edge connecting two vertices together

8
New cards

parallel

Two edges e1 and e2 are parallel if ψG(e1) = ψG(e2)

  • two edges connect together the same two vertices

9
New cards

defn of a simple graph

A graph is simple if it has no loops and no parallel edges.

10
New cards

adjacents

Two vertices u, v ∈ V(G) are adjacents (or neighbours) if there is an edge e ∈ E(G) such that ψG(e) = {u, v}. In this case, we write u ∼ v.

  • meaning the vertices are connected by the same edge

11
New cards

An edge e ∈ E(G) is said to be ___________ to the vertices of ψG(e).

incident

12
New cards

adjacency matrix defn

Let G be a graph with n vertices v1, v2, ..., vn.

  • An adjacency matrix of G is an n×n matrix A whose entry in row i and column j is equal to the number of edges linking vi and vj.

  • see image for example

  • note: there’s a 2 for entry (v1,v1) since both ends of e3 connects to v1

<p>Let G be a graph with n vertices v1, v2, ..., vn.</p><ul><li><p>An adjacency matrix of G is an n×n matrix A whose entry in row i and column j is equal to the number of edges linking vi and vj. </p></li><li><p>see image for example</p></li><li><p>note: there’s a 2 for entry (v1,v1) since both ends of e3 connects to v1</p></li></ul><p></p>
13
New cards

defn of a degree

Let G be a graph. The degree of a vertex v ∈ V(G), denoted by deg(v), is the number of edges incident to v, where loops on v are counted twice.

14
New cards

degree sequence

If V(G) = {v1, v2, ..., vn}, then the degree sequence of G is

(deg(v1), deg(v2), ..., deg(vn))

  • the nums in a deg sequence can be in ANY ORDER

15
New cards

Handshake Lemma (formula)

knowt flashcard image
16
New cards

degree sequences are _______ to one graph

NOT unique; multiple graphs can have the same deg sequence

17
New cards

isomorphism concept

<p></p>
18
New cards

defn of isomorphism

Let G and H be two simple graphs. An isomorphism from G to H is a bijective function f : V (G) → V (H) such that for all u, v ∈ V (G), we have

u ∼ v f(u) ∼ f(v)

→ meaning adjacency properties are preserved

19
New cards

isomorphism basic example

knowt flashcard image
20
New cards

to show that two graphs are isomorphic

present an isomorphism between the two graphs

  • show the bijective fn

  • show the graph diagram

21
New cards

to show that two graphs G and H CANNOT be isomorphic

you must find a FUNDAMENTAL DIFFERENCE between G and H

the difference could be (verify in this order):

  1. diff num of vertices

  2. diff num of edges

  3. diff deg sequence / diff num of elements in deg sequence

  4. a subgraph of G that isn’t a subgraph of H

22
New cards

defn of a subgraph

Let G and H be two graphs. We say that H is a subgraph of G if V (H) ⊆ V (G) and E(H) ⊆ E(G). In this case, we write H ⊆ G

  • the set of vertices of H is a subset of the set of vertices of G

  • AND the set of edges of H is a subset of the set of edges of G

23
New cards

subgraphs visual

knowt flashcard image
24
New cards

defn of a complete graph

let n be a positive integer (a natural num). the complete graph on n vertices, denoted by Kn, has the following properties:

  • Kn is simple, |V(Kn)| = n → |V(K2)| = 2, meaning the graph of K2 has 2 vertices

  • each pair of vertices is linked by one edge.

  • every vertice is linked to every other vertice in the graph

<p>let n be a positive integer (a natural num). the complete graph on n vertices, denoted by K<sub>n</sub>, has the following properties:</p><ul><li><p>Kn is simple, |V(Kn)| = n → |V(K2)| = 2, meaning the graph of K2 has 2 vertices</p></li><li><p>each <strong>pair of vertices</strong> is linked by <strong>one</strong> edge.</p></li><li><p>every vertice is linked to every other vertice in the graph</p></li></ul><p></p>
25
New cards

how many edges does a complete graph Kn have?

n “choose” 2

26
New cards

what is the deg sequence for a complete graph Kn?

(n-1, n-1, n-1, ….., n-1) → n - 1 repeated n times (since a complete graph of Kn has n vertices)

27
New cards

defn of a cycle

let n be a positive integer.

  • a cycle of length n, denoted by Cn, is the following graph:

    • V(Cn) = {u1, u2, ..., un}. The vertex u1 is adjacent to u2 and to un.

    • The vertex un (the “last” vertice in the set of vertcies) is adjacent to un−1 and to u1 (the first vertice).

    • For every other vertex, ui is adjacent to ui−1 and to ui+1.

28
New cards

how many edges does a cycle graph Cn have?

n

  • could think of a shape having the same number “sides” as vertices

29
New cards

what is the deg sequence of a cycle graph Cn?

(2, 2, 2, 2…..2) → repeated n times since a graph Cn has vertices