What is the next line of the proof? a). Let G be a graph with k vertices. b). Assume the theorem holds for all graphs with k+1 vertices. c). Let G be a.

Slides:



Advertisements
Similar presentations
Chapter 11 Trees Graphs III (Trees, MSTs) Reading: Epp Chp 11.5, 11.6.
Advertisements

Great Theoretical Ideas in Computer Science for Some.
Trees Chapter 11.
Testing planarity part 1 Thomas van Dijk. Preface Appendix of Planar Graph Drawing Quite hard to read So we’ll try to explain it, not just tell you about.
Bipartite Matching, Extremal Problems, Matrix Tree Theorem.
CompSci 102 Discrete Math for Computer Science April 19, 2012 Prof. Rodger Lecture adapted from Bruce Maggs/Lecture developed at Carnegie Mellon, primarily.
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.
Realizability of Graphs Maria Belk and Robert Connelly.
Graph Algorithms: Minimum Spanning Tree We are given a weighted, undirected graph G = (V, E), with weight function w:
What is the first line of the proof? a). Assume G has an Eulerian circuit. b). Assume every vertex has even degree. c). Let v be any vertex in G. d). Let.
Original Tree:
Can Dijkstra’s Algorithm be modified in an obvious way to give the longest path in a graph? a). Yes b). No c). I have absolutely no idea.
Definition Hamiltonian graph: A graph with a spanning cycle (also called a Hamiltonian cycle). Hamiltonian graph Hamiltonian cycle.
A general approximation technique for constrained forest problems Michael X. Goemans & David P. Williamson Presented by: Yonatan Elhanani & Yuval Cohen.
Is the following graph Hamiltonian- connected from vertex v? a). Yes b). No c). I have absolutely no idea v.
How many non-isomorphic tournaments with 10 vertices are there? a). 5 b). 10 c). 362,880 d). Over nine million.
Happy Pi Day!!!! Come celebrate – Winston Room, 12 Friday.
Is C 6 2-critical? a). Yes b). No c). I have absolutely no idea.
Coloring Algorithms and Networks. Coloring2 Graph coloring Vertex coloring: –Function f: V  C, such that for all {v,w}  E: f(v)  f(w) Chromatic number.
3/29/05Tucker, Sec Applied Combinatorics, 4th Ed. Alan Tucker Section 4.2 Minimal Spanning Trees Prepared by Amanda Dargie and Michele Fretta.
Greedy Algorithms Like dynamic programming algorithms, greedy algorithms are usually designed to solve optimization problems Unlike dynamic programming.
Drawing of G. Planar Embedding of G Proposition Proof. 1. Consider a drawing of K 5 or K 3,3 in the plane. Let C be a spanning cycle. 2. If the.
What is the next line of the proof? a). Assume the theorem holds for all graphs with k edges. b). Let G be a graph with k edges. c). Assume the theorem.
MATH 310, FALL 2003 (Combinatorial Problem Solving) Lecture 10, Monday, September 22.
What is the first line of the backwards direction of this proof? 1.Assume G is a block. 2.Assume every pair of vertices lie on a common cycle. 3.Assume.
Minimum Spanning Trees. Subgraph A graph G is a subgraph of graph H if –The vertices of G are a subset of the vertices of H, and –The edges of G are a.
CS 2813 Discrete Structures
9.8 Graph Coloring. Coloring Goal: Pick as few colors as possible so that two adjacent regions never have the same color. See handout.
Lecture 8 Tree.
5.2 Trees  A tree is a connected graph without any cycles.
V Spanning Trees Spanning Trees v Minimum Spanning Trees Minimum Spanning Trees v Kruskal’s Algorithm v Example Example v Planar Graphs Planar Graphs v.
ساختمانهای گسسته دانشگاه صنعتی شاهرود – فروردین 1392.
EMIS 8373: Integer Programming Combinatorial Relaxations and Duals Updated 8 February 2005.
Chap. 11 Graph Theory and Applications 1. Directed Graph 2.
 Quotient graph  Definition 13: Suppose G(V,E) is a graph and R is a equivalence relation on the set V. We construct the quotient graph G R in the follow.
Xuding Zhu Zhejiang Normal University Budapest Circular flow of signed graphs.
Great Theoretical Ideas in Computer Science for Some.
Prims Algorithm for finding a minimum spanning tree
5-color theorem 林典濤 : PPT, Lecture note 陳咨翰 : Presentation.
1 Assignment #3 is posted: Due Thursday Nov. 15 at the beginning of class. Make sure you are also working on your projects. Come see me if you are unsure.
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.
COMPSCI 102 Introduction to Discrete Mathematics.
What is the chromatic number of this graph?. We have found a four-coloring. How do we know the chromatic number is not less than four?
MCA 520: Graph Theory Instructor Neelima Gupta
Trees.
1 Linear Grammars Grammars with at most one variable at the right side of a production Examples:
Discrete Mathematics Graph: Planar Graph Yuan Luo
Characteristics of Planar Graphs
Proof technique (pigeonhole principle)
Minimum Spanning Tree Chapter 13.6.
Great Theoretical Ideas In Computer Science
What is the next line of the proof?
COMP 6/4030 ALGORITHMS Prim’s Theorem 10/26/2000.
Spanning Trees Discrete Mathematics.
CS200: Algorithm Analysis
Connected Components Minimum Spanning Tree
Chapter 7: Greedy Algorithms
Kruskal’s Algorithm for finding a minimum spanning tree
Chapter 23 Minimum Spanning Tree
Problem Solving 4.
Theorem 5.13: For vT‘, l’(v)= min{l(v), l(vk)+w(vk, v)}
Lecture 12 CSE 331 Sep 22, 2014.
Discrete Mathematics for Computer Science
Minimum Spanning Trees (MSTs)
GRAPH THEORY Properties of Planar Graphs Ch9-1.
Richard Anderson Lecture 5 Graph Theory
Planarity.
GRAPH THEORY Properties of Planar Graphs Ch9-1.
Presentation transcript:

What is the next line of the proof? a). Let G be a graph with k vertices. b). Assume the theorem holds for all graphs with k+1 vertices. c). Let G be a graph with k+1 vertices. d). Assume the theorem holds for all graphs with k-1 vertices. e). Let G be a graph with k-1 vertices.

What is the next line of the proof? a). Add a vertex to G to create G’. b). Delete a vertex from G to create G’. c). Add an edge to G to create G’. d). Delete an edge from G to create G’.

How many different spanning trees does the given graph have? a). 0 b). 1 c). 2 d). 3 e). 4 f). 5 g). 6 h). 7 i). 8

Is K 4 planar? a). Yes b). No c). I have absolutely no idea

Is K 2,3 planar? a). Yes b). No c). I have absolutely no idea

Is K 5 planar? a). Yes b). No c). I have absolutely no idea

Is K 3,3 planar? a). Yes b). No c). I have absolutely no idea