Warm Up – 4.2 - Wednesday.

Slides:



Advertisements
Similar presentations
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.
Advertisements

1 Section 9.4 Spanning Trees. 2 Let G be a simple graph. A spanning subtree of G is a subgraph of G containing every vertex of G –must be connected; contains.
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.
Is the following graph Hamiltonian- connected from vertex v? a). Yes b). No c). I have absolutely no idea v.
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.
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.
Can you find a way to cross every bridge only once?
Chapter 15 Graph Theory © 2008 Pearson Addison-Wesley.
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.
Module 5 – Networks and Decision Mathematics Chapter 23 – Undirected Graphs.
Graph Theory Emily Belyea Paton Vinal Paul Friedman Emily Belyea Paton Vinal Paul Friedman.
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.
Vertex-Edge Graphs Euler Paths Euler Circuits. The Seven Bridges of Konigsberg.
AND.
© 2010 Pearson Prentice Hall. All rights reserved. CHAPTER 15 Graph Theory.
Chapter 6: Graphs 6.1 Euler Circuits
Graph Theory Trees. WHAT YOU WILL LEARN Trees, spanning trees, and minimum-cost spanning trees.
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.
Introduction to Graph Theory
Chapter 11 - Graph CSNB 143 Discrete Mathematical Structures.
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.
Tree - in “math speak” An ________ graph is a set of vertices/nodes and a set of edges, each edge connects two vertices. Any undirected graph in which.
Spanning Trees Dijkstra (Unit 10) SOL: DM.2 Classwork worksheet Homework (day 70) Worksheet Quiz next block.
CSC 252 Pallavi Moorthy Homework 5. 1.) Vertices, edges From cd../../handout/demo/graph_alg/gw_shortest_path.
MAT 110 Workshop Created by Michael Brown, Haden McDonald & Myra Bentley for use by the Center for Academic Support.
An Introduction to Graph Theory
CSNB 143 Discrete Mathematical Structures
Graphs: Definitions and Basic Properties
Minimum Spanning Tree Chapter 13.6.
AND.
Introduction to Graph Theory
Spanning Trees Discrete Mathematics.
Discrete Math: Hamilton Circuits
Can you draw this picture without lifting up your pen/pencil?
This unit is all about Puzzles Games Strategy.
Introduction to Graph Theory Euler and Hamilton Paths and Circuits
Lecture 15: Graph Theory II
Section 14.4 Trees.
4-4 Graph Theory Trees.
Kruskal’s Algorithm for finding a minimum spanning tree
Connectivity Section 10.4.
Trees L Al-zaid Math1101.
Konigsberg- in days past.
Graphs Examples on some basic graph concepts and definitions All graphics are taken from the LEDA demos: basic_graph_algorithms, gw_shortest_paths, graphwin.
Trees 11.1 Introduction to Trees Dr. Halimah Alshehri.
5 The Mathematics of Getting Around
Trees 11.1 Introduction to Trees Dr. Halimah Alshehri.
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 – Tuesday Find the critical times for each vertex.
Section 13.4 Trees.
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.2 - Wednesday

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.

Trees #1

Subtrees A subtree is a tree within a network. Consider the network above. Do you see any trees within the graph (meaning if I ignore certain edges)?

Spanning Trees A spanning tree is a subtree that uses all the vertices.

Spanning Trees Thus we have three different spanning trees! If I remove one of the three edges in the triangular path, I get a tree because I have removed the circuit. Thus we have three different spanning trees!

Redundancy The redundancy is a number that helps us when counting spanning trees in a graph. The redundancy is the number of Edges (M) minus one less than the number of vertices (N – 1). 𝑹=𝑴− 𝑵−𝟏 We define redundancy this way so a tree has a redundancy of 0!

Redundancy The redundancy tells you the number of edges I need to remove in order to find a spanning tree. I cannot remove Bridges! (Edges that would disconnect the graph)

Example #1 Calculate the Redundancy and find a spanning tree in the graph below.

Example #1 There are 12 vertices and 14 edges. Thus my redundancy is: 14 – 12 – 1 =3 This means I need to remove 3 edges to get a spanning tree.

Example #1 If I remove edges BE, HI, and IJ, a spanning tree is created. Notice we still have a network and there are no circuits.