MATHEMATICAL THOUGHT AND PRACTICE. Chapter 7: The Mathematics of Networks The Cost of Being Connected

Size: px
Start display at page:

Download "MATHEMATICAL THOUGHT AND PRACTICE. Chapter 7: The Mathematics of Networks The Cost of Being Connected"

Transcription

1 MATHEMATICAL THOUGHT AND PRACTICE Chapter 7: The Mathematics of Networks The Cost of Being Connected

2

3

4 Network A network is a graph that is connected. In this context the term is most commonly used when the graph models a real-life network.

5 Network Twitter Network flowingdata.com The vertices of a network (nodes, terminals) are objects transmitting stations, servers, places, cell phones, people... The edges of a network (links) indicate connections among objects wires, cables, roads, internet connections, social connections...

6 Optimal Network Social Networking Collage The design of an optimal network involves two basic goals: 1. To make sure that all the vertices connect to the network and 2. To minimize the total cost of the network.

7 The Amazonian Cable Network The telephone company must lay fiber-optic lines along the roads between towns.

8 The Amazonian Cable Network Vertices represent the towns, edges represent existing roads, and weights represent costs in millions of dollars to lay the cables along that road.

9 Language of Graphs 1. The network must be a subgraph of (edges come from) the original graph. 2. The network must span (include all vertices) the original graph. 3. The network must be minimal (total weight of network should be as small as possible).

10 Minimal Network No Circuits Circuits cannot be part of minimal networks. The edge XY would be a redundant link of the network.

11 Formal Definitions images.worldgallery.co.uk A network is a connected graph. A weighted network has weighted edges. A network with no circuits is called a tree. A spanning tree is a subgraph that connects all the vertices and has no circuits. The spanning tree with least total weight is called a minimum spanning tree (MST).

12 Clicker Quicker Sticker

13 Networks, Trees, and Spanning Trees The six graphs on the following slides all have the same set of vertices (A through L). Let s imagine that these vertices represent computer labs at a university, and that the edges are Ethernet connections between pairs of labs.

14 Networks, Trees, and Spanning Trees No network graph is disconnected. Network with circuits

15 Networks, Trees, and Spanning Trees No network partial tree Network, spanning tree, no redundancies

16 Properties of Trees A tree is special because it s barely connected. This means: 1. For any two vertices, there is one and only one path joining X to Y. 2. Every edge of a tree is a bridge. 3. Among all networks with N vertices, a tree has the fewest number of edges.

17 Connect the Dots (and Stop) Start with eight isolated vertices. Create a network connecting the vertices by adding edges, one at a time. Create any network you want. Bridges are good and circuits are bad. (Imagine each bridge gives you $10 reward, but each you pay $10.)

18 Connect the Dots (and Stop) For M = 7, the graph becomes connected. Each of these networks is a tree, and thus each of the seven edges is a bridge. Stop here and you will come out $70 richer.

19 Connect the Dots (and Stop) As M increases, the number of circuits goes up and bridges goes down.

20 Tree Properties

21 Tree Properties

22 Clicker Quicker Sticker

23 Clicker Quicker Sticker

24 Spanning Trees An American Haunting In the case of a network with positive redundancy, there are many trees within the network that connect its vertices these are the spanning trees of the network.

25 Counting Spanning Trees Redundancy of the network is R = M (N 1)= 1. So to find a spanning tree we will have to discard one edge.

26 The network has three different spanning trees.

27 Counting Spanning Trees The network has M = 9 edges and N = 8 vertices. The redundancy of the network is R = 2, so to find a spanning tree we will have to discard two edges getting rid of circuits.

28 Counting Spanning Trees

29 Counting Spanning Trees This network has M = 9 edges and N = 8 vertices. Here the circuits share a common edge CG. Determining which pairs of edges can be excluded in this case is a bit more complicated.

30 Clicker Quicker Sticker

31 Clicker Quicker Sticker

32 Find Minimum Spanning Trees (MST) Vertices represent computer labs, and edges are potential Ethernet connections. The weights are in thousands of dollars. The weighted network has a redundancy of R = 3 (M = 14 and N = 12).

33 Find Minimum Spanning Trees (MST) Is this spanning tree minimal? Can we be sure? And if so, what assurances do we have that this strategy will work in all graphs? These are the questions we will answer next.

34 Kruskal s Algorithm

35 The Amazonian Cable Network What is the optimal fiberoptic cable network connecting the seven towns shown?

36 The Amazonian Cable Network Find the MST. Step 1 Choose the cheapest link: GF ($42 mill.) Step 2 The next cheapest link is BD ($45 million) Step 3 The next cheapest link is AD at $49 million. Step 4 Next, AB and DG tie, but we rule out AB since it would create a circuit.

37 The Amazonian Cable Network Step 5 The next cheapest link is CD. Step 6 The next cheapest is BC, but that would create a circuit. The next is CF, but that creates another circuit. The next CE. Finished, with a cost of $299 million.

38 Kruskal s Algorithm personales.upv.es As algorithms go, Kruskal s algorithm is as good as it gets: easy and efficient. As we increase the number of vertices and edges, the work grows proportionally. Since Kruskal s algorithm is optimal, always finding the MST, we have solved our conundrum!

39 Clicker Quicker Sticker

40 Clicker Quicker Sticker

41 Clicker Quicker Sticker

42 Shortest Network MSTs represent the optimal way to connect existing vertices and edges of the network. But what if were free to create new vertices and links outside the original network?

43 The Outback Cable Network The towns are connected by unpaved straight roads. What is the cheapest fiberoptic network connecting the three towns?

44 The Outback Cable Network The MST gives us a ceiling of1000 miles. The T-network is shorter, 933 miles, using triangles. The Y-network is shortest at 866 miles.

