Graph Theory Introducton.

Slides:



Advertisements
Similar presentations
Chapter 8 Topics in Graph Theory
Advertisements

Graph-02.
Section 14.1 Intro to Graph Theory. Beginnings of Graph Theory Euler’s Konigsberg Bridge Problem (18 th c.)  Can one walk through town and cross all.
Section 2.1 Euler Cycles Vocabulary CYCLE – a sequence of consecutively linked edges (x 1,x2),(x2,x3),…,(x n-1,x n ) whose starting vertex is the ending.
Representing Graphs Wade Trappe. Lecture Overview Introduction Some Terminology –Paths Adjacency Matrix.
Euler Graphs Section Euler Graphs 2 Circuit? Path? Non- traversable? A D E C B A D E C B A D E C B End at A End at B Start at A Miss an edge.
4/17/2017 Section 8.5 Euler & Hamilton Paths ch8.5.
Graphs. Graph A “graph” is a collection of “nodes” that are connected to each other Graph Theory: This novel way of solving problems was invented by a.
The Mathematics of Networks Chapter 7. Trees A tree is a graph that –Is connected –Has no circuits Tree.
MTH118 Sanchita Mal-Sarkar. Routing Problems The fundamental questions: Is there any proper route for the particular problem? If there are many possible.
Discrete Math Round, Round, Get Around… I Get Around Mathematics of Getting Around.
Can you find a way to cross every bridge only once?
5.1  Routing Problems: planning and design of delivery routes.  Euler Circuit Problems: Type of routing problem also known as transversability problem.
Euler Paths & Euler Circuits
7.1 and 7.2: Spanning Trees. A network is a graph that is connected –The network must be a sub-graph of the original graph (its edges must come from the.
CSNB143 – Discrete Structure Topic 9 – Graph. Learning Outcomes Student should be able to identify graphs and its components. Students should know how.
5.4 Graph Models (part I – simple graphs). Graph is the tool for describing real-life situation. The process of using mathematical concept to solve real-life.
Examples Euler Circuit Problems Unicursal Drawings Graph Theory
Basic Notions on Graphs. The House-and-Utilities Problem.
Graph Theory Introducton.
Graphs, Paths & Circuits
Aim: What is an Euler Path and Circuit?
© 2010 Pearson Prentice Hall. All rights reserved. CHAPTER 15 Graph Theory.
1.5 Graph Theory. Graph Theory The Branch of mathematics in which graphs and networks are used to solve problems.
Graph Theory. A branch of math in which graphs are used to solve a problem. It is unlike a Cartesian graph that we used throughout our younger years of.
Lecture 10: Graph-Path-Circuit
Vertex-Edge Graphs Euler Paths Euler Circuits. The Seven Bridges of Konigsberg.
AND.
Graph theory and networks. Basic definitions  A graph consists of points called vertices (or nodes) and lines called edges (or arcs). Each edge joins.
MAT 2720 Discrete Mathematics Section 8.2 Paths and Cycles
SECTION 5.1: Euler Circuit Problems
© 2010 Pearson Prentice Hall. All rights reserved. CHAPTER 15 Graph Theory.
Chapter 6: Graphs 6.1 Euler Circuits
Aim: Graph Theory – Paths & Circuits Course: Math Literacy Do Now: Aim: What are Circuits and Paths? Can you draw this figure without retracing any of.
Excursions in Modern Mathematics, 7e: Copyright © 2010 Pearson Education, Inc. 5 The Mathematics of Getting Around 5.1Euler Circuit Problems 5.2What.
Walks, Paths and Circuits. A graph is a connected graph if it is possible to travel from one vertex to any other vertex by moving along successive edges.
Review Euler Graph Theory: DEFINITION: A NETWORK IS A FIGURE MADE UP OF POINTS (VERTICES) CONNECTED BY NON-INTERSECTING CURVES (ARCS). DEFINITION: A VERTEX.
Chapter 11 - Graph CSNB 143 Discrete Mathematical Structures.
1) Find and label the degree of each vertex in the graph.
Graph Theory Euler Paths and Euler Circuits. Euler Paths & Circuits Euler Paths and Euler Circuits (Euler is pronounced the same as Oiler) An Euler path.
Copyright 2013, 2010, 2007, Pearson, Education, Inc. Section 14.1 Graphs, Paths, and Circuits.
Hamilton Paths and Circuits 1 Click to Start 2 3 Start End.
Classwork Quiz Worksheet Homework (day 54) Worksheet (1-7) Walks, Paths and Circuits SOL: DM.1.
Copyright © 2009 Pearson Education, Inc. Chapter 14 Section 1 – Slide Graph Theory Graphs, Paths & Circuits.
CSNB 143 Discrete Mathematical Structures
Grade 11 AP Mathematics Graph Theory
Graph theory Definitions Trees, cycles, directed graphs.
AND.
Konigsberg’s Seven Bridges
Discrete Structures – CNS2300
Can you draw this picture without lifting up your pen/pencil?
Euler Paths and Circuits
Euler Paths & Euler Circuits
Introduction to Graph Theory Euler and Hamilton Paths and Circuits
Walks, Paths, and Circuits
Konigsberg- in days past.
Warm Up – Wednesday.
Graph Theory What is a graph?.
Representing Graphs Wade Trappe.
Graphs, Paths & Circuits
5 The Mathematics of Getting Around
Euler and Hamilton Paths
Graphs G = (V, E) V are the vertices; E are the edges.
Section 14.1 Graphs, Paths, and Circuits
Euler Paths and Euler Circuits
Warm Up – Tuesday Find the critical times for each vertex.
CHAPTER 15 Graph Theory.
Graphs, Paths, and Circuits
Warm Up – 3/19 - Wednesday Give the vertex set. Give the edge set.
Warm Up – 3/17 - Monday A) List the set of vertices.
Presentation transcript:

