And before you really hate (mathematical) relations and begin to break your (social) relations, let’s switch to a new topic: Graphs Discrete Structures.

Slides:



Advertisements
Similar presentations
CSE 211 Discrete Mathematics
Advertisements

Based on slides by Y. Peng University of Maryland
Chapter 9 Graphs.
Lecture 5 Graph Theory. Graphs Graphs are the most useful model with computer science such as logical design, formal languages, communication network,
22C:19 Discrete Math Graphs Fall 2010 Sukumar Ghosh.
Introduction to Graph Theory Instructor: Dr. Chaudhary Department of Computer Science Millersville University Reading Assignment Chapter 1.
22C:19 Discrete Math Graphs Fall 2014 Sukumar Ghosh.
Midwestern State University Department of Computer Science Dr. Ranette Halverson CMPS 2433 – CHAPTER 4 GRAPHS 1.
Graph-02.
Introduction to Graphs
Applied Discrete Mathematics Week 12: Trees
1 Section 8.2 Graph Terminology. 2 Terms related to undirected graphs Adjacent: 2 vertices u & v in an undirected graph G are adjacent (neighbors) in.
Math Foundations Week 12 Graphs (2). Agenda Paths Connectivity Euler paths Hamilton paths 2.
Discrete Structures Chapter 7A Graphs Nurul Amelina Nasharuddin Multimedia Department.
Applied Discrete Mathematics Week 12: Trees
KNURE, Software department, Ph , N.V. Bilous Faculty of computer sciences Software department, KNURE Discrete.
Discrete Mathematics Lecture 9 Alexander Bukharovich New York University.
Let us switch to a new topic:
22C:19 Discrete Math Graphs Spring 2014 Sukumar Ghosh.
9.2 Graph Terminology and Special Types Graphs
GRAPH Learning Outcomes Students should be able to:
May 5, 2015Applied Discrete Mathematics Week 13: Boolean Algebra 1 Dijkstra’s Algorithm procedure Dijkstra(G: weighted connected simple graph with vertices.
Graphs Chapter 10.
Graph Theoretic Concepts. What is a graph? A set of vertices (or nodes) linked by edges Mathematically, we often write G = (V,E)  V: set of vertices,
Graph Theory Topics to be covered:
1 Graphs Chapters 9.1 and 9.2 University of Maryland Chapters 9.1 and 9.2 Based on slides by Y. Peng University of Maryland.
May 1, 2002Applied Discrete Mathematics Week 13: Graphs and Trees 1News CSEMS Scholarships for CS and Math students (US citizens only) $3,125 per year.
© by Kenneth H. Rosen, Discrete Mathematics & its Applications, Sixth Edition, Mc Graw-Hill, 2007 Chapter 9 (Part 2): Graphs  Graph Terminology (9.2)
1 CS104 : Discrete Structures Chapter V Graph Theory.
Based on slides by Y. Peng University of Maryland
Graphs.  Definition A simple graph G= (V, E) consists of vertices, V, a nonempty set of vertices, and E, a set of unordered pairs of distinct elements.
Week 11 - Monday.  What did we talk about last time?  Binomial theorem and Pascal's triangle  Conditional probability  Bayes’ theorem.
Graphs What are Graphs? General meaning in everyday math: A plot or chart of numerical data using a coordinate system. Technical meaning in discrete.
Data Structures & Algorithms Graphs
September1999 CMSC 203 / 0201 Fall 2002 Week #13 – 18/20/22 November 2002 Prof. Marie desJardins.
1 Graphs Theory UNIT IV. 2Contents  Basic terminology,  Multi graphs and weighted graphs  Paths and circuits  Shortest path in weighted graph  Hamiltonian.
Discrete Mathematical Structures: Theory and Applications
Graph Theory and Applications
Graphs 9.1 Graphs and Graph Models أ. زينب آل كاظم 1.
Discrete Structures CISC 2315 FALL 2010 Graphs & Trees.
1 Graphs Terminology By: Sandeep Tuli Astt. Prof. CSE.
Chapter 9: Graphs.
Introduction to Graph Theory By: Arun Kumar (Asst. Professor) (Asst. Professor)
(CSC 102) Lecture 30 Discrete Structures. Graphs.
Chap 7 Graph Def 1: Simple graph G=(V,E) V : nonempty set of vertices E : set of unordered pairs of distinct elements of V called edges Def 2: Multigraph.
1 GRAPH Learning Outcomes Students should be able to: Explain basic terminology of a graph Identify Euler and Hamiltonian cycle Represent graphs using.
رياضيات متقطعة لعلوم الحاسب MATH 226. Chapter 10.
1 Graphs Chapters 10.1 and 10.2 University of Maryland Chapters 10.1 and 10.2 Based on slides by Y. Peng University of Maryland.
Chapter Chapter Summary Graphs and Graph Models Graph Terminology and Special Types of Graphs Representing Graphs and Graph Isomorphism Connectivity.
An Introduction to Graph Theory
Euler and Hamilton Cycles; Planar Graphs; Coloring.
Applied Discrete Mathematics Week 14: Trees
Shortest Path Problems
Applied Discrete Mathematics Week 13: Graphs
Chapter 9 (Part 2): Graphs
Let us switch to a new topic:
Applied Discrete Mathematics Week 13: Graphs
Special Graphs By: Sandeep Tuli Astt. Prof. CSE.
Graphs Hubert Chan (Chapter 9) [O1 Abstract Concepts]
Chapters 8.1 and 8.2 Based on slides by Y. Peng University of Maryland
Representing Graphs and
Graph theory Definitions Trees, cycles, directed graphs.
Taibah University College of Computer Science & Engineering Course Title: Discrete Mathematics Code: CS 103 Chapter 10 Graphs Slides are adopted from “Discrete.
Graphs Chapters 10.1 and 10.2 Based on slides by Y. Peng University of Maryland.
Graphs.
Based on slides by Y. Peng University of Maryland
Chapters 8.1 and 8.2 Based on slides by Y. Peng University of Maryland
Let us switch to a new topic:
Applied Discrete Mathematics Week 13: Graphs
Based on slides by Y. Peng University of Maryland
Presentation transcript:

And before you really hate (mathematical) relations and begin to break your (social) relations, let’s switch to a new topic: Graphs Discrete Structures

Introduction to Graphs Definition: A simple graph G = (V, E) consists of V, a nonempty set of vertices, and E, a set of unordered pairs of distinct elements of V called edges. For each eE, e = {u, v} where u, v  V. An undirected graph (not simple) may contain loops. An edge e is a loop if e = {u, u} for some uV. Discrete Structures Discrete Structures 2

Introduction to Graphs Definition: A directed graph G = (V, E) consists of a set V of vertices and a set E of edges that are ordered pairs of elements in V. For each eE, e = (u, v) where u, v  V. An edge e is a loop if e = (u, u) for some uV. A simple graph is just like a directed graph, but with no specified direction of its edges. Discrete Structures

Graph Models Example I: How can we represent a network of (bi-directional) railways connecting a set of cities? We should use a simple graph with an edge {a, b} indicating a direct train connection between cities a and b. Makkah Riyadh Jeddah Abu Dhabi Madinah Sharjah Discrete Structures

Graph Models Example II: In a round-robin tournament, each team plays against each other team exactly once. How can we represent the results of the tournament (which team beats which other team)? We should use a directed graph with an edge (a, b) indicating that team a beats team b. Team C Team A Team B Team D Discrete Structures

Graph Terminology Definition: Two vertices u and v in an undirected graph G are called adjacent (or neighbors) in G if {u, v} is an edge in G. If e = {u, v}, the edge e is called incident with the vertices u and v. The edge e is also said to connect u and v. The vertices u and v are called endpoints of the edge {u, v}. Discrete Structures

Graph Terminology Definition: The degree of a vertex in an undirected graph is the number of edges incident with it, except that a loop at a vertex contributes twice to the degree of that vertex. In other words, you can determine the degree of a vertex in a displayed graph by counting the lines that touch it. The degree of the vertex v is denoted by deg(v). Discrete Structures

Graph Terminology A vertex of degree 0 is called isolated, since it is not adjacent to any vertex. Note: A vertex with a loop at it has at least degree 2 and, by definition, is not isolated, even if it is not adjacent to any other vertex. A vertex of degree 1 is called pendant. It is adjacent to exactly one other vertex. Discrete Structures

Graph Terminology Example: Which vertices in the following graph are isolated, which are pendant, and what is the maximum degree? What type of graph is it? a b c d f h g j e Solution: Vertex f is isolated, and vertices a, d and j are pendant. The maximum degree is deg(g) = 5. This graph is a pseudograph (undirected, loops). Discrete Structures

Graph Terminology Let us look at the same graph again and determine the number of its edges and the sum of the degrees of all its vertices: a b c d f h g j e Result: There are 9 edges, and the sum of all degrees is 18. This is easy to explain: Each new edge increases the sum of degrees by exactly two. Discrete Structures

Graph Terminology The Handshaking Theorem: Let G = (V, E) be an undirected graph with e edges. Then 2|E| = vV deg(v) Example: How many edges are there in a graph with 10 vertices, each of degree 6? Solution: The sum of the degrees of the vertices is 610 = 60. According to the Handshaking Theorem, it follows that 2|E| = 60, so there are 30 edges. Discrete Structures

2|E| = vV deg(v) = vV1 deg(v) + vV2 deg(v) Graph Terminology Theorem: An undirected graph has an even number of vertices of odd degree. Proof: Let V1 and V2 be the set of vertices of even and odd degrees, respectively (Thus V1  V2 = , and V1 V2 = V). Then by Handshaking theorem 2|E| = vV deg(v) = vV1 deg(v) + vV2 deg(v) Since both 2|E| and vV1 deg(v) are even, vV2 deg(v) must be even. Since deg(v) is odd for all vV2, |V2| must be even. QED Discrete Structures

Graph Terminology Definition: When (u, v) is an edge of the graph G with directed edges, u is said to be adjacent to v, and v is said to be adjacent from u. The vertex u is called the initial vertex of (u, v), and v is called the terminal vertex of (u, v). The initial vertex and terminal vertex of a loop are the same. Discrete Structures

Graph Terminology Definition: In a graph with directed edges, the in-degree of a vertex v, denoted by deg-(v), is the number of edges with v as their terminal vertex. The out-degree of v, denoted by deg+(v), is the number of edges with v as their initial vertex. Question: How does adding a loop to a vertex change the in-degree and out-degree of that vertex? Answer: It increases both the in-degree and the out-degree by one. Discrete Structures

Graph Terminology Example: What are the in-degrees and out-degrees of the vertices a, b, c, d in this graph: deg-(a) = 1 deg+(a) = 2 deg-(b) = 4 deg+(b) = 2 a b c d deg-(d) = 2 deg+(d) = 1 deg-(c) = 0 deg+(c) = 2 Discrete Structures

Graph Terminology Theorem: Let G = (V, E) be a graph with directed edges. Then: vV deg-(v) = vV deg+(v) = |E| This is easy to see, because every new edge increases both the sum of in-degrees and the sum of out-degrees by one. Discrete Structures

Special Graphs Definition: The complete graph on n vertices, denoted by Kn, is the simple graph that contains exactly one edge between each pair of distinct vertices. K1 K2 K3 K4 K5 Discrete Structures

Special Graphs Definition: The cycle Cn, n  3, consists of n vertices v1, v2, …, vn and edges {v1, v2}, {v2, v3}, …, {vn-1, vn}, {vn, v1}. C3 C4 C5 C6 Discrete Structures

Special Graphs Definition: We obtain the wheel Wn when we add an additional vertex to the cycle Cn, for n  3, and connect this new vertex to each of the n vertices in Cn by adding new edges. W3 W4 W5 W6 Discrete Structures

Special Graphs Definition: The n-cube, denoted by Qn, is the graph that has vertices representing the 2n bit strings of length n. Two vertices are adjacent if and only if the bit strings that they represent differ in exactly one bit position. 000 001 101 100 010 011 111 110 00 01 11 10 1 Q1 Q2 Q3 Discrete Structures

Special Graphs Definition: A simple graph is called bipartite if its vertex set V can be partitioned into two disjoint nonempty sets V1 and V2 such that every edge in the graph connects a vertex in V1 with a vertex in V2 (so that no edge in G connects either two vertices in V1 or two vertices in V2). You can also say vertices can be assigned two distinct colors so that every pair of adjacent vertices have different colors. For example, consider a graph that represents each person in a village by a vertex and each marriage by an edge. This graph is bipartite, because each edge connects a vertex in the subset of males with a vertex in the subset of females. Discrete Structures

Special Graphs Example I: Is C3 bipartite? No, because there is no way to partition the vertices into two sets so that there are no edges with both endpoints in the same set. v1 v2 v3 Example II: Is C6 bipartite? v5 v1 v2 v3 v4 v6 v1 v6 v2 v5 v3 v4 Yes, because we can display C6 like this: Discrete Structures

Special Graphs Definition: The complete bipartite graph Km,n is the graph that has its vertex set partitioned into two subsets of m and n vertices, respectively. Two vertices are connected if and only if they are in different subsets. K3,2 K3,4 Discrete Structures

Operations on Graphs Definition: A subgraph of a graph G = (V, E) is a graph H = (W, F) where WV and FE. Note: Of course, H is a valid graph, so when creating H if we remove a vertex incident edges has to be removed as well. Example: K5 subgraph of K5 Discrete Structures

Operations on Graphs Definition: The union of two simple graphs G1 = (V1, E1) and G2 = (V2, E2) is the simple graph with vertex set V1  V2 and edge set E1  E2. The union of G1 and G2 is denoted by G1  G2. G1 G2 G1  G2 = K5 Discrete Structures

Representing Graphs a b c d a b c d a, d b c a, b, c d b, c, d a Adjacent Vertices Vertex a b c a, b, c d Adjacent Vertices Initial Vertex Discrete Structures

Representing Graphs Definition: Let G = (V, E) be a simple graph with |V| = n. Suppose that the vertices of G are listed in arbitrary order as v1, v2, …, vn. The adjacency matrix A (or AG) of G, with respect to this listing of the vertices, is the nn zero-one matrix with 1 as its (i, j)th entry when vi and vj are adjacent, and 0 otherwise. In other words, for an adjacency matrix A = [aij], aij = 1 if {vi, vj} is an edge of G, aij = 0 otherwise. Discrete Structures

Representing Graphs Example: What is the adjacency matrix AG for the following graph G based on the order of vertices a, b, c, d ? a b c d Solution: Note: Adjacency matrices of undirected graphs are always symmetric. Discrete Structures

Representing Graphs Definition: Let G = (V, E) be an undirected graph with |V| = n. Suppose that the vertices and edges of G are listed in arbitrary order as v1, v2, …, vn and e1, e2, …, em, respectively. The incidence matrix of G with respect to this listing of the vertices and edges is the nm zero-one matrix with 1 as its (i, j)th entry when edge ej is incident with vi, and 0 otherwise. In other words, for an incidence matrix M = [mij], mij = 1 if edge ej is incident with vi mij = 0 otherwise. Discrete Structures

Representing Graphs Example: What is the incidence matrix M for the following graph G based on the order of vertices a, b, c, d and edges 1, 2, 3, 4, 5, 6? a b c d 1 2 4 5 3 6 Solution: Note: Incidence matrices of directed graphs contain two 1s per column for edges connecting two vertices and one 1 per column for loops. Discrete Structures

Isomorphism of Graphs Definition: The simple graphs G1 = (V1, E1) and G2 = (V2, E2) are isomorphic if there is a bijection (an one-to-one and onto function) f from V1 to V2 with the property that a and b are adjacent in G1 if and only if f(a) and f(b) are adjacent in G2, for all a and b in V1. Such a function f is called an isomorphism. In other words, G1 and G2 are isomorphic if their vertices can be ordered in such a way that the adjacency matrices MG1 and MG2 are identical. Discrete Structures

Isomorphism of Graphs From a visual standpoint, G1 and G2 are isomorphic if they can be arranged in such a way that their displays are identical (of course without changing adjacency). Unfortunately, for two simple graphs, each with n vertices, there are n! possible isomorphisms that we have to check in order to show that these graphs are isomorphic. However, showing that two graphs are not isomorphic can be easy. Discrete Structures

Isomorphism of Graphs For this purpose we can check invariants, that is, properties that two isomorphic simple graphs must both have. For example, they must have the same number of vertices, the same number of edges, and the same degrees of vertices. Note that two graphs that differ in any of these invariants are not isomorphic, but two graphs that match in all of them are not necessarily isomorphic. Discrete Structures

Isomorphism of Graphs Example I: Are the following two graphs isomorphic? d a b c e d a b c e Solution: Yes, they are isomorphic, because they can be arranged to look identical. You can see this if in the right graph you move vertex b to the left of the edge {a, c}. Then the isomorphism f from the left to the right graph is: f(a) = e, f(b) = a, f(c) = b, f(d) = c, f(e) = d. Discrete Structures

Isomorphism of Graphs Example II: How about these two graphs? d a b c Solution: No, they are not isomorphic, because they differ in the degrees of their vertices. Vertex d in right graph is of degree one, but there is no such vertex in the left graph. Discrete Structures

Connectivity Definition: A path of length n from u to v, where n is a positive integer, in an undirected graph is a sequence of edges e1, e2, …, en of the graph such that e1 = {x0, x1}, e2 = {x1, x2}, …, en = {xn-1, xn}, where x0 = u and xn = v. When the graph is simple, we denote this path by its vertex sequence x0, x1, …, xn, since it uniquely determines the path. The path is a circuit (or cycle) if it begins and ends at the same vertex, that is, if u = v. Discrete Structures

Check your understanding Consider the adjacency matrix of a directed graph: Find a path from 1 to 4. Is there a path from 4 to 1? Discrete Structures

Connectivity Definition (continued): The path or circuit is said to pass through or traverse x1, x2, …, xn-1. A path or circuit is simple if it does not contain the same edge more than once. Discrete Structures

Connectivity Let us now look at something new: Definition: An undirected graph is called connected if there is a path between every pair of distinct vertices in the graph. For example, any two computers in a network can communicate if and only if the graph of this network is connected. Note: A graph consisting of only one vertex is always connected, because it does not contain any pair of distinct vertices. Discrete Structures

English Connectivity Puzzle Can define a puzzling graph G as follows: V = {3-letter English words} E : two words are connected if we can get one word from the other by changing a single letter. One small sub-graph of G is: Q: Is “fun” connected to “car” ? A: Yes, e.g.: funfanfarcar rob job jab Discrete Structures

Connectivity Example: Are the following graphs connected? d a b c e d Yes. No. d a b c e f d a b c e No. Yes. Discrete Structures

Connectivity Definition: A graph that is not connected is the union of two or more connected subgraphs, each pair of which has no vertex in common. These disjoint connected subgraphs are called the connected components of the graph. Discrete Structures

Connectivity Example: What are the connected components in the following graph? a b c d f h g j e Solution: The connected components are the graphs with vertices {a, b, c, d}, {e}, {f}, {f, g, h, j}. Discrete Structures

Connectivity Definition: A directed graph is strongly connected if there is a path from a to b and from b to a whenever a and b are vertices in the graph. Definition: A directed graph is weakly connected if the underlying undirected graph is connected. Discrete Structures

Connectivity Example: Are the following directed graphs strongly or weakly connected? a b c d Weakly connected, because, for example, there is no path from b to d. a b c d Strongly connected, because there are paths between all possible pairs of vertices. Discrete Structures

Shortest Path Problems We can assign weights to the edges of graphs, for example to represent the distance between cities: Riyadh Dammam Makkah Madinah 900 800 400 430 Discrete Structures

Shortest Path Problems Such weighted graphs can also be used to model computer networks with response times or costs as weights. One of the most interesting questions that we can investigate with such graphs is: What is the shortest path between two vertices in the graph, that is, the path with the minimal sum of weights along the way? This corresponds to the shortest distance between two cities or to the fastest connection in a computer network. Discrete Structures

Dijkstra’s Algorithm Dijkstra’s algorithm is an efficient iterative algorithm (O(n2)) that finds the shortest path between two vertices a and z in a weighted graph. It proceeds by finding the length of the shortest path from a to successive vertices and adding these vertices to a distinguished set of vertices S. The algorithm terminates once it reaches the vertex z. Note: A naïve algorithm of listing all paths and selecting the shortest among them would be exponential and hence would make the problem (look) intractable. Discrete Structures

Euler and Hamilton Paths A pictorial way to motivate the graph theoretic concepts of Eulerian and Hamiltonian paths and circuits is with two puzzles: The pencil drawing problem The taxicab problem Discrete Structures

Pencil Drawing Problem Euler Paths Which of the following pictures can be drawn on paper without ever lifting the pencil and without retracing over any segment? Discrete Structures

Pencil Drawing Problem Euler Paths Answer: the left but not the right. 1 2 3 start finish 4 6 5 Discrete Structures

Euler Paths and Circuits Definition Definition: An Euler path in a graph G is a simple path containing every edge in G. An Euler circuit (or Euler cycle) is a cycle which is an Euler path. Note: The definition applies both to undirected as well as directed graphs of all types. Discrete Structures

Taxicab Problem: Hamiltonian Paths Can a taxicab driver milk his hapless customer by visiting every intersection exactly once, when driving from point to point B ? A B Discrete Structures

Taxicab Problem: Hamiltonian Paths Graph Theoretically: Is there a Hamiltonian path from A to B in the following graph? (NO in this case) A B Discrete Structures

Hamilton Paths and Circuits Definition: A Hamilton path in a graph G is a path which visits every vertex in G exactly once. A Hamilton circuit (or Hamilton cycle) is a cycle which visits every vertex exactly once, except for the first vertex, which is also visited at the end of the cycle. Note: Again, the definition applies both to undirected as well as directed graphs of all types. Discrete Structures

Finding Euler/Hamiltonian Paths Finding Euler paths can be done in O(n) time (see theorem below) Finding Hamiltonian paths is extremely difficult, no algorithm with polynomial worst case complexity is known for it (and bad as it is for many other very practical problems)! Theorem: An undirected graph G has an Euler circuit iff it is connected and every vertex has an even degree. Note: for directed graphs the condition is that G be weakly connected and that every vertex has same in-degree as out- degree. Discrete Structures

Finding Euler Circuits Q: Why does the following graph have no Euler circuit? A: It contains a vertex of odd degree. Discrete Structures

Generalizing to Euler Paths Q: Does the following have an Euler circuit? Discrete Structures

Generalizing to Euler Paths A: No, vertices of odd degree: Q: But why does it have an Euler path? Discrete Structures

Generalizing to Euler Paths A: Because exactly 2 vertices of odd degree. So can add a phantom edge between odd degree vertices: Discrete Structures

Generalizing to Euler Paths All degrees now even degree so find Euler cycle: Discrete Structures

Generalizing to Euler Paths Now remove phantom edge obtaining: 1 2 3 7 4 6 5 Discrete Structures

Generalizing to Euler Paths Generalize: 1 2 3 4 6 5 Discrete Structures

Generalizing to Euler Paths Theorem: An undirected connected graph has an Euler path iff there are exactly two vertices of odd degree. Discrete Structures

The Traveling Salesman Problem The traveling salesman problem is one of the classical problems in computer science. A traveling salesman wants to visit a number of cities and then return to his starting point. Of course he wants to save time and energy, so he wants to determine the shortest path for his trip. We can represent the cities and the distances between them by a weighted, complete, undirected graph. The problem then is to find the circuit of minimum total weight that visits each vertex exactly once. Discrete Structures

The Traveling Salesman Problem Example: What path would the traveling salesman take to visit the following cities? C A D B 600 700 200 650 550 Solution: The shortest path is B, D, C, A, B (2,000 km). Discrete Structures

The Traveling Salesman Problem Question: Given n vertices, how many different cycles Cn can we form by connecting these vertices with edges? Solution: We first choose a starting point. Then we have (n – 1) choices for the second vertex in the cycle, (n – 2) for the third one, and so on, so there are (n – 1)! choices for the whole cycle. However, this number includes identical cycles that were constructed in opposite directions. Therefore, the actual number of different cycles Cn is (n – 1)!/2. Discrete Structures

The Traveling Salesman Problem Unfortunately, no algorithm solving the traveling salesman problem with polynomial worst-case time complexity has been devised yet ( same class of problems as finding hamiltonian cycles). This means that for a large number of vertices, solving the traveling salesman problem is impractical (exponential growth). In these cases, we can use efficient approximation algorithms that determine a path whose length may be slightly larger than the traveling salesman’s path. Discrete Structures

Planar Graphs Definition: A planar graph is a graph that can be drawn in the plane without edges having to cross. Understanding planar graphs is important: Any graph representation of maps/topographical information is planar. graph algorithms are often specialized to planar graphs (e.g. traveling salesperson) (Electronic) circuits usually represented by planar graphs Discrete Structures

Planar Graphs Common Misunderstanding Just because a graph is drawn with edges crossing doesn’t mean it’s not planar. Q: Why can’t we conclude that the following is non-planar? Discrete Structures

Planar Graphs Common Misunderstanding A: Because it is isomorphic to a graph which is planar: Discrete Structures

Planar Graphs Common Misunderstanding A: Because it is isomorphic to a graph which is planar: Discrete Structures

Planar Graphs Common Misunderstanding A: Because it is isomorphic to a graph which is planar: Discrete Structures

Planar Graphs Common Misunderstanding A: Because it is isomorphic to a graph which is planar: Discrete Structures

Planar Graphs Common Misunderstanding A: Because it is isomorphic to a graph which is planar: Discrete Structures

Planar Graphs Common Misunderstanding A: Because it is isomorphic to a graph which is planar: Discrete Structures

Planar Graphs Common Misunderstanding A: Because it is isomorphic to a graph which is planar: Discrete Structures

Planar Graphs Common Misunderstanding A: Because it is isomorphic to a graph which is planar: Discrete Structures

Planar Graphs Common Misunderstanding A: Because it is isomorphic to a graph which is planar: Discrete Structures

Proving Planarity To prove that a graph is planar amounts to redrawing the edges in a way that no edges will cross. May need to move vertices around and the edges may have to be drawn in a very indirect fashion. Show that the 3-cube is planar: Discrete Structures

Disproving Planarity The idea is to try to find some invariant quantities possessed by the graph. A typical invariant of a planar graph is the number of regions that the graph defines in the plane. A region is a part of the plane completely disconnected off from other parts of the plane by the edges of the graph. Example: the car graph has 4 regions: 4 3 1 2 Discrete Structures

Regions Q: How many regions does the 3-cube have? Discrete Structures

Regions A: 6 regions 3 6 4 1 2 5 Discrete Structures

Regions Theorem: The number of regions r defined by a connected planar graph is invariant of how it is drawn in the plane and satisfies the formula involving edges and vertices: r = |E| - |V| + 2 Example: Verify formula for car and 3-cube: 4=6-4+2 3 3 6=12-8+2 4 1 2 5 1 2 Discrete Structures

And guess what you really deserve now. A b r e a k . . . Discrete Structures