45 Shortest Network

46 Shortest Network

47 Shortest Network

48 Third Trans-Pacific Cable Network hawaiivacations.transamglobal.com In 1989, a consortium of telephone companies completed the Third Trans-Pacific Cable (TPC-3) line, a network of submarine fiber-optic lines linking Japan and Guam to the United States (via Hawaii).

49 Third Trans-Pacific Cable Network Submarine cable costs $50 to $70 K per mile, so we need the shortest network. An interior junction point in the triangle? Where?

50 Third Trans-Pacific Cable Network The theoretical length of the shortest network is 5180 miles, but the uneven ocean floor adds as much as 10%, and the actual length is 5690 miles.

51 Kruskal s Algorithm From these examples, we might assume that the shortest network connecting three points joins at a Steiner point S inside the triangle. This is only true when we have a Steiner point inside the triangle.

52 A High-Speed Rail Network

53 A High-Speed Rail Network General property of triangles: For any triangle ABC and interior point S, angle ASC must be bigger than angle ABC. For ASC to be 120º, ABC must be less than 120º.

54 A High-Speed Rail Network Our angle is about 155º; so no Steiner junction point exists inside the triangle. Without a Steiner junction point, how do we find the shortest network?

55 A High-Speed Rail Network In this situation the shortest network consists of the two shortest sides of the triangle, which happens to be the minimum spanning tree.

56 Shortest Network

57 Shortest Network

58 Clicker Quicker Sticker

59 Clicker Quicker Sticker

60 Clicker Quicker Sticker

61 Clicker Quicker Sticker

62 Clicker Quicker Sticker

63 Clicker Quicker Sticker

64 Torricelli s Construction In the 1600s Italian Evangelista Torricelli discovered a remarkably simple and elegant method for locating a Steiner point inside a triangle, using a straightedge and a compass.

65

66

67 Four-City Networks Imagine four cities (A, B, C, and D) that need to be connected. What does the optimal network look like?

68 Four-City Networks If we don t want to create any interior junction points in the network, then the answer is a minimum spanning tree, such as the one shown. The length of the MST is 1500 miles.

69 Four-City Networks If interior junction points are allowed, an X-junction located at O, the center of the square, would shorten the length to approximately 1414 miles.

70 Four-City Networks Even better is a network with two Steiner points: Two such networks exist (one is a rotated version of the other) having the same length about 1366 miles, which is the shortest possible.

71 Four-City Networks This time we change the dimensions of the rectangle, as shown.

72 Four-City Networks We know that the MST is 1000 miles long.

73 Four-City Networks For the shortest network, an obvious candidate would be a network with two interior Steiner junction points. There are two such networks shown.

74 Four-City Networks The length of the network on the left is approximately 993 miles, while the length of the network on the right is approximately 920 miles, the shortest possible network!

75 Four-City Networks This time, imagine that the cities are located at the vertices of a skinny trapezoid, as shown. The minimum spanning tree (in red) is 600 miles long.

76 Four-City Networks What about the shortest network? We should look for two interior Steiner junction points; however, since angles at A and B are greater than 120º, no Steiner points exist inside the trapezoid.

77 Four-City Networks If not Steiner points, how about X-, T-, or Y- junctions? In reality, the only possible interior junction points in a shortest network are Steiner points.

78 Shortest Networks Since we also know that the shortest network without interior junction points is the minimum spanning tree, then the MST must be the shortest network whenever no interior Steiner points exist.

79 Four-City Networks This time, our cities sit as shown. The MST is shown and its length is 1000 miles.

80 Four-City Networks The shortest network is either the MST or one with interior Steiner points. It s impossible to have two interior Steiner points, but there are three possible networks with a single interior Steiner point:

81 Four-City Networks miles miles This last network is the shortest in our list and thus the shortest network connecting, the four cities miles

82 Shortest Network

83 Shortest Network Algorithm simonnemichelle.files.wordpress.com 1. List all Steiner trees. 2. Using Kruskal s algorithm, find the minimum spanning tree. 3. Compare all trees. The shorter is the shortest network.

84 Shortest Network Algorithm Impractical farm1.static.flickr.com With as few as 10 points, we might have to compute over a million possible Steiner trees; with 20 cities, the number of possible Steiner trees is in the billions. Optimal but inefficient

85 Approximate Solutions Sophisticated approximate algorithms solve problems with hundreds of points and efficiently produce short networks less than 1% off the shortest network. Even simple Kruskal s algorithm can be used as a reasonably good approximate. For any set of points, the MST is never much longer than the shortest network: 13.4% longer at most, but usually 3% or less.

86 Homework Online homework for Chapter 7 Paper homework for Chapter 7 Online quiz for Chapter 7 Group projects meet with me this week

Chapter 6: Graph Theory

Chapter 6: Graph Theory Chapter 6: Graph Theory Graph theory deals with routing and network problems and if it is possible to find a best route, whether that means the least expensive, least amount of time or the least distance.

More information

IE 680 Special Topics in Production Systems: Networks, Routing and Logistics*

IE 680 Special Topics in Production Systems: Networks, Routing and Logistics* IE 680 Special Topics in Production Systems: Networks, Routing and Logistics* Rakesh Nagi Department of Industrial Engineering University at Buffalo (SUNY) *Lecture notes from Network Flows by Ahuja, Magnanti

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Thursday, January 24, 2013 9:15 a.m. to 12:15 p.m.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Thursday, January 24, 2013 9:15 a.m. to 12:15 p.m. GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY Thursday, January 24, 2013 9:15 a.m. to 12:15 p.m., only Student Name: School Name: The possession or use of any

More information

Motion Graphs. It is said that a picture is worth a thousand words. The same can be said for a graph.

