Warm Up – Tuesday Find the critical times for each vertex.

Slides:



Advertisements
Similar presentations
CSE 211 Discrete Mathematics
Advertisements

 Theorem 5.9: Let G be a simple graph with n vertices, where n>2. G has a Hamilton circuit if for any two vertices u and v of G that are not adjacent,
Chapter 8 Topics in Graph Theory
Every edge is in a red ellipse (the bags). The bags are connected in a tree. The bags an original vertex is part of are connected.
Walks, Paths and Circuits Walks, Paths and Circuits Sanjay Jain, Lecturer, School of Computing.
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.
1 Representing Graphs. 2 Adjacency Matrix Suppose we have a graph G with n nodes. The adjacency matrix is the n x n matrix A=[a ij ] with: a ij = 1 if.
4/17/2017 Section 8.5 Euler & Hamilton Paths ch8.5.
The Mathematics of Networks Chapter 7. Trees A tree is a graph that –Is connected –Has no circuits Tree.
Chapter 4 Graphs.
MATH 310, FALL 2003 (Combinatorial Problem Solving) Lecture 10, Monday, September 22.
Discrete Mathematics Lecture 9 Alexander Bukharovich New York University.
Chapter 15 Graph Theory © 2008 Pearson Addison-Wesley.
Chapter 15 Graph Theory © 2008 Pearson Addison-Wesley. All rights reserved.
5.1  Routing Problems: planning and design of delivery routes.  Euler Circuit Problems: Type of routing problem also known as transversability problem.
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.
Euler and Hamilton Paths. Euler Paths and Circuits The Seven bridges of Königsberg a b c d A B C D.
Aim: Graph Theory - Trees Course: Math Literacy Do Now: Aim: What’s a tree?
Lecture 14: Graph Theory I Discrete Mathematical Structures: Theory and Applications.
Graph Theory Introducton.
Chapter 14 Section 4 - Slide 1 Copyright © 2009 Pearson Education, Inc. AND.
© 2010 Pearson Prentice Hall. All rights reserved. CHAPTER 15 Graph Theory.
Graph Theory Introducton.
Spring 2015 Mathematics in Management Science Network Problems Networks & Trees Minimum Networks Spanning Trees Minimum Spanning Trees.
CIRCUITS, PATHS, AND SCHEDULES Euler and Königsberg.
Shortest Path Based Sufficiency Condition for Hamiltonian Graphs
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
© 2010 Pearson Prentice Hall. All rights reserved. CHAPTER 15 Graph Theory.
Chapter 6: Graphs 6.1 Euler Circuits
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.
1) Find and label the degree of each vertex in the graph.
Tree Diagrams A tree is a connected graph in which every edge is a bridge. There can NEVER be a circuit in a tree diagram!
Graphs Definition: a graph is an abstract representation of a set of objects where some pairs of the objects are connected by links. The interconnected.
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.
Chapter 14 Section 3 - Slide 1 Copyright © 2009 Pearson Education, Inc. AND.
Grade 11 AP Mathematics Graph Theory Definition: A graph, G, is a set of vertices v(G) = {v 1, v 2, v 3, …, v n } and edges e(G) = {v i v j where 1 ≤ i,
Trees.
MAT 110 Workshop Created by Michael Brown, Haden McDonald & Myra Bentley for use by the Center for Academic Support.
Outline 1 Properties of Planar Graphs 5/4/2018.
AND.
Discrete Structures – CNS2300
Introduction to Graph Theory
Spanning Trees Discrete Mathematics.
Discrete Math: Hamilton Circuits
Graph Algorithm.
Can you draw this picture without lifting up your pen/pencil?
Introduction to Graph Theory Euler and Hamilton Paths and Circuits
Quiz Review.
Lecture 15: Graph Theory II
4-4 Graph Theory Trees.
Kruskal’s Algorithm for finding a minimum spanning tree
Connectivity Section 10.4.
Walks, Paths, and Circuits
Warm Up – Wednesday.
Theorem 5.13: For vT‘, l’(v)= min{l(v), l(vk)+w(vk, v)}
5 The Mathematics of Getting Around
Discrete Mathematics Lecture 13_14: Graph Theory and Tree
Chapter 15 Graph Theory © 2008 Pearson Addison-Wesley.
Euler and Hamilton Paths
Applied Combinatorics, 4th Ed. Alan Tucker
Warm Up – Monday Calculate the Redundancy of the above network.
Warm Up – 3/19 - Wednesday Give the vertex set. Give the edge set.
Warm Up – 3/14 - Friday 100 seats are to be apportioned.
Warm Up – 3/17 - Monday A) List the set of vertices.
7 The Mathematics of Networks
Presentation transcript:

Warm Up – 4.1 - Tuesday Find the critical times for each vertex. Give a priority list using the decreasing time algorithm. Then create a timeline using two processors. Give a priority list using the critical time algorithm. Then create a timeline using two processors.

Not a network The graph to the right is NOT a network. Why Not? What can we do to make it a network?

This is a network! This is a network because there is a path from every vertex to every other vertex.

Degrees of separation Since a network is a connected graph, there is a path from every vertex to every other vertex. (Note it is not a complete graph, there is not an edge between each pair of vertices) The length of the shortest path joining 2 vertices in a network is called the degree of separation. (count the number of edges)

Degrees of Separation How many degrees of Separation are between A and C? C and I?

Network Worksheet #1

Trees A tree is a network without any circuits. Note: Our definition of circuit here is different than an Euler Circuit or a Hamilton Circuit. The graph to the left has a general circuit starting at C and following C, B, E, D, C. A circuit simply starts and ends at the same vertex.

Not a tree! Because this graph has a circuit, this network is not a tree!

The following are trees! They have no circuits within the graph.

Key Properties of Trees The single path property: In a tree, there is only one path connecting two vertices. Notice if we have two paths then we also have a circuit and thus a non-tree.

Key Properties of Trees All Bridges Property: In a tree, every edge is a bridge (Remember that a bridge is an edge that if removed, makes the graph disconnected). The N-1 edges property: A tree with N vertices has N-1 Edges.

Key Properties of Trees If a network satisfies one of those three properties then it satisfies all three, and is a tree! WOOT! The single path property: In a tree, there is only one path connecting two vertices. All Bridges Property: In a tree, every edge is a bridge (Remember that a bridge is an edge that if removed, makes the graph disconnected). The N-1 edges property: A tree with N vertices has N-1 Edges.