Graph Theory Introducton

Graph Theory Vertex: A point. An intersection of two lines (edges). T. Serino Vertex: A point. An intersection of two lines (edges). Edge: A line (or curve) connecting two vertices. Loop: An edge that connects a vertex to itself only.

Graph Theory T. Serino Ex) Represent the "Konigsberg Bridge“ problem using a vertex-edge graph. A B C D A B C D * Vertices represent locations. * Edges represent “connections” between those locations.

Graph Theory Ex) Represent this map using a vertex-edge graph. W K C U T. Serino Ex) Represent this map using a vertex-edge graph. Hint: On map problems, place vertices relative to their actual locations on the map. W K C U O N * Edges represent borders in a map problem.

Graph Theory Ex) Represent a floor plan using a vertex-edge graph. C F T. Serino Ex) Represent a floor plan using a vertex-edge graph. C F H J M P Outside O * Rooms are locations (vertices). * Doorways are connections between locations (edges).

The loop counts twice because it touches the vertex twice. Graph Theory T. Serino The degree of a vertex is the number of edges "entering" the vertex. Vertex A has Degree 2 1 2 The loop counts twice because it touches the vertex twice. Vertex C has Degree 3 2 3 Vertex D has Degree 4 2 3 1 1 4

Graph Theory Odd and Even vertices T. Serino Odd and Even vertices If the degree of a vertex is an odd number, then the vertex is considered an odd vertex. If the degree of the vertex is an even number, then the vertex is considered an even vertex.

Graph Theory 2 odd vertices T. Serino Ex) Identify the degree of each vertex and determine how many odd vertices are contained in the following graph. Degree 4 Degree 4 Degree 2 odd vertices F Degree 1 Degree 4 Degree 3

Graph Theory T. Serino A path is a sequence of adjacent vertices and the edges connecting them. Given the graph to the left, some examples of paths could be: ABC BCDD CDBCA

Graph Theory T. Serino A circuit is a path that begins and ends at the same vertex. Given the graph to the left, some examples of circuits could be: ABCA CDDBAC

Graph Theory On a connected graph, you can draw a path T. Serino On a connected graph, you can draw a path from one vertex to any other vertex. The following are all connected graphs.

Graph Theory If a graph is not connected, it is disconnected. T. Serino If a graph is not connected, it is disconnected. The following are all disconnected graphs. Could you draw a bridge (an edge) that could make each of these graphs connected?

Graph Theory T. Serino A bridge is an edge that if removed from a connected graph would create a disconnected graph.

athematical M D ecision aking