Motion Graphs. It is said that a picture is worth a thousand words. The same can be said for a graph. Motion Graphs It is said that a picture is worth a thousand words. The same can be said for a graph. Once you learn to read the graphs of the motion of objects, you can tell at a glance if the object in

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Student Name:

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Student Name: GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY Wednesday, August 18, 2010 8:30 to 11:30 a.m., only Student Name: School Name: Print your name and the name of

More information

Geometry Regents Review

Geometry Regents Review Name: Class: Date: Geometry Regents Review Multiple Choice Identify the choice that best completes the statement or answers the question. 1. If MNP VWX and PM is the shortest side of MNP, what is the shortest

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Wednesday, January 29, 2014 9:15 a.m. to 12:15 p.m.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Wednesday, January 29, 2014 9:15 a.m. to 12:15 p.m. GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY Wednesday, January 29, 2014 9:15 a.m. to 12:15 p.m., only Student Name: School Name: The possession or use of any

More information

Three-Dimensional Figures or Space Figures. Rectangular Prism Cylinder Cone Sphere. Two-Dimensional Figures or Plane Figures

Three-Dimensional Figures or Space Figures. Rectangular Prism Cylinder Cone Sphere. Two-Dimensional Figures or Plane Figures SHAPE NAMES Three-Dimensional Figures or Space Figures Rectangular Prism Cylinder Cone Sphere Two-Dimensional Figures or Plane Figures Square Rectangle Triangle Circle Name each shape. [triangle] [cone]

More information

Geometry - Semester 2. Mrs. Day-Blattner 1/20/2016

Geometry - Semester 2. Mrs. Day-Blattner 1/20/2016 Geometry - Semester 2 Mrs. Day-Blattner 1/20/2016 Agenda 1/20/2016 1) 20 Question Quiz - 20 minutes 2) Jan 15 homework - self-corrections 3) Spot check sheet Thales Theorem - add to your response 4) Finding

More information

Session 5 Dissections and Proof

Session 5 Dissections and Proof Key Terms for This Session Session 5 Dissections and Proof Previously Introduced midline parallelogram quadrilateral rectangle side-angle-side (SAS) congruence square trapezoid vertex New in This Session

More information

Geometry 1. Unit 3: Perpendicular and Parallel Lines

Geometry 1. Unit 3: Perpendicular and Parallel Lines Geometry 1 Unit 3: Perpendicular and Parallel Lines Geometry 1 Unit 3 3.1 Lines and Angles Lines and Angles Parallel Lines Parallel lines are lines that are coplanar and do not intersect. Some examples

More information

Assessment For The California Mathematics Standards Grade 3

Assessment For The California Mathematics Standards Grade 3 Introduction: Summary of Goals GRADE THREE By the end of grade three, students deepen their understanding of place value and their understanding of and skill with addition, subtraction, multiplication,

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Tuesday, January 26, 2016 1:15 to 4:15 p.m., only.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Tuesday, January 26, 2016 1:15 to 4:15 p.m., only. GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY Tuesday, January 26, 2016 1:15 to 4:15 p.m., only Student Name: School Name: The possession or use of any communications

More information

Scaling 10Gb/s Clustering at Wire-Speed

Scaling 10Gb/s Clustering at Wire-Speed Scaling 10Gb/s Clustering at Wire-Speed InfiniBand offers cost-effective wire-speed scaling with deterministic performance Mellanox Technologies Inc. 2900 Stender Way, Santa Clara, CA 95054 Tel: 408-970-3400

More information

SPECIAL PRODUCTS AND FACTORS

SPECIAL PRODUCTS AND FACTORS CHAPTER 442 11 CHAPTER TABLE OF CONTENTS 11-1 Factors and Factoring 11-2 Common Monomial Factors 11-3 The Square of a Monomial 11-4 Multiplying the Sum and the Difference of Two Terms 11-5 Factoring the

More information

Lesson 1.1 Building Blocks of Geometry

Lesson 1.1 Building Blocks of Geometry Lesson 1.1 Building Blocks of Geometry For Exercises 1 7, complete each statement. S 3 cm. 1. The midpoint of Q is. N S Q 2. NQ. 3. nother name for NS is. 4. S is the of SQ. 5. is the midpoint of. 6. NS.

More information

Outline. NP-completeness. When is a problem easy? When is a problem hard? Today. Euler Circuits

Outline. NP-completeness. When is a problem easy? When is a problem hard? Today. Euler Circuits Outline NP-completeness Examples of Easy vs. Hard problems Euler circuit vs. Hamiltonian circuit Shortest Path vs. Longest Path 2-pairs sum vs. general Subset Sum Reducing one problem to another Clique

More information

PCB ROUTERS AND ROUTING METHODS

PCB ROUTERS AND ROUTING METHODS PCB ROUTERS AND ROUTING METHODS BY: LEE W. RITCHEY, SPEEDING EDGE, COPYRIGHT SPEEDING EDGE DECEMBER 1999 FOR PUBLICATION IN FEBRUARY ISSUE OF PC DESIGN MAGAZINE INTRODUCTION Routing of printed circuit

More information

Graph Theory Problems and Solutions

Graph Theory Problems and Solutions raph Theory Problems and Solutions Tom Davis tomrdavis@earthlink.net http://www.geometer.org/mathcircles November, 005 Problems. Prove that the sum of the degrees of the vertices of any finite graph is

More information

Mathematics 2540 Paper 5540H/3H

Mathematics 2540 Paper 5540H/3H Edexcel GCSE Mathematics 540 Paper 5540H/3H November 008 Mark Scheme 1 (a) 3bc 1 B1 for 3bc (accept 3cb or bc3 or cb3 or 3 b c oe, but 7bc 4bc gets no marks) (b) x + 5y B for x+5y (accept x+y5 or x + 5

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Tuesday, August 13, 2013 8:30 to 11:30 a.m., only.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Tuesday, August 13, 2013 8:30 to 11:30 a.m., only. GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY Tuesday, August 13, 2013 8:30 to 11:30 a.m., only Student Name: School Name: The possession or use of any communications

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Thursday, August 13, 2009 8:30 to 11:30 a.m., only.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Thursday, August 13, 2009 8:30 to 11:30 a.m., only. GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY Thursday, August 13, 2009 8:30 to 11:30 a.m., only Student Name: School Name: Print your name and the name of your

More information

Chinese postman problem

Chinese postman problem PTR hinese postman problem Learning objectives fter studying this chapter, you should be able to: understand the hinese postman problem apply an algorithm to solve the problem understand the importance

More information

Social Media Mining. Graph Essentials

Social Media Mining. Graph Essentials Graph Essentials Graph Basics Measures Graph and Essentials Metrics 2 2 Nodes and Edges A network is a graph nodes, actors, or vertices (plural of vertex) Connections, edges or ties Edge Node Measures

More information

Graph Theory and Complex Networks: An Introduction. Chapter 06: Network analysis

Graph Theory and Complex Networks: An Introduction. Chapter 06: Network analysis Graph Theory and Complex Networks: An Introduction Maarten van Steen VU Amsterdam, Dept. Computer Science Room R4.0, steen@cs.vu.nl Chapter 06: Network analysis Version: April 8, 04 / 3 Contents Chapter

More information

Sample Test Questions

Sample Test Questions mathematics College Algebra Geometry Trigonometry Sample Test Questions A Guide for Students and Parents act.org/compass Note to Students Welcome to the ACT Compass Sample Mathematics Test! You are about

More information

4. How many integers between 2004 and 4002 are perfect squares?

4. How many integers between 2004 and 4002 are perfect squares? 5 is 0% of what number? What is the value of + 3 4 + 99 00? (alternating signs) 3 A frog is at the bottom of a well 0 feet deep It climbs up 3 feet every day, but slides back feet each night If it started

More information

2. If C is the midpoint of AB and B is the midpoint of AE, can you say that the measure of AC is 1/4 the measure of AE?

2. If C is the midpoint of AB and B is the midpoint of AE, can you say that the measure of AC is 1/4 the measure of AE? MATH 206 - Midterm Exam 2 Practice Exam Solutions 1. Show two rays in the same plane that intersect at more than one point. Rays AB and BA intersect at all points from A to B. 2. If C is the midpoint of

More information

Objectives. The Role of Redundancy in a Switched Network. Layer 2 Loops. Broadcast Storms. More problems with Layer 2 loops

Objectives. The Role of Redundancy in a Switched Network. Layer 2 Loops. Broadcast Storms. More problems with Layer 2 loops ITE I Chapter 6 2006 Cisco Systems, Inc. All rights reserved. Cisco Public 1 Objectives Implement Spanning Tree Protocols LAN Switching and Wireless Chapter 5 Explain the role of redundancy in a converged

More information

BIG DATA VISUALIZATION. Team Impossible Peter Vilim, Sruthi Mayuram Krithivasan, Matt Burrough, and Ismini Lourentzou

BIG DATA VISUALIZATION. Team Impossible Peter Vilim, Sruthi Mayuram Krithivasan, Matt Burrough, and Ismini Lourentzou BIG DATA VISUALIZATION Team Impossible Peter Vilim, Sruthi Mayuram Krithivasan, Matt Burrough, and Ismini Lourentzou Let s begin with a story Let s explore Yahoo s data! Dora the Data Explorer has a new

More information

CHAPTER 8, GEOMETRY. 4. A circular cylinder has a circumference of 33 in. Use 22 as the approximate value of π and find the radius of this cylinder.

CHAPTER 8, GEOMETRY. 4. A circular cylinder has a circumference of 33 in. Use 22 as the approximate value of π and find the radius of this cylinder. TEST A CHAPTER 8, GEOMETRY 1. A rectangular plot of ground is to be enclosed with 180 yd of fencing. If the plot is twice as long as it is wide, what are its dimensions? 2. A 4 cm by 6 cm rectangle has

More information

DEFINITIONS. Perpendicular Two lines are called perpendicular if they form a right angle.

DEFINITIONS. Perpendicular Two lines are called perpendicular if they form a right angle. DEFINITIONS Degree A degree is the 1 th part of a straight angle. 180 Right Angle A 90 angle is called a right angle. Perpendicular Two lines are called perpendicular if they form a right angle. Congruent

More information

V. Adamchik 1. Graph Theory. Victor Adamchik. Fall of 2005

V. Adamchik 1. Graph Theory. Victor Adamchik. Fall of 2005 V. Adamchik 1 Graph Theory Victor Adamchik Fall of 2005 Plan 1. Basic Vocabulary 2. Regular graph 3. Connectivity 4. Representing Graphs Introduction A.Aho and J.Ulman acknowledge that Fundamentally, computer

More information

1.204 Final Project Network Analysis of Urban Street Patterns

1.204 Final Project Network Analysis of Urban Street Patterns 1.204 Final Project Network Analysis of Urban Street Patterns Michael T. Chang December 21, 2012 1 Introduction In this project, I analyze road networks as a planar graph and use tools from network analysis

More information

Development of FIDO - A Network Design Tool for Fibre Cable Layout

Development of FIDO - A Network Design Tool for Fibre Cable Layout Development of FIDO - A Network Design Tool for Fibre Cable Layout Andrew J Mason Andy B Philpott Operations Research Group University of Auckland New Zealand a.mason@auckland.ac.nz a.philpott@auckland.ac.nz

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Student Name:

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Student Name: GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY Thursday, June 17, 2010 1:15 to 4:15 p.m., only Student Name: School Name: Print your name and the name of your

More information

SUPPLEMENT TO CHAPTER 6 MINIMUM SPANNING-TREE PROBLEMS

SUPPLEMENT TO CHAPTER 6 MINIMUM SPANNING-TREE PROBLEMS S h 6- SUPPLMNT TO HPTR 6 MINIMUM SPNNIN-TR PROLMS hapter 6 focuses on network optimization problems. These are problems that can be described in terms of a complete network that has both nodes and links

More information

Multi-layer Structure of Data Center Based on Steiner Triple System

Multi-layer Structure of Data Center Based on Steiner Triple System Journal of Computational Information Systems 9: 11 (2013) 4371 4378 Available at http://www.jofcis.com Multi-layer Structure of Data Center Based on Steiner Triple System Jianfei ZHANG 1, Zhiyi FANG 1,

More information

MATHEMATICS Unit Decision 1

MATHEMATICS Unit Decision 1 General Certificate of Education January 2008 Advanced Subsidiary Examination MATHEMATICS Unit Decision 1 MD01 Tuesday 15 January 2008 9.00 am to 10.30 am For this paper you must have: an 8-page answer

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION MATHEMATICS B. Thursday, January 29, 2004 9:15 a.m. to 12:15 p.m.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION MATHEMATICS B. Thursday, January 29, 2004 9:15 a.m. to 12:15 p.m. The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION MATHEMATICS B Thursday, January 9, 004 9:15 a.m. to 1:15 p.m., only Print Your Name: Print Your School s Name: Print your name and

More information

OHM S LAW AND RESISTANCE

OHM S LAW AND RESISTANCE OHM S LAW AND RESISTANCE Resistance is one of the basic principles of Ohm s law, and can be found in virtually any device used to conduct electricity. Georg Simon Ohm was a German physicist who conducted

More information

Computer and Network Security

Computer and Network Security Computer and Network Security Dr. Arjan Durresi Louisiana State University Baton Rouge, LA 70810 Durresi@csc.LSU.Edu These slides are available at: http://www.csc.lsu.edu/~durresi/csc4601_07/ Louisiana

More information

Conjectures. Chapter 2. Chapter 3

Conjectures. Chapter 2. Chapter 3 Conjectures Chapter 2 C-1 Linear Pair Conjecture If two angles form a linear pair, then the measures of the angles add up to 180. (Lesson 2.5) C-2 Vertical Angles Conjecture If two angles are vertical

More information

Angle - a figure formed by two rays or two line segments with a common endpoint called the vertex of the angle; angles are measured in degrees

Angle - a figure formed by two rays or two line segments with a common endpoint called the vertex of the angle; angles are measured in degrees Angle - a figure formed by two rays or two line segments with a common endpoint called the vertex of the angle; angles are measured in degrees Apex in a pyramid or cone, the vertex opposite the base; in

More information

(c) What is the value of the digit 3 in this number? [1] What is the difference in the place values of the digits 2 and 6 in

(c) What is the value of the digit 3 in this number? [1] What is the difference in the place values of the digits 2 and 6 in Assessment Test for Singapore Primary Mathematics 4A Standards Edition This test covers material taught in Primary Mathematics 4A Standards Edition (http://www.singaporemath.com/) 1. Consider the number

More information

Discovering Math: Exploring Geometry Teacher s Guide

Discovering Math: Exploring Geometry Teacher s Guide Teacher s Guide Grade Level: 6 8 Curriculum Focus: Mathematics Lesson Duration: Three class periods Program Description Discovering Math: Exploring Geometry From methods of geometric construction and threedimensional

More information

The common ratio in (ii) is called the scaled-factor. An example of two similar triangles is shown in Figure 47.1. Figure 47.1

The common ratio in (ii) is called the scaled-factor. An example of two similar triangles is shown in Figure 47.1. Figure 47.1 47 Similar Triangles An overhead projector forms an image on the screen which has the same shape as the image on the transparency but with the size altered. Two figures that have the same shape but not

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION MATHEMATICS A. Monday, January 27, 2003 1:15 to 4:15 p.m.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION MATHEMATICS A. Monday, January 27, 2003 1:15 to 4:15 p.m. The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION MATHEMATICS A Monday, January 27, 2003 1:15 to 4:15 p.m., only Print Your Name: Print Your School s Name: Print your name and the

More information

WOLLONGONG COLLEGE AUSTRALIA. Diploma in Information Technology

WOLLONGONG COLLEGE AUSTRALIA. Diploma in Information Technology First Name: Family Name: Student Number: Class/Tutorial: WOLLONGONG COLLEGE AUSTRALIA A College of the University of Wollongong Diploma in Information Technology Final Examination Spring Session 2008 WUCT121

More information

Angles that are between parallel lines, but on opposite sides of a transversal.

Angles that are between parallel lines, but on opposite sides of a transversal. GLOSSARY Appendix A Appendix A: Glossary Acute Angle An angle that measures less than 90. Acute Triangle Alternate Angles A triangle that has three acute angles. Angles that are between parallel lines,

More information

2nd Semester Geometry Final Exam Review

2nd Semester Geometry Final Exam Review Class: Date: 2nd Semester Geometry Final Exam Review Multiple Choice Identify the choice that best completes the statement or answers the question. 1. The owner of an amusement park created a circular

More information

Wide Area Networks. Learning Objectives. LAN and WAN. School of Business Eastern Illinois University. (Week 11, Thursday 3/22/2007)

Wide Area Networks. Learning Objectives. LAN and WAN. School of Business Eastern Illinois University. (Week 11, Thursday 3/22/2007) School of Business Eastern Illinois University Wide Area Networks (Week 11, Thursday 3/22/2007) Abdou Illia, Spring 2007 Learning Objectives 2 Distinguish between LAN and WAN Distinguish between Circuit

More information

SLOPE OF A LINE 3.2. section. helpful. hint. Slope Using Coordinates to Find 6% GRADE 6 100 SLOW VEHICLES KEEP RIGHT

SLOPE OF A LINE 3.2. section. helpful. hint. Slope Using Coordinates to Find 6% GRADE 6 100 SLOW VEHICLES KEEP RIGHT . Slope of a Line (-) 67. 600 68. 00. SLOPE OF A LINE In this section In Section. we saw some equations whose graphs were straight lines. In this section we look at graphs of straight lines in more detail

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION MATHEMATICS A. Thursday, January 29, 2009 1:15 to 4:15 p.m.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION MATHEMATICS A. Thursday, January 29, 2009 1:15 to 4:15 p.m. MATHEMATICS A The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION MATHEMATICS A Thursday, January 29, 2009 1:15 to 4:15 p.m., only Print Your Name: Print Your School s Name: Print your

More information

How To Solve The Pythagorean Triangle

How To Solve The Pythagorean Triangle Name Period CHAPTER 9 Right Triangles and Trigonometry Section 9.1 Similar right Triangles Objectives: Solve problems involving similar right triangles. Use a geometric mean to solve problems. Ex. 1 Use

More information

END OF PRIMARY BENCHMARK MATHEMATICS WRITTEN PAPER. 80 Marks 1 hour 15 minutes

END OF PRIMARY BENCHMARK MATHEMATICS WRITTEN PAPER. 80 Marks 1 hour 15 minutes END OF PRIMARY BENCHMARK MATHEMATICS WRITTEN PAPER 80 Marks 1 hour 15 minutes Mathematics Written Paper End of Primary Benchmark 3 rd June 2011 Page 1 of 13 MATHEMATICS WRITTEN PAPER 1. Work out: a) 144

More information

The London Independent Girls Schools Consortium. Mathematics Specimen Paper

The London Independent Girls Schools Consortium. Mathematics Specimen Paper Name: Present School:.. The London Independent Girls Schools Consortium Mathematics Specimen Paper Instructions: Time allowed: 1 hour 15 minutes Only use a pencil and a rubber. Do all your rough working

More information

Dear Grade 4 Families,

Dear Grade 4 Families, Dear Grade 4 Families, During the next few weeks, our class will be exploring geometry. Through daily activities, we will explore the relationship between flat, two-dimensional figures and solid, three-dimensional

More information

10-4-10 Year 9 mathematics: holiday revision. 2 How many nines are there in fifty-four?

10-4-10 Year 9 mathematics: holiday revision. 2 How many nines are there in fifty-four? DAY 1 Mental questions 1 Multiply seven by seven. 49 2 How many nines are there in fifty-four? 54 9 = 6 6 3 What number should you add to negative three to get the answer five? 8 4 Add two point five to

More information

The Classes P and NP. mohamed@elwakil.net

The Classes P and NP. mohamed@elwakil.net Intractable Problems The Classes P and NP Mohamed M. El Wakil mohamed@elwakil.net 1 Agenda 1. What is a problem? 2. Decidable or not? 3. The P class 4. The NP Class 5. TheNP Complete class 2 What is a

More information

/27 Intro to Geometry Review

/27 Intro to Geometry Review /27 Intro to Geometry Review 1. An acute has a measure of. 2. A right has a measure of. 3. An obtuse has a measure of. 13. Two supplementary angles are in ratio 11:7. Find the measure of each. 14. In the

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Thursday, August 13, 2015 8:30 to 11:30 a.m., only.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Thursday, August 13, 2015 8:30 to 11:30 a.m., only. GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY Thursday, August 13, 2015 8:30 to 11:30 a.m., only Student Name: School Name: The possession or use of any communications

More information

THREE DIMENSIONAL GEOMETRY

THREE DIMENSIONAL GEOMETRY Chapter 8 THREE DIMENSIONAL GEOMETRY 8.1 Introduction In this chapter we present a vector algebra approach to three dimensional geometry. The aim is to present standard properties of lines and planes,

More information

Databases -Normalization III. (N Spadaccini 2010 and W Liu 2012) Databases - Normalization III 1 / 31

Databases -Normalization III. (N Spadaccini 2010 and W Liu 2012) Databases - Normalization III 1 / 31 Databases -Normalization III (N Spadaccini 2010 and W Liu 2012) Databases - Normalization III 1 / 31 This lecture This lecture describes 3rd normal form. (N Spadaccini 2010 and W Liu 2012) Databases -

More information

VISUALIZING HIERARCHICAL DATA. Graham Wills SPSS Inc., http://willsfamily.org/gwills

VISUALIZING HIERARCHICAL DATA. Graham Wills SPSS Inc., http://willsfamily.org/gwills VISUALIZING HIERARCHICAL DATA Graham Wills SPSS Inc., http://willsfamily.org/gwills SYNONYMS Hierarchical Graph Layout, Visualizing Trees, Tree Drawing, Information Visualization on Hierarchies; Hierarchical

More information

Geometry and Measurement

Geometry and Measurement The student will be able to: Geometry and Measurement 1. Demonstrate an understanding of the principles of geometry and measurement and operations using measurements Use the US system of measurement for

More information

Graph Theory and Complex Networks: An Introduction. Chapter 06: Network analysis. Contents. Introduction. Maarten van Steen. Version: April 28, 2014

Graph Theory and Complex Networks: An Introduction. Chapter 06: Network analysis. Contents. Introduction. Maarten van Steen. Version: April 28, 2014 Graph Theory and Complex Networks: An Introduction Maarten van Steen VU Amsterdam, Dept. Computer Science Room R.0, steen@cs.vu.nl Chapter 0: Version: April 8, 0 / Contents Chapter Description 0: Introduction

More information

136 CHAPTER 4. INDUCTION, GRAPHS AND TREES

136 CHAPTER 4. INDUCTION, GRAPHS AND TREES 136 TER 4. INDUCTION, GRHS ND TREES 4.3 Graphs In this chapter we introduce a fundamental structural idea of discrete mathematics, that of a graph. Many situations in the applications of discrete mathematics

More information

2.1. Inductive Reasoning EXAMPLE A

2.1. Inductive Reasoning EXAMPLE A CONDENSED LESSON 2.1 Inductive Reasoning In this lesson you will Learn how inductive reasoning is used in science and mathematics Use inductive reasoning to make conjectures about sequences of numbers

More information

CIRCLE COORDINATE GEOMETRY

CIRCLE COORDINATE GEOMETRY CIRCLE COORDINATE GEOMETRY (EXAM QUESTIONS) Question 1 (**) A circle has equation x + y = 2x + 8 Determine the radius and the coordinates of the centre of the circle. r = 3, ( 1,0 ) Question 2 (**) A circle

More information

E XPLORING QUADRILATERALS

E XPLORING QUADRILATERALS E XPLORING QUADRILATERALS E 1 Geometry State Goal 9: Use geometric methods to analyze, categorize and draw conclusions about points, lines, planes and space. Statement of Purpose: The activities in this

More information

http://www.castlelearning.com/review/teacher/assignmentprinting.aspx 5. 2 6. 2 1. 10 3. 70 2. 55 4. 180 7. 2 8. 4

http://www.castlelearning.com/review/teacher/assignmentprinting.aspx 5. 2 6. 2 1. 10 3. 70 2. 55 4. 180 7. 2 8. 4 of 9 1/28/2013 8:32 PM Teacher: Mr. Sime Name: 2 What is the slope of the graph of the equation y = 2x? 5. 2 If the ratio of the measures of corresponding sides of two similar triangles is 4:9, then the

More information

WEDNESDAY, 2 MAY 1.30 PM 2.25 PM. 3 Full credit will be given only where the solution contains appropriate working.

WEDNESDAY, 2 MAY 1.30 PM 2.25 PM. 3 Full credit will be given only where the solution contains appropriate working. C 500/1/01 NATIONAL QUALIFICATIONS 01 WEDNESDAY, MAY 1.0 PM.5 PM MATHEMATICS STANDARD GRADE Credit Level Paper 1 (Non-calculator) 1 You may NOT use a calculator. Answer as many questions as you can. Full

More information

GAP CLOSING. 2D Measurement. Intermediate / Senior Student Book

GAP CLOSING. 2D Measurement. Intermediate / Senior Student Book GAP CLOSING 2D Measurement Intermediate / Senior Student Book 2-D Measurement Diagnostic...3 Areas of Parallelograms, Triangles, and Trapezoids...6 Areas of Composite Shapes...14 Circumferences and Areas

More information

Midterm Practice Problems

Midterm Practice Problems 6.042/8.062J Mathematics for Computer Science October 2, 200 Tom Leighton, Marten van Dijk, and Brooke Cowan Midterm Practice Problems Problem. [0 points] In problem set you showed that the nand operator

More information

The London Independent Girls Schools Consortium. Mathematics Sample Questions

The London Independent Girls Schools Consortium. Mathematics Sample Questions The London Independent Girls Schools Consortium Mathematics Sample Questions Group I and Group 2 Mathematics papers are each 1hour and 15minutes long. No calculators or rulers are allowed; girls are allowed

More information

INTERSECTION MATH And more! James Tanton

INTERSECTION MATH And more! James Tanton INTERSECTION MATH And more! James Tanton www.jamestanton.com The following represents a sample activity based on the December 2006 newsletter of the St. Mark s Institute of Mathematics (www.stmarksschool.org/math).

More information

Computer and Network Security

Computer and Network Security Computer and Network Security Dr. Arjan Durresi Louisiana State University Baton Rouge, LA 70810 Durresi@Csc.LSU.Edu These slides are available at: http://www.csc.lsu.edu/~durresi/csc4601_04/ Louisiana

More information

Geometry Progress Ladder

Geometry Progress Ladder Geometry Progress Ladder Maths Makes Sense Foundation End-of-year objectives page 2 Maths Makes Sense 1 2 End-of-block objectives page 3 Maths Makes Sense 3 4 End-of-block objectives page 4 Maths Makes

More information

The GED math test gives you a page of math formulas that

The GED math test gives you a page of math formulas that Math Smart 643 The GED Math Formulas The GED math test gives you a page of math formulas that you can use on the test, but just seeing the formulas doesn t do you any good. The important thing is understanding

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Thursday, January 26, 2012 9:15 a.m. to 12:15 p.m.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Thursday, January 26, 2012 9:15 a.m. to 12:15 p.m. GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXMINTION GEOMETRY Thursday, January 26, 2012 9:15 a.m. to 12:15 p.m., only Student Name: School Name: Print your name and the name

More information

TIgeometry.com. Geometry. Angle Bisectors in a Triangle

TIgeometry.com. Geometry. Angle Bisectors in a Triangle Angle Bisectors in a Triangle ID: 8892 Time required 40 minutes Topic: Triangles and Their Centers Use inductive reasoning to postulate a relationship between an angle bisector and the arms of the angle.

More information

12. Parallels. Then there exists a line through P parallel to l.

12. Parallels. Then there exists a line through P parallel to l. 12. Parallels Given one rail of a railroad track, is there always a second rail whose (perpendicular) distance from the first rail is exactly the width across the tires of a train, so that the two rails

More information

Chapter 5.1 and 5.2 Triangles

Chapter 5.1 and 5.2 Triangles Chapter 5.1 and 5.2 Triangles Students will classify triangles. Students will define and use the Angle Sum Theorem. A triangle is formed when three non-collinear points are connected by segments. Each

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY Wednesday, June 20, 2012 9:15 a.m. to 12:15 p.m., only Student Name: School Name: Print your name and the name

More information

Information Theory and Coding Prof. S. N. Merchant Department of Electrical Engineering Indian Institute of Technology, Bombay

Information Theory and Coding Prof. S. N. Merchant Department of Electrical Engineering Indian Institute of Technology, Bombay Information Theory and Coding Prof. S. N. Merchant Department of Electrical Engineering Indian Institute of Technology, Bombay Lecture - 17 Shannon-Fano-Elias Coding and Introduction to Arithmetic Coding

More information

Year 9 mathematics test

Year 9 mathematics test Ma KEY STAGE 3 Year 9 mathematics test Tier 6 8 Paper 1 Calculator not allowed First name Last name Class Date Please read this page, but do not open your booklet until your teacher tells you to start.

More information

Industrial Ethernet How to Keep Your Network Up and Running A Beginner s Guide to Redundancy Standards

Industrial Ethernet How to Keep Your Network Up and Running A Beginner s Guide to Redundancy Standards Redundancy = Protection from Network Failure. Redundancy Standards WP-31-REV0-4708-1/5 Industrial Ethernet How to Keep Your Network Up and Running A Beginner s Guide to Redundancy Standards For a very

More information

Everyday Mathematics GOALS

Everyday Mathematics GOALS Copyright Wright Group/McGraw-Hill GOALS The following tables list the Grade-Level Goals organized by Content Strand and Program Goal. Content Strand: NUMBER AND NUMERATION Program Goal: Understand the

More information

A HYBRID APPROACH FOR AUTOMATED AREA AGGREGATION

A HYBRID APPROACH FOR AUTOMATED AREA AGGREGATION A HYBRID APPROACH FOR AUTOMATED AREA AGGREGATION Zeshen Wang ESRI 380 NewYork Street Redlands CA 92373 Zwang@esri.com ABSTRACT Automated area aggregation, which is widely needed for mapping both natural

More information

Linear DC Motors. 15.1 Magnetic Flux. 15.1.1 Permanent Bar Magnets

Linear DC Motors. 15.1 Magnetic Flux. 15.1.1 Permanent Bar Magnets Linear DC Motors The purpose of this supplement is to present the basic material needed to understand the operation of simple DC motors. This is intended to be used as the reference material for the linear

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Wednesday, January 28, 2015 9:15 a.m. to 12:15 p.m.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Wednesday, January 28, 2015 9:15 a.m. to 12:15 p.m. GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY Wednesday, January 28, 2015 9:15 a.m. to 12:15 p.m., only Student Name: School Name: The possession or use of any

More information

New York State Student Learning Objective: Regents Geometry

New York State Student Learning Objective: Regents Geometry New York State Student Learning Objective: Regents Geometry All SLOs MUST include the following basic components: Population These are the students assigned to the course section(s) in this SLO all students

More information

Program Evaluation and Review Technique (PERT) and Critical Path Method (CPM) Applications

Program Evaluation and Review Technique (PERT) and Critical Path Method (CPM) Applications Program Evaluation and Review Technique (PERT) and Critical Path Method (CPM) Applications Two simple, yet interesting and important applications of partial ordering relations are the PERT and CPM techniques

More information

GEOMETRY (Common Core)

GEOMETRY (Common Core) GEOMETRY (COMMON CORE) The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY (Common Core) Tuesday, June 2, 2015 1:15 to 4:15 p.m., only Student Name: School Name: The possession

More information

Illinois State Standards Alignments Grades Three through Eleven

Illinois State Standards Alignments Grades Three through Eleven Illinois State Standards Alignments Grades Three through Eleven Trademark of Renaissance Learning, Inc., and its subsidiaries, registered, common law, or pending registration in the United States and other

More information

Paper Reference. Edexcel GCSE Mathematics (Linear) 1380 Paper 4 (Calculator) Friday 10 June 2011 Morning Time: 1 hour 45 minutes

Paper Reference. Edexcel GCSE Mathematics (Linear) 1380 Paper 4 (Calculator) Friday 10 June 2011 Morning Time: 1 hour 45 minutes Centre No. Candidate No. Paper Reference 1 3 8 0 4 H Paper Reference(s) 1380/4H Edexcel GCSE Mathematics (Linear) 1380 Paper 4 (Calculator) Higher Tier Friday 10 June 2011 Morning Time: 1 hour 45 minutes

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION INTEGRATED ALGEBRA. Tuesday, January 22, 2013 9:15 a.m. to 12:15 p.m.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION INTEGRATED ALGEBRA. Tuesday, January 22, 2013 9:15 a.m. to 12:15 p.m. INTEGRATED ALGEBRA The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION INTEGRATED ALGEBRA Tuesday, January 22, 2013 9:15 a.m. to 12:15 p.m., only Student Name: School Name: The possession

More information

In this section, you will develop a method to change a quadratic equation written as a sum into its product form (also called its factored form).

In this section, you will develop a method to change a quadratic equation written as a sum into its product form (also called its factored form). CHAPTER 8 In Chapter 4, you used a web to organize the connections you found between each of the different representations of lines. These connections enabled you to use any representation (such as a graph,

More information