Section 2: Multiple choice

Slides:



Advertisements
Similar presentations
Graphs and Finding your way in the wilderness
Advertisements

Graph Theory Arnold Mesa. Basic Concepts n A graph G = (V,E) is defined by a set of vertices and edges v3 v1 v2Vertex (v1) Edge (e1) A Graph with 3 vertices.
2012: J Paul GibsonT&MSP: Mathematical FoundationsMAT7003/L2-GraphsAndTrees.1 MAT 7003 : Mathematical Foundations (for Software Engineering) J Paul Gibson,
Midwestern State University Department of Computer Science Dr. Ranette Halverson CMPS 2433 – CHAPTER 4 GRAPHS 1.
IKI 10100: Data Structures & Algorithms Ruli Manurung (acknowledgments to Denny & Ade Azurat) 1 Fasilkom UI Ruli Manurung (Fasilkom UI)IKI10100: Lecture10.
Breadth-First Search Seminar – Networking Algorithms CS and EE Dept. Lulea University of Technology 27 Jan Mohammad Reza Akhavan.
 Graph Graph  Types of Graphs Types of Graphs  Data Structures to Store Graphs Data Structures to Store Graphs  Graph Definitions Graph Definitions.
Decision Maths Graphs Wiltshire Graphs A graph is just a diagram made up of “dots” and “lines”. These are all graphs. The dots are called “nodes” or.
7.3 Kruskal’s Algorithm. Kruskal’s Algorithm was developed by JOSEPH KRUSKAL.
MATH 310, FALL 2003 (Combinatorial Problem Solving) Lecture 15, Friday, October 3.
Is the following graph Hamiltonian- connected from vertex v? a). Yes b). No c). I have absolutely no idea v.
CS/ENGRD 2110 Object-Oriented Programming and Data Structures Fall 2014 Doug James Lecture 17: Graphs.
Chapter 4 Graphs.
NetworkModel-1 Network Optimization Models. NetworkModel-2 Network Terminology A network consists of a set of nodes and arcs. The arcs may have some flow.
Lecture 12-2: Introduction to Computer Algorithms beyond Search & Sort.
IT 60101: Lecture #201 Foundation of Computing Systems Lecture 20 Classic Optimization Problems.
Chapter 2 Graph Algorithms.
Graph Theory Topics to be covered:
Networks.
Can you connect the dots as shown without taking your pen off the page or drawing the same line twice.
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.
Minimum spanning trees Aims: To know the terms: tree, spanning tree, minimum spanning tree. To understand that a minimum spanning tree connects a network.
CS223 Advanced Data Structures and Algorithms 1 Review for Final Neil Tang 04/27/2010.
Notes Over 2.1 Graphing a Linear Equation Graph the equation.
Graphs A ‘Graph’ is a diagram that shows how things are connected together. It makes no attempt to draw actual paths or routes and scale is generally inconsequential.
D1 stuff The tail wags the dog. M1A1 A1 A1 We mark your best effort.
Mathematics in Management Science
Graph theory and networks. Basic definitions  A graph consists of points called vertices (or nodes) and lines called edges (or arcs). Each edge joins.
Euler Paths and Circuits. The original problem A resident of Konigsberg wrote to Leonard Euler saying that a popular pastime for couples was to try.
Graph Theory. undirected graph node: a, b, c, d, e, f edge: (a, b), (a, c), (b, c), (b, e), (c, d), (c, f), (d, e), (d, f), (e, f) subgraph.
Decision Maths 1 Shortest path algorithm Dijkstra’s Algorithm A V Ali :
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.
I can describe the differences between Hamilton and Euler circuits and find efficient Hamilton circuits in graphs. Hamilton Circuits I can compare and.
1.Which of the following is NOT an algorithm? a.A set of instructions used to build a wardrobe b.A flow chart used to solve a quadratic equation c.A note.
Warm Up: Graph the following inequality. Test Point: (0,0) Section 9.4 – Systems of Inequalities Graphing Calculator Required (3/2)x+2.
Unit 2 Hamiltonian Circuits. Hamiltonian Circuit: A tour that starts at a vertex of a graph and visits each vertex once and only once, returning to where.
DECISION 1. How do you do a Bubble Sort? Bubble Sort:  You compare adjacent items in a list;  If they are in order, leave them.  If they are not in.
Spanning Trees Dijkstra (Unit 10) SOL: DM.2 Classwork worksheet Homework (day 70) Worksheet Quiz next block.
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,
AS Decision Maths Tips for each Topic. Kruskal and Prim What examiner’s are looking for A table of values in the order that they are added and the total.
AS Maths Decision Paper January 2011 Model Answers.
Programming Abstractions Cynthia Lee CS106B. Upcoming Topics Graphs! 1.Basics  What are they? How do we represent them? 2.Theorems  What are some things.
Weighted Graphs and traveling Salesperson problem
Minimum Spanning Tree Chapter 13.6.
EECS 203 Lecture 20 More Graphs.
Planar Graphs & Euler’s Formula
Topological Sort (topological order)
The tail wags the dog. M1A1 A1 A1 We mark your best effort
Chapter 2: Business Efficiency Lesson Plan
Spanning Trees Discrete Mathematics.
Graph Algorithm.
Graph Theory.
Graphs Chapter 13.
Chapter 2: Business Efficiency Business Efficiency
Warm Up – Friday.
Section 2: Multiple choice
Minimum spanning trees
6.6 Analyzing Graphs of Quadratic Functions
Decision Maths Graphs.
Route Inspection Which of these can be drawn without taking your pencil off the paper and without going over the same line twice? If we introduce a vertex.
Minimum spanning trees
of Linear Inequalities
CS 584 Project Write up Poster session for final Due on day of final
Minimum spanning trees
Warm Up – Tuesday Find the critical times for each vertex.
Warm Up – Monday Calculate the Redundancy of the above network.
Prim’s algorithm for minimum spanning trees
Review for Final Neil Tang 05/01/2008
For Friday Read chapter 9, sections 2-3 No homework
Presentation transcript:

