Graph Theory

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

1/52

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.

53 Terms

1
New cards

Graph

A pair G = (V,E), where V is a nonempty finite set and E is a set of 2-elements subsets of V.

2
New cards

Adjacent

If u, v are in V, then u is adjacent to v provided {u, v}.

{u, v} is an edge of G, and u and v are its endpoints.

3
New cards

Degree

The degree of v is the number of edges that attach to v. d(v)

4
New cards

∑d(v) = 2|E|

The sum of all the degree numbers is 2x the number of edges in a graph.

5
New cards

Complete Graph

If all pairs of distinct vertices are adjacent in G, we call G complete.

6
New cards

Complement

G'. The graph with the same vertex set as G and the following edge set: if two vertices u and v are adjacent in G, then they are not adjacent in G'.

7
New cards

Handshaking Lemma

States 2 things.

1) The sum of all the degrees of all the vertices of a graph is equal to twice the number of edges.

2) An undirected graph has an even number of vertices of odd degree.

8
New cards

Induced Subgraph

These are formed by using only vertex deletion. Any edges that can be kept are kept.

9
New cards

Spanning Subgraph

These are formed by using only edge deletion. This has the same vertices as its super-graph.

10
New cards

Subgraph

G is a subgraph of H provided V(G) is a part of V(H) and E(G) is a part of E(H).

11
New cards

Clique

A subset of vertices in a graph where any two distinct vertices are adjacent.

12
New cards

Clique Number

The size of a largest clique in G.

13
New cards

Independent Set

A subset of vertices in a graph where no two vertices are adjacent.

14
New cards

If a graph has at least 6 vertices, then w(G) ≥ 3 or G' ≥ 3.

Theorem

15
New cards

Walk

A walk in G is a sequence of vertices with each vertex adjacent to the next. You can repeat vertices in a walk.

16
New cards

Path

A path is a walk in which no vertex is repeated. It travels from vertex to vertex along the edges of a graph.

The length of path is the number of edges it traverses, which is one less than the number of vertices in the path.

17
New cards

A path does not traverse any edge of a graph more than once.

Theorem

18
New cards

If there is a walk from (a,b), then there is a path from (a,b).

Important

19
New cards

Connected to

Let u,v be in V(G). u is connected to v provided that there is a (u,v) path in G.

20
New cards

A vertex can be connected to itself.

Theorem

21
New cards

The is-connected-to relation is an equivalence relation.

Theorem

22
New cards

A vertex cannot be adjacent to itself.

Theorem

23
New cards

Circuit

A path that begins and ends at the same node

24
New cards

Component

A component of G is a subgraph of G induced on an equivalence class of the is-connected-to relation on V(G). If we partition the vertices, two vertices are in the same part exactly when there is a path from one to the other.

25
New cards

Connected

An graph is connected provided each pair of vertices is connected by a path.

26
New cards

Cut vertex

A vertex v is a cut vertex if G-v has more components than G. If G is a connected graph, v disconnects it.

27
New cards

Cut edge

An edge e is a cut edge if G-e has more components than G. If G is a connected graph, e disconnects it.

28
New cards

If e is a cut edge of a CONNECTED graph G, then G-e has exactly 2 components.

Proof

29
New cards

Cycle

A cycle is a walk of length at least 3, in which the first and last vertex is the same, but no other vertex is repeated.

30
New cards

Forest

If G contains no cycles, G is a forest.

31
New cards

Tree

A tree is a connected, acyclic graph.

32
New cards

For any 2 vertices (x,y) in a tree, there is a unique (x,y)-path.

Proof

33
New cards

Every edge of a tree has a cut edge.

Proof

34
New cards

Leaves

A leaf of a graph is a vertex of degree 1.

35
New cards

Every tree with at least two vertices has a leaf.

Proof

36
New cards

Division Theory

a and b are integers with b > 0. There exist unique integers q and r such that a = qb + r and 0 < r < b:

Moreover, there is only one such pair of integers.

37
New cards

Greatest Common Divisor

Let a, b be integers. We call an integer d the greatest common divisor of a and b provided

(1) d is a common divisor of a and b and

(2) if e is a common divisor of a and b, then e d.

The greatest common divisor of a and b is denoted gcd(a,b).

38
New cards

Mod GCD Theorem

Let a and b be positive integers and let c = a mod b. Then

gcd(a,b) = gcd(b,c)

39
New cards

Smallest positive integers

Let a and b be integers, not both zero. The smallest positive integer of the form ax + by,

where x and y are integers, is gcd(a,b).

40
New cards

Relatively Prime

Let a and b be integers.We call a and b relatively prime provided gcd(a,b) = 1. In other words, integers are relatively prime provided the only divisors they have in common

are 1 and -1.

41
New cards

More relatively prime

Let a and b be integers. There exist integers x and y such that ax + by = 1 if and only if a

and b are relatively prime.

42
New cards

GCD thing

Let a and b be integers, not both zero. Let d = gcd(a, b). If e is a common divisor of a and b,

then e|d.

43
New cards

Rule about modular arithmetic.

Let a and b ∈ Zn. Then a ⊕ b ∈ Zn and a ⊗ b ∈ Zn.

44
New cards

Modular subtraction.

Let n be a positive integer, and let a, b ∈ Zn. Then there is one and only one x ∈ Zn such that

a = b ⊕ x.

45
New cards

Modular Reciprocals

Let n be a positive integer and let a ∈ Zn. If a has a reciprocal in Zn, then it has only one

reciprocal.

46
New cards

Lists with repetitions allowed

There are n^k ways to construct a k-list using an n-set.

47
New cards

Subset counting: The number of k-element subsets of an n-element set.

n choose k

48
New cards

Counting subsets of a set.

Let A be a finite set. The number of subsets of A is 2^|A|

49
New cards

|A|+|B| = |A∪B| + |A∩B|

Adding two sets.

50
New cards

The length of path is the number of edges it traverses, which is one less than the number of vertices in the path.

A path traverses k edges and k+1 vertices, always.

51
New cards

Suppose a, b, p ∈ Z and p is a prime. If p|ab, then p|a or p|b.

Number theory tool

52
New cards

Invertible Elements

Let n be a positive integer and let a ∈ Zn. Then a is invertible if and only if a and n are relatively prime.

53
New cards

Cut edges don't apply to cycles