Section 2: Multiple choice Which of the following is NOT an algorithm? A set of instructions used to build a wardrobe A flow chart used to solve a quadratic equation A note to the milkman asking for 2 pints of milk 2. When would you use a matching algorithm? To allocate jobs to five people To sort a group into alphabetical order To find the cheapest way of getting from Rotherham to Edinburgh by bus 3. When would you use Djikstra’s algorithm 4. To find the minimum profit on a graph: Look for the last point in the region parallel to a profit line Look for the first point in the region parallel to a profit line Look for the first point in the region perpendicular to a profit line How would you begin to solve a route inspection problem? By identifying the odd nodes and finding shortest pairs By finding a Hamiltonian cycle. By following a labelling procedure

Section 3: Definitions The last letter of each answer is the first letter of the next answer. Graphs that show the same information but are drawn differently are known as… A graph in which every vertex is directly connect by an edge to each of the other vertices is known as a ….. graph. In an activity network the top box represents … 4. The final node in an activity network is known as the ….. node 5. A method of finding the minimum spanning tree that cannot be applied to a matrix

Section 4: Quick calculations Find the length of the shortest path in picture 1 State the shortest path between S and T in question 1 Give an inequality for line 1 in picture 2. Which activities must be happening at 9.30 in picture 3? Give the results of the second pass for picture 2

Section 1: Picture round 2. Linear programming 1. Working values 3. The critical path/ critical events 4. The float 5. Bubble sort

Section 2: Multiple choice Which of the following is NOT an algorithm? A set of instructions used to build a wardrobe A flow chart used to solve a quadratic equation A note to the milkman asking for 2 pints of milk 2. When would you use a matching algorithm? To allocate jobs to five people To sort a group into alphabetical order To find the cheapest way of getting from Rotherham to Edinburgh by bus 3. When would you use Djikstra’s algorithm 4. To find the minimum profit on a graph: Look for the last point in the region parallel to a profit line Look for the first point in the region parallel to a profit line Look for the first point in the region perpendicular to a profit line How would you begin to solve a route inspection problem? By identifying the odd nodes and finding shortest pairs By finding a Hamiltonian cycle. By following a labelling procedure

Section 3: Definitions The last letter of each answer is the first letter of the next answer. Graphs that show the same information but are drawn differently are known as… Isomorphic A graph in which every vertex is directly connect by an edge to each of the other vertices is known as a ….. graph. Complete In an activity network the top box represents … Early event times 4. The final node in an activity network is known as the ….. node Sink 5. A method of finding the minimum spanning tree that cannot be applied to a matrix Kruskals

Section 4: Quick calculations Find the length of the shortest path in picture 1 11 State the shortest path between S and T in question 1 S – C – B – D – T Give an inequality for line 1 in picture 2. 3x + 5y ≥ 60 Which activities must be happening at 9.30 in picture 3? F, E and G Give the results of the second pass for picture 2 18 11 15 24 30 37