(-1.5, 5) * A (1, -1)

Size: px
Start display at page:

Download "(-1.5, 5) * A (1, -1)"

Transcription

1

2 CS1-1 Consider the following trail that is the result of connecting a sequence of twelve trail-points.. Four such test-points are shown; they are labeled A, B, C, and D. The dashed lines indicate the nearest distance from each of these points over to the trail. (-6, 3) (-2.2, 4) (-3, 3.5) (-1.5, 5) * A (-1, 3) Y (7, 5.1) * C (-7, -1) B * (-3, -1) (1, -1) (6, -.5) X * D (7, -.5) (-7, -5) Fig. CS1-1 (-6.5, -7) (3, -6.5) (5, -7) (7, -5) We will begin by creating two text files. The first file will be named and will contain the sequence of 12 points as follows. (Be sure to enter parenthesis and commas.) (-6.5, -7) (-7, -5) (-7, -1) (-6, 3) (-3, 3.5) (-2.2, 4) (-1, 3) (1, -1) (3, -6.5) (5, -7) (7, -5) (6, -.5)

3 The second text file will be called and will contain data exactly as shown by the following (notice a space following the letters): A (-1.5, 5) B (-3, -1) C (7, 5.1) D (7, -.5) The final output of this program will be: Test point A distance to trail >>> Test point B distance to trail >>> Test point C distance to trail >>> Test point D distance to trail >>> ********************************************************************** CS1-2 This is a fairly long, sophisticated project and the secret to success is not to bite off too much at once. Do a small, fundamental part of the code, test it, and revise as necessary. Then do a little more, test, and get that part working too. This will be our approach here. The first thing we must do is create a project. Let s call our project and have it include a class called. To make things go a little faster, we will paste in the contents of the class developed in Lesson 27 and use that code to input the file. After creating two arrays, and (both dimensioned to a length of 12), strip off the parenthesis and commas and store the coordinates in. Similarly, store the coordinates in. Use the following temporary code for testing: for(int j = 0; j < 12; j++) { System.out.println(trailX[j] +, + traily[j] + ); } System.out.println( ); The output of this test should look like this: -6.5, , , , , , , , , , , , -0.5

4 The code for the project up to this point (and including the above test) can be found in the Blue Pelican Java Answer Book in the Case Study section titled. *************************************************************************** So far, so good. Next, we will bring in the file and store its parts in three different arrays. Remove the previous test code and add new code to that will create the following arrays with each dimensioned to a length of 4:. CS1-3 Now write code that will bring in this file and separate the parts of each line of text and store each in one of the new arrays just created. Use the following test code to verify that this section of the code is working: for(int j = 0; j < 4; j++) { System.out.println(testLetter[j] + + testx[j] +, + testy[j]); } System.out.println( ); The output of this test should appear as follows: A -1.5, 5.0 B -3.0, -1.0 C 7.0, 5.1 D 7.0, -0.5 The code for the project up to this point (including the test just above) can be found in the Blue Pelican Java Answer Book in the section titled. ************************************************************************** Now we come to the major part of the code for this project. This code will go in another class called. Briefly, the class can be described by the following list. At this point, do not try to implement any of this. Just scan the list and become somewhat familiar with the methods and state variables. Implementation will come later, step-by-step. 1. A constructor receives four parameters that represent the coordinates of the two. a. These four parameters are assigned to the state variables, seg,, and. b. Use the coordinates of the end points of the line segment to determine the equation of the line in Ax + By + C = 0 form. i. Be sure to handle the special case in which the line is vertical. ii. Store,, and in state variables of the same name. 2. Method

5 CS1-4 a. The parameters and represent the coordinates of a not necessarily on our line. b. Return the distance from the point to the line described by Ax + By + C = 0. This involves the use of a formula from Analytic Geometry that will be presented a little later. 3. Method a. This method tests to see if the perpendicular projection of (, tpy) onto line Ax + By + C = 0 falls on the segment defined by. b. Returns if on the segment. c. Returns if not on the segment. This analysis is somewhat complicated and will be explored later. 4. Create the following state variables: segx1, segy1, segx2, segy2, A, B, C Ok, time to get busy and start building the class. In your project, create the skeleton of the class. Create the state variables. Next, create part of the constructor and assign the parameters to the state variables,,, and. In the Answer Book this code is labeled as. *************************************************************************** Your next task is to finish the constructor by using the parameters to generate the equation of the line, thus producing,, and. Be very careful here. You should not immediately calculate the slope of the line because it may be infinite. Instead, find out first if it is infinite by testing the denominator of the slope formula ( m = (y2 - y1)/(x2 - x1) ). This test is: if( (x2 x1) = = 0 ) In fact, we can get in trouble if the difference between and is very, very small, but still nonzero. It is suggested that you use the following test instead: if( Math.abs(x2-x1) < ) Some IDE s like BlueJ will let your directly test your class without having to create test code in of the class. The table below shows the final values of,, and after passing the test parameters,,, and to the constructor. If your IDE does not permit such testing, you will need to hard code these tests into of the class.

6 Test Values Results x1 y1 x2 y2 A B C LineStuffPart 4 disttoline method disttoline (tpx, tpy) disttolinelinestuff disttoline Arguments Sent to Constructor Test-Point disttoline Point #1 Point #2 x y x y x y double Part 5

7 When projecting a test-point over to a line, there are two distinct cases. First, consider the scenario to the right in which a test-point projects over to a line and falls in the of the segment originally defining the line. In this case, the point of projection is the segment and the method should return a. (tpx, tpy) (segx1, segy1) CS1-6 (segx2, segy2) Point of projection (projx, projy) Fig. CS1-3 Projection the segment (segx1, segy1) (segx2, segy2) (tpx, tpy) Second, the test-point projects over to the line so as to fall the line segment originally defining the line. An example of this scenario is found in the drawing to the left. The method should return a. Point of projection (projx, projy) Fig. CS1-4 Projection on the line How can we distinguish between these two situations? This is accomplished by between the three points on the line. Let s examine these distances for the case when the point of projection falls the line segment. Fig CS1-5 shows three distances. The relative sizes of these distances will be used to verify that the point of projection does, indeed, fall on the line segment. (segx1, segy1) d1p (tpx, tpy) d12 d2p (projx, projy) (segx2, segy2) Fig. CS1-5 Point of projection falls in the of the line segment. From Fig. CS1-5 we see that the condition for the point of projection to fall in the of a line segment is for to be less than or equal to. This would result in the method returning a. You will need to calculate the distances,, and. Use the following distance formula to calculate, for example, the distance between (x 1, y 1 ) and (x 2, y 2 ). dist = (x 2 x 1 ) 2 + (y 2 y 1 ) 2

8 CS1-7 Now lets examine the case when the point of projection falls the line segment originally defining the line. (segx1, segy1) d12 d1p d2p (segx2, segy2) (tpx, tpy) (projx, projy) Fig CS1-6 Point of projection falls on the of the line segment. From Fig. CS1-6 we see that the condition for the point of projection to fall on the of the line segment is for to be greater than. This would result in the method returning a. This is all well and good; however, there is still one major obstacle. How do we find the point of projection? Very succinctly, here is how it s done. In Fig CS1-7 we note that the two lines labeled and are perpendicular (their slopes are negative reciprocals of each other). That will help us obtain the equation of. The equation for is already known; using the state variables,, and it is Ax + By + C = 0. line2 line1 (segx1, segy1) (tpx, tpy) (projx, projy) (segx2, segy2) Fig CS1-7 and are solved simultaneously to find the point of projection After finding the equation of, solve the two lines simultaneously as follows to find the desired intersection point : Assuming that the equation of is of the form (A1)x + (B1)y + C1 = 0, the solutions are: = A1(B) A(B1) x = [ -C1(B) + B1(C) ] / y = [ -C(A1) + A(C1) ] / The solution here,, is the desired intersection point. Following is a flow chart that should prove useful in putting all these ideas together.

9 onsegment onsegmentlinestuff onsegment Arguments Sent to Constructor Test-Point onsegment Point #1 Point #2 x y x y x y boolean onsegmentpart6 LineStuff Tester either or all onsegment disttolinedouble dist[ ]distarraycounter

10 4. Cycle through all twelve trail-points and determine the distance from the test-point to each. Store each of these distances in the array and increment each time. 5. Sort the array. 6. The first item in the array is the desired shortest distance. CS Produce output for each iteration of the loop described by item 1 above. The final output should appear as follows: Test point A distance to trail >>> Test point B distance to trail >>> Test point C distance to trail >>> Test point D distance to trail >>> The implementation of the code for the above seven steps is labeled in the Answer Book as. Following that is the complete code for the class. On the next page is a flow chart that is the equivalent of the above seven steps: ************************************************************************* Following is a practical application of a project such as this: In GIS (Geographical Information System) software there might be a trail of points representing a road or perhaps a pipeline. As a mouse pointer is moved across a map containing such a trail, we could repeatedly call a method implementing the ideas of this project to continuously show the distance from the mouse pointer to the trail.

11 CS1-10 Get next test-point Fill dist[ ] with large numbers Get next segment Get projection of test-point on seg. Proj on Segment? no yes Get dist of test-point to line Store distance in dist[ ] Set distcounter = 0 no Finished with all segs.? Increment distcounter yes Get next trail-pt Get dist of trailpoint to test-point Store in dist[ ] and increment distcounter no Finished with trail-points? yes Sort dist[ ] array Get distance in index 0 of array no Finished with test-points? Use it to produce printout yes end Fig. CS1-9 Flow chart for determining nearest point.

.(3, 2) Co-ordinate Geometry Co-ordinates. Every point has two co-ordinates. Plot the following points on the plane. A (4, 1) D (2, 5) G (6, 3)

.(3, 2) Co-ordinate Geometry Co-ordinates. Every point has two co-ordinates. Plot the following points on the plane. A (4, 1) D (2, 5) G (6, 3) Co-ordinate Geometry Co-ordinates Every point has two co-ordinates. (3, 2) x co-ordinate y co-ordinate Plot the following points on the plane..(3, 2) A (4, 1) D (2, 5) G (6, 3) B (3, 3) E ( 4, 4) H (6,

More information

SYSTEMS OF LINEAR EQUATIONS

SYSTEMS OF LINEAR EQUATIONS SYSTEMS OF LINEAR EQUATIONS A system of linear equations is a set of two equations of lines. A solution of a system of linear equations is the set of ordered pairs that makes each equation true. That is

More information

Chapter 1 Section 1 Solving Linear Equations in One Variable

Chapter 1 Section 1 Solving Linear Equations in One Variable Chapter Section Solving Linear Equations in One Variable A linear equation in one variable is an equation which can be written in the form: ax + b = c for a, b, and c real numbers with a 0. Linear equations

More information

slope rise run Definition of Slope

slope rise run Definition of Slope The Slope of a Line Mathematicians have developed a useful measure of the steepness of a line, called the slope of the line. Slope compares the vertical change (the rise) to the horizontal change (the

More information

Chapter 1. Linear Equations and Straight Lines. 2 of 71. Copyright 2014, 2010, 2007 Pearson Education, Inc.

Chapter 1. Linear Equations and Straight Lines. 2 of 71. Copyright 2014, 2010, 2007 Pearson Education, Inc. Chapter 1 Linear Equations and Straight Lines 2 of 71 Outline 1.1 Coordinate Systems and Graphs 1.4 The Slope of a Straight Line 1.3 The Intersection Point of a Pair of Lines 1.2 Linear Inequalities 1.5

More information

Geometric and Algebraic Connections

Geometric and Algebraic Connections Geometric and Algebraic Connections Geometric and Algebraic Connections Triangles, circles, rectangles, squares... We see shapes every day, but do we know much about them?? What characteristics do they

More information

Use the Move tool to drag A around and see how the automatically constructed objects (like G or the perpendicular and parallel lines) are updated.

Use the Move tool to drag A around and see how the automatically constructed objects (like G or the perpendicular and parallel lines) are updated. Math 5335 Fall 2015 Lab #0: Installing and using GeoGebra This semester you will have a number of lab assignments which require you to use GeoGebra, a dynamic geometry program. GeoGebra lets you explore

More information

SNAP Centre Workshop. Graphing Lines

SNAP Centre Workshop. Graphing Lines SNAP Centre Workshop Graphing Lines 45 Graphing a Line Using Test Values A simple way to linear equation involves finding test values, plotting the points on a coordinate plane, and connecting the points.

More information

Math-2. Lesson 3-1. Equations of Lines

Math-2. Lesson 3-1. Equations of Lines Math-2 Lesson 3-1 Equations of Lines How can an equation make a line? y = x + 1 x -4-3 -2-1 0 1 2 3 Fill in the rest of the table rule x + 1 f(x) -4 + 1-3 -3 + 1-2 -2 + 1-1 -1 + 1 0 0 + 1 1 1 + 1 2 2 +

More information

Vertical Line Test a relationship is a function, if NO vertical line intersects the graph more than once

Vertical Line Test a relationship is a function, if NO vertical line intersects the graph more than once Algebra 2 Chapter 2 Domain input values, X (x, y) Range output values, Y (x, y) Function For each input, there is exactly one output Example: Vertical Line Test a relationship is a function, if NO vertical

More information

Writing Equations of Lines and Midpoint

Writing Equations of Lines and Midpoint Writing Equations of Lines and Midpoint MGSE9 12.G.GPE.5 Prove the slope criteria for parallel and perpendicular lines and use them to solve geometric problems (e.g., find the equation of a line parallel

More information

Three-Dimensional Coordinate Systems

Three-Dimensional Coordinate Systems Jim Lambers MAT 169 Fall Semester 2009-10 Lecture 17 Notes These notes correspond to Section 10.1 in the text. Three-Dimensional Coordinate Systems Over the course of the next several lectures, we will

More information

Date Lesson TOPIC Homework. The Intersection of a Line with a Plane and the Intersection of Two Lines

Date Lesson TOPIC Homework. The Intersection of a Line with a Plane and the Intersection of Two Lines UNIT 4 - RELATIONSHIPS BETWEEN LINES AND PLANES Date Lesson TOPIC Homework Oct. 4. 9. The Intersection of a Line with a Plane and the Intersection of Two Lines Pg. 496 # (4, 5)b, 7, 8b, 9bd, Oct. 6 4.

More information

Section Graphs and Lines

Section Graphs and Lines Section 1.1 - Graphs and Lines The first chapter of this text is a review of College Algebra skills that you will need as you move through the course. This is a review, so you should have some familiarity

More information

MATH 341 FALL 2011 ASSIGNMENT 6 October 3, 2011

MATH 341 FALL 2011 ASSIGNMENT 6 October 3, 2011 MATH 341 FALL 2011 ASSIGNMENT 6 October 3, 2011 Open the document Getting Started with GeoGebra and follow the instructions either to download and install it on your computer or to run it as a Webstart

More information

10-2 Circles. Warm Up Lesson Presentation Lesson Quiz. Holt Algebra2 2

10-2 Circles. Warm Up Lesson Presentation Lesson Quiz. Holt Algebra2 2 10-2 Circles Warm Up Lesson Presentation Lesson Quiz Holt Algebra2 2 Warm Up Find the slope of the line that connects each pair of points. 1. (5, 7) and ( 1, 6) 1 6 2. (3, 4) and ( 4, 3) 1 Warm Up Find

More information

Lines That Intersect Circles

Lines That Intersect Circles LESSON 11-1 Lines That Intersect Circles Lesson Objectives (p. 746): Vocabulary 1. Interior of a circle (p. 746): 2. Exterior of a circle (p. 746): 3. Chord (p. 746): 4. Secant (p. 746): 5. Tangent of

More information

Vocabulary Unit 2-3: Linear Functions & Healthy Lifestyles. Scale model a three dimensional model that is similar to a three dimensional object.

Vocabulary Unit 2-3: Linear Functions & Healthy Lifestyles. Scale model a three dimensional model that is similar to a three dimensional object. Scale a scale is the ratio of any length in a scale drawing to the corresponding actual length. The lengths may be in different units. Scale drawing a drawing that is similar to an actual object or place.

More information

Tangent line problems

Tangent line problems You will find lots of practice problems and homework problems that simply ask you to differentiate. The following examples are to illustrate some of the types of tangent line problems that you may come

More information

Lesson 9: Coordinate Proof - Quadrilaterals Learning Targets

Lesson 9: Coordinate Proof - Quadrilaterals Learning Targets Lesson 9: Coordinate Proof - Quadrilaterals Learning Targets Using coordinates, I can find the intersection of the medians of a triangle that meet at a point that is two-thirds of the way along each median

More information

Building Concepts: Moving from Proportional Relationships to Linear Equations

Building Concepts: Moving from Proportional Relationships to Linear Equations Lesson Overview In this TI-Nspire lesson, students use previous experience with proportional relationships of the form y = kx to consider relationships of the form y = mx and eventually y = mx + b. Proportional

More information

Basics of Computational Geometry

Basics of Computational Geometry Basics of Computational Geometry Nadeem Mohsin October 12, 2013 1 Contents This handout covers the basic concepts of computational geometry. Rather than exhaustively covering all the algorithms, it deals

More information

If three points A (h, 0), P (a, b) and B (0, k) lie on a line, show that: a b 1.

If three points A (h, 0), P (a, b) and B (0, k) lie on a line, show that: a b 1. ASSIGNMENT ON STRAIGHT LINES LEVEL 1 (CBSE/NCERT/STATE BOARDS) 1 Find the angle between the lines joining the points (0, 0), (2, 3) and the points (2, 2), (3, 5). 2 What is the value of y so that the line

More information

Provide a drawing. Mark any line with three points in blue color.

Provide a drawing. Mark any line with three points in blue color. Math 3181 Name: Dr. Franz Rothe August 18, 2014 All3181\3181_fall14h1.tex Homework has to be turned in this handout. For extra space, use the back pages, or blank pages between. The homework can be done

More information

GRAPHING WORKSHOP. A graph of an equation is an illustration of a set of points whose coordinates satisfy the equation.

GRAPHING WORKSHOP. A graph of an equation is an illustration of a set of points whose coordinates satisfy the equation. GRAPHING WORKSHOP A graph of an equation is an illustration of a set of points whose coordinates satisfy the equation. The figure below shows a straight line drawn through the three points (2, 3), (-3,-2),

More information

CS 130 Exam I. Fall 2015

CS 130 Exam I. Fall 2015 CS 130 Exam I Fall 2015 Name Student ID Signature You may not ask any questions during the test. If you believe that there is something wrong with a question, write down what you think the question is

More information

2. Getting Started When you start GeoGebra, you will see a version of the following window. 1

2. Getting Started When you start GeoGebra, you will see a version of the following window. 1 Math 5335 Fall 2018 Lab #0: Installing and using GeoGebra This semester you will have a number of lab assignments which require you to use GeoGebra, a dynamic geometry program. GeoGebra lets you explore

More information

2 Solution of Homework

2 Solution of Homework Math 3181 Name: Dr. Franz Rothe February 6, 2014 All3181\3181_spr14h2.tex Homework has to be turned in this handout. The homework can be done in groups up to three due February 11/12 2 Solution of Homework

More information

Period: Date Lesson 13: Analytic Proofs of Theorems Previously Proved by Synthetic Means

Period: Date Lesson 13: Analytic Proofs of Theorems Previously Proved by Synthetic Means : Analytic Proofs of Theorems Previously Proved by Synthetic Means Learning Targets Using coordinates, I can find the intersection of the medians of a triangle that meet at a point that is two-thirds of

More information

Integrated Mathematics I Performance Level Descriptors

Integrated Mathematics I Performance Level Descriptors Limited A student performing at the Limited Level demonstrates a minimal command of Ohio s Learning Standards for Integrated Mathematics I. A student at this level has an emerging ability to demonstrate

More information

Geometry Unit 2: Linear. Section Page and Problems Date Assigned

Geometry Unit 2: Linear. Section Page and Problems Date Assigned Geometry Name: Geometry Unit 2: Linear Topics Covered: Midpoint formula Distance formula Slope Slope- Intercept Form Point- Slope Form Standard Form Assignment # Section Page and Problems Date Assigned

More information

3.1. 3x 4y = 12 3(0) 4y = 12. 3x 4y = 12 3x 4(0) = y = x 0 = 12. 4y = 12 y = 3. 3x = 12 x = 4. The Rectangular Coordinate System

3.1. 3x 4y = 12 3(0) 4y = 12. 3x 4y = 12 3x 4(0) = y = x 0 = 12. 4y = 12 y = 3. 3x = 12 x = 4. The Rectangular Coordinate System 3. The Rectangular Coordinate System Interpret a line graph. Objectives Interpret a line graph. Plot ordered pairs. 3 Find ordered pairs that satisfy a given equation. 4 Graph lines. 5 Find x- and y-intercepts.

More information

You should be able to plot points on the coordinate axis. You should know that the the midpoint of the line segment joining (x, y 1 1

You should be able to plot points on the coordinate axis. You should know that the the midpoint of the line segment joining (x, y 1 1 Name GRAPHICAL REPRESENTATION OF DATA: You should be able to plot points on the coordinate axis. You should know that the the midpoint of the line segment joining (x, y 1 1 ) and (x, y ) is x1 x y1 y,.

More information

CS 130 Exam I. Fall 2015

CS 130 Exam I. Fall 2015 S 3 Exam I Fall 25 Name Student ID Signature You may not ask any questions during the test. If you believe that there is something wrong with a question, write down what you think the question is trying

More information

Lesson 19: The Graph of a Linear Equation in Two Variables is a Line

Lesson 19: The Graph of a Linear Equation in Two Variables is a Line Lesson 19: The Graph of a Linear Equation in Two Variables is a Line Classwork Exercises Theorem: The graph of a linear equation y = mx + b is a non-vertical line with slope m and passing through (0, b),

More information

Slide 1 / 220. Linear Relations and Functions

Slide 1 / 220. Linear Relations and Functions Slide 1 / 220 Linear Relations and Functions Slide 2 / 220 Table of Contents Domain and Range Discrete v Continuous Relations and Functions Function Notation Linear Equations Graphing a Linear Equation

More information

Geometry CP. Unit 1 Notes

Geometry CP. Unit 1 Notes Geometry CP Unit 1 Notes 1.1 The Building Blocks of Geometry The three most basic figures of geometry are: Points Shown as dots. No size. Named by capital letters. Are collinear if a single line can contain

More information

The shortest distance from point K to line is the length of a segment perpendicular to from point K. Draw a perpendicular segment from K to.

The shortest distance from point K to line is the length of a segment perpendicular to from point K. Draw a perpendicular segment from K to. 8. Find the distance between each pair of parallel lines with the given equations. Copy each figure. Construct the segment that represents the distance indicated. 12. K to The shortest distance from point

More information

Geometry Pre AP Graphing Linear Equations

Geometry Pre AP Graphing Linear Equations Geometry Pre AP Graphing Linear Equations Name Date Period Find the x- and y-intercepts and slope of each equation. 1. y = -x 2. x + 3y = 6 3. x = 2 4. y = 0 5. y = 2x - 9 6. 18x 42 y = 210 Graph each

More information

Chapter 1: Number and Operations

Chapter 1: Number and Operations Chapter 1: Number and Operations 1.1 Order of operations When simplifying algebraic expressions we use the following order: 1. Perform operations within a parenthesis. 2. Evaluate exponents. 3. Multiply

More information

Slope, Distance, Midpoint

Slope, Distance, Midpoint Line segments in a coordinate plane can be analyzed by finding various characteristics of the line including slope, length, and midpoint. These values are useful in applications and coordinate proofs.

More information

Lines and Their Slopes

Lines and Their Slopes 8.2 Lines and Their Slopes Linear Equations in Two Variables In the previous chapter we studied linear equations in a single variable. The solution of such an equation is a real number. A linear equation

More information

State the domain and range of the relation. EX: {(-1,1), (1,5), (0,3)} 1 P a g e Province Mathematics Southwest TN Community College

State the domain and range of the relation. EX: {(-1,1), (1,5), (0,3)} 1 P a g e Province Mathematics Southwest TN Community College A relation is a set of ordered pairs of real numbers. The domain, D, of a relation is the set of all first coordinates of the ordered pairs in the relation (the xs). The range, R, of a relation is the

More information

True/False. MATH 1C: SAMPLE EXAM 1 c Jeffrey A. Anderson ANSWER KEY

True/False. MATH 1C: SAMPLE EXAM 1 c Jeffrey A. Anderson ANSWER KEY MATH 1C: SAMPLE EXAM 1 c Jeffrey A. Anderson ANSWER KEY True/False 10 points: points each) For the problems below, circle T if the answer is true and circle F is the answer is false. After you ve chosen

More information

Visual Formula, Important Graphs, Inequalities, and Other Things

Visual Formula, Important Graphs, Inequalities, and Other Things flynt_1598632914_ch10, 4/8/6, 12:3191 chapter 10 Visual Formula, Important Graphs, Inequalities, and Other Things The activities this chapter covers allow you to use Visual Formula to work with many of

More information

Situation 1: Congruent Triangles vs. Similar Triangles

Situation 1: Congruent Triangles vs. Similar Triangles Situation 1: Congruent Triangles vs. Similar Triangles Prepared at the University of Georgia EMAT 6500 Date last revised: July 24 th, 2013 Nicolina Scarpelli Prompt: A teacher in a high school Analytic

More information

Lesson 18: There is Only One Line Passing Through a Given Point with a Given

Lesson 18: There is Only One Line Passing Through a Given Point with a Given Lesson 18: There is Only One Line Passing Through a Given Point with a Given Student Outcomes Students graph equations in the form of using information about slope and intercept. Students know that if

More information

9/19/12. Why Study Discrete Math? What is discrete? Sets (Rosen, Chapter 2) can be described by discrete math TOPICS

9/19/12. Why Study Discrete Math? What is discrete? Sets (Rosen, Chapter 2) can be described by discrete math TOPICS What is discrete? Sets (Rosen, Chapter 2) TOPICS Discrete math Set Definition Set Operations Tuples Consisting of distinct or unconnected elements, not continuous (calculus) Helps us in Computer Science

More information

Writing and Graphing Linear Equations. Linear equations can be used to represent relationships.

Writing and Graphing Linear Equations. Linear equations can be used to represent relationships. Writing and Graphing Linear Equations Linear equations can be used to represent relationships. Linear equation An equation whose solutions form a straight line on a coordinate plane. Collinear Points that

More information

Geometry Unit 3 Equations of Lines/Parallel & Perpendicular Lines

Geometry Unit 3 Equations of Lines/Parallel & Perpendicular Lines Geometry Unit 3 Equations of Lines/Parallel & Perpendicular Lines Lesson Parallel Lines & Transversals Angles & Parallel Lines Slopes of Lines Assignment 174(14, 15, 20-37, 44) 181(11-19, 25, 27) *TYPO

More information

Finite Math - J-term Homework. Section Inverse of a Square Matrix

Finite Math - J-term Homework. Section Inverse of a Square Matrix Section.5-77, 78, 79, 80 Finite Math - J-term 017 Lecture Notes - 1/19/017 Homework Section.6-9, 1, 1, 15, 17, 18, 1, 6, 9, 3, 37, 39, 1,, 5, 6, 55 Section 5.1-9, 11, 1, 13, 1, 17, 9, 30 Section.5 - Inverse

More information

Objectives: 1. Introduce the course. 2. Define programming 3. Introduce fundamental concepts of OO: object, class

Objectives: 1. Introduce the course. 2. Define programming 3. Introduce fundamental concepts of OO: object, class CS112 Lecture: Course Introduction Last revised 1/3/06 Objectives: 1. Introduce the course. 2. Define programming 3. Introduce fundamental concepts of OO: object, class Materials: 1. Questionnaire 2. Syllabi

More information

Inversive Plane Geometry

Inversive Plane Geometry Inversive Plane Geometry An inversive plane is a geometry with three undefined notions: points, circles, and an incidence relation between points and circles, satisfying the following three axioms: (I.1)

More information

Revision Problems for Examination 2 in Algebra 1

Revision Problems for Examination 2 in Algebra 1 Centre for Mathematical Sciences Mathematics, Faculty of Science Revision Problems for Examination in Algebra. Let l be the line that passes through the point (5, 4, 4) and is at right angles to the plane

More information

Properties of a Function s Graph

Properties of a Function s Graph Section 3.2 Properties of a Function s Graph Objective 1: Determining the Intercepts of a Function An intercept of a function is a point on the graph of a function where the graph either crosses or touches

More information

1.1 - Functions, Domain, and Range

1.1 - Functions, Domain, and Range 1.1 - Functions, Domain, and Range Lesson Outline Section 1: Difference between relations and functions Section 2: Use the vertical line test to check if it is a relation or a function Section 3: Domain

More information

Wednesday 18 May 2016 Morning

Wednesday 18 May 2016 Morning Oxford Cambridge and RSA Wednesday 18 May 016 Morning AS GCE MATHEMATICS (MEI) 4751/01 Introduction to Advanced Mathematics (C1) QUESTION PAPER * 6 8 8 5 4 5 4 4 * Candidates answer on the Printed Answer

More information

2-D Geometry for Programming Contests 1

2-D Geometry for Programming Contests 1 2-D Geometry for Programming Contests 1 1 Vectors A vector is defined by a direction and a magnitude. In the case of 2-D geometry, a vector can be represented as a point A = (x, y), representing the vector

More information

EXCEL 98 TUTORIAL Chemistry C2407 fall 1998 Andy Eng, Columbia University 1998

EXCEL 98 TUTORIAL Chemistry C2407 fall 1998 Andy Eng, Columbia University 1998 Created on 09/02/98 11:58 PM 1 EXCEL 98 TUTORIAL Chemistry C2407 fall 1998 Andy Eng, Columbia University 1998 Note for Excel 97 users: All features of Excel 98 for Macintosh are available in Excel 97 for

More information

Precalculus Summer Packet

Precalculus Summer Packet Precalculus Summer Packet Name: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This packet is to help you review various topics that are considered to be prerequisite knowledge

More information

Suggested problems - solutions

Suggested problems - solutions Suggested problems - solutions Writing equations of lines and planes Some of these are similar to ones you have examples for... most of them aren t. P1: Write the general form of the equation of the plane

More information

1. Answer: x or x. Explanation Set up the two equations, then solve each equation. x. Check

1. Answer: x or x. Explanation Set up the two equations, then solve each equation. x. Check Thinkwell s Placement Test 5 Answer Key If you answered 7 or more Test 5 questions correctly, we recommend Thinkwell's Algebra. If you answered fewer than 7 Test 5 questions correctly, we recommend Thinkwell's

More information

Unit 2 Language Of Geometry

Unit 2 Language Of Geometry Unit 2 Language Of Geometry Unit 2 Review Part 1 Name: Date: Hour: Lesson 1.2 1. Name the intersection of planes FGED and BCDE 2. Name another point on plane GFB 3. Shade plane GFB 4. Name the intersection

More information

Section 3.1 Objective 1: Plot Points in the Rectangular Coordinate System Video Length 12:35

Section 3.1 Objective 1: Plot Points in the Rectangular Coordinate System Video Length 12:35 Section 3.1 Video Guide The Rectangular Coordinate System and Equations in Two Variables Objectives: 1. Plot Points in the Rectangular Coordinate System 2. Determine If an Ordered Pair Satisfies an Equation

More information

Coordinate Geometry. Coordinate geometry is the study of the relationships between points on the Cartesian plane

Coordinate Geometry. Coordinate geometry is the study of the relationships between points on the Cartesian plane Coordinate Geometry Coordinate geometry is the study of the relationships between points on the Cartesian plane What we will explore in this tutorial (a) Explore gradient I. Identify the gradient of a

More information

Geometry. 4.2 Reflections

Geometry. 4.2 Reflections Geometry 4.2 Reflections 4.2 Warm Up 1. Write a rule for the translation of LMN to L M N. For #2-5, use the translation. (x, y) (x 8, y + 4) 2. What is the image of A(2, 6)? 3. What is the image of B(

More information

Topics in geometry Exam 1 Solutions 7/8/4

Topics in geometry Exam 1 Solutions 7/8/4 Topics in geometry Exam 1 Solutions 7/8/4 Question 1 Consider the following axioms for a geometry: There are exactly five points. There are exactly five lines. Each point lies on exactly three lines. Each

More information

DHANALAKSHMI COLLEGE OF ENGINEERING, CHENNAI

DHANALAKSHMI COLLEGE OF ENGINEERING, CHENNAI DHANALAKSHMI COLLEGE OF ENGINEERING, CHENNAI Department of Computer Science and Engineering CS6702 - GRAPH THEORY AND APPLICATIONS Anna University 2 & 16 Mark Questions & Answers Year / Semester: IV /

More information

II. Functions. 61. Find a way to graph the line from the problem 59 on your calculator. Sketch the calculator graph here, including the window values:

II. Functions. 61. Find a way to graph the line from the problem 59 on your calculator. Sketch the calculator graph here, including the window values: II Functions Week 4 Functions: graphs, tables and formulas Problem of the Week: The Farmer s Fence A field bounded on one side by a river is to be fenced on three sides so as to form a rectangular enclosure

More information

1. The Pythagorean Theorem

1. The Pythagorean Theorem . The Pythagorean Theorem The Pythagorean theorem states that in any right triangle, the sum of the squares of the side lengths is the square of the hypotenuse length. c 2 = a 2 b 2 This theorem can be

More information

GEOMETRY APPLICATIONS

GEOMETRY APPLICATIONS GEOMETRY APPLICATIONS Chapter 3: Parallel & Perpendicular Lines Name: Teacher: Pd: 0 Table of Contents DAY 1: (Ch. 3-1 & 3-2) SWBAT: Identify parallel, perpendicular, and skew lines. Identify the angles

More information

Math 2 Coordinate Geometry Part 3 Inequalities & Quadratics

Math 2 Coordinate Geometry Part 3 Inequalities & Quadratics Math 2 Coordinate Geometry Part 3 Inequalities & Quadratics 1 DISTANCE BETWEEN TWO POINTS - REVIEW To find the distance between two points, use the Pythagorean theorem. The difference between x 1 and x

More information

Mathematics (www.tiwariacademy.com)

Mathematics (www.tiwariacademy.com) () Miscellaneous Exercise on Chapter 10 Question 1: Find the values of k for which the line is (a) Parallel to the x-axis, (b) Parallel to the y-axis, (c) Passing through the origin. Answer 1: The given

More information

3. Voronoi Diagrams. 3.1 Definitions & Basic Properties. Examples :

3. Voronoi Diagrams. 3.1 Definitions & Basic Properties. Examples : 3. Voronoi Diagrams Examples : 1. Fire Observation Towers Imagine a vast forest containing a number of fire observation towers. Each ranger is responsible for extinguishing any fire closer to her tower

More information

Section A1: Gradients of straight lines

Section A1: Gradients of straight lines Time To study this unit will take you about 10 hours. Trying out and evaluating the activities with your pupils in the class will be spread over the weeks you have planned to cover the topic. 31 Section

More information

Math Modeling in Java: An S-I Compartment Model

Math Modeling in Java: An S-I Compartment Model 1 Math Modeling in Java: An S-I Compartment Model Basic Concepts What is a compartment model? A compartment model is one in which a population is modeled by treating its members as if they are separated

More information

Algebra 2 Common Core Summer Skills Packet

Algebra 2 Common Core Summer Skills Packet Algebra 2 Common Core Summer Skills Packet Our Purpose: Completion of this packet over the summer before beginning Algebra 2 will be of great value to helping students successfully meet the academic challenges

More information

Math 8 Honors Coordinate Geometry part 3 Unit Updated July 29, 2016

Math 8 Honors Coordinate Geometry part 3 Unit Updated July 29, 2016 Review how to find the distance between two points To find the distance between two points, use the Pythagorean theorem. The difference between is one leg and the difference between and is the other leg.

More information

Math Introduction to Advanced Mathematics

Math Introduction to Advanced Mathematics Math 215 - Introduction to Advanced Mathematics Number Theory Fall 2017 The following introductory guide to number theory is borrowed from Drew Shulman and is used in a couple of other Math 215 classes.

More information

Problem Set 1. Solution. CS4234: Optimization Algorithms. Solution Sketches

Problem Set 1. Solution. CS4234: Optimization Algorithms. Solution Sketches CS4234: Optimization Algorithms Sketches Problem Set 1 S-1. You are given a graph G = (V, E) with n nodes and m edges. (Perhaps the graph represents a telephone network.) Each edge is colored either blue

More information

Section 7D Systems of Linear Equations

Section 7D Systems of Linear Equations Section 7D Systems of Linear Equations Companies often look at more than one equation of a line when analyzing how their business is doing. For example a company might look at a cost equation and a profit

More information

Module Four: Connecting Algebra and Geometry Through Coordinates

Module Four: Connecting Algebra and Geometry Through Coordinates NAME: Period: Module Four: Connecting Algebra and Geometry Through Coordinates Topic A: Rectangular and Triangular Regions Defined by Inequalities Lesson 1: Searching a Region in the Plane Lesson 2: Finding

More information

Plot the points (-1,9) (4,-3), estimate (put a dot) where you think the midpoint is

Plot the points (-1,9) (4,-3), estimate (put a dot) where you think the midpoint is Algebra Review while 9 th graders are at Club Getaway 1-1 dist and mid pt cw. p. 4 (1,3,5,6,7,8, Hw p. 5 (1-10) Plot the points (-1,9) (4,-3), estimate (put a dot) where you think the midpoint is Find

More information

Commutative property. Associative property. Distributive property

Commutative property. Associative property. Distributive property Math 4. Class work 4. Algebra Addition Multiplication a+b=b+a Commutative a b=b a a+(b+c)=(a+b)+c Associative a (b c)=(a b) c Distributive a (b+c)=a b + a c a (b c)=a b a c Commutative and associative

More information

Also available in Hardcopy (.pdf): Coordinate Geometry

Also available in Hardcopy (.pdf): Coordinate Geometry Multiple Choice Practice Coordinate Geometry Geometry Level Geometry Index Regents Exam Prep Center Also available in Hardcopy (.pdf): Coordinate Geometry Directions: Choose the best answer. Answer ALL

More information

Exam 1 Format, Concepts, What you should be able to do, and Sample Problems

Exam 1 Format, Concepts, What you should be able to do, and Sample Problems CSSE 120 Introduction to Software Development Exam 1 Format, Concepts, What you should be able to do, and Sample Problems Page 1 of 6 Format: The exam will have two sections: Part 1: Paper-and-Pencil o

More information

Size Transformations in the Coordinate Plane

Size Transformations in the Coordinate Plane Size Transformations in the Coordinate Plane I.e. Dilations (adapted from Core Plus Math, Course 2) Concepts 21-26 Lesson Objectives In this investigation you will use coordinate methods to discover several

More information

VERIFYING PROPERTIES OF GEOMETRIC FIGURES. Ad is a median

VERIFYING PROPERTIES OF GEOMETRIC FIGURES. Ad is a median UNIT NLYTI GEOMETRY VERIFYING PROPERTIES OF GEOMETRI FIGURES Parallelogram Rhombus Quadrilateral E H D F G = D and = D EF FG GH EH I L J Right Triangle Median of a Triangle K b a c d is a median D ltitude

More information

Algebra 1 Review. Properties of Real Numbers. Algebraic Expressions

Algebra 1 Review. Properties of Real Numbers. Algebraic Expressions Algebra 1 Review Properties of Real Numbers Algebraic Expressions Real Numbers Natural Numbers: 1, 2, 3, 4,.. Numbers used for counting Whole Numbers: 0, 1, 2, 3, 4,.. Natural Numbers and 0 Integers:,

More information

Specific Objectives Students will understand that that the family of equation corresponds with the shape of the graph. Students will be able to create a graph of an equation by plotting points. In lesson

More information

Walt Whitman High School SUMMER REVIEW PACKET. For students entering AP CALCULUS BC

Walt Whitman High School SUMMER REVIEW PACKET. For students entering AP CALCULUS BC Walt Whitman High School SUMMER REVIEW PACKET For students entering AP CALCULUS BC Name: 1. This packet is to be handed in to your Calculus teacher on the first day of the school year.. All work must be

More information

Graphing Linear Equations

Graphing Linear Equations Graphing Linear Equations Question 1: What is a rectangular coordinate system? Answer 1: The rectangular coordinate system is used to graph points and equations. To create the rectangular coordinate system,

More information

Arizona Academic Standards

Arizona Academic Standards Arizona Academic Standards This chart correlates the Grade 8 performance objectives from the mathematics standard of the Arizona Academic Standards to the lessons in Review, Practice, and Mastery. Lesson

More information

Repetition Through Recursion

Repetition Through Recursion Fundamentals of Computer Science I (CS151.02 2007S) Repetition Through Recursion Summary: In many algorithms, you want to do things again and again and again. For example, you might want to do something

More information

Midpoint of a Line Segment Pg. 78 # 1, 3, 4-6, 8, 18. Classifying Figures on a Cartesian Plane Quiz ( )

Midpoint of a Line Segment Pg. 78 # 1, 3, 4-6, 8, 18. Classifying Figures on a Cartesian Plane Quiz ( ) UNIT 2 ANALYTIC GEOMETRY Date Lesson TOPIC Homework Feb. 22 Feb. 23 Feb. 24 Feb. 27 Feb. 28 2.1 2.1 2.2 2.2 2.3 2.3 2.4 2.5 2.1-2.3 2.1-2.3 Mar. 1 2.6 2.4 Mar. 2 2.7 2.5 Mar. 3 2.8 2.6 Mar. 6 2.9 2.7 Mar.

More information

FRACTALS ROCK: Investigating The Fractal Tree

FRACTALS ROCK: Investigating The Fractal Tree FRACTALS ROCK: Investigating The Fractal Tree Keyword: Fractal (Fractal Tree) Macros Fractals: A figure generated by repeating a special sequence of steps infinitely often. Fractals often exhibit self-similarity

More information

Friday 18 January 2013 Afternoon

Friday 18 January 2013 Afternoon Friday 18 January 2013 Afternoon AS GCE MATHEMATICS (MEI) 4752/01 Concepts for Advanced Mathematics (C2) QUESTION PAPER * 4 7 3 3 9 7 0 1 1 3 * Candidates answer on the Printed Answer Book. OCR supplied

More information

I can identify, name, and draw points, lines, segments, rays, and planes. I can apply basic facts about points, lines, and planes.

I can identify, name, and draw points, lines, segments, rays, and planes. I can apply basic facts about points, lines, and planes. Page 1 of 9 Are You Ready Chapter 1 Pretest & skills Attendance Problems Graph each inequality. 1. x > 3 2. 2 < x < 6 3. x > 1 or x < 0 Vocabulary undefined term point line plane collinear coplanar segment

More information

(1) Page #1 24 all. (2) Page #7-21 odd, all. (3) Page #8 20 Even, Page 35 # (4) Page #1 8 all #13 23 odd

(1) Page #1 24 all. (2) Page #7-21 odd, all. (3) Page #8 20 Even, Page 35 # (4) Page #1 8 all #13 23 odd Geometry/Trigonometry Unit 1: Parallel Lines Notes Name: Date: Period: # (1) Page 25-26 #1 24 all (2) Page 33-34 #7-21 odd, 23 28 all (3) Page 33-34 #8 20 Even, Page 35 #40 44 (4) Page 60 61 #1 8 all #13

More information

Algebra I Notes Linear Equations and Inequalities in Two Variables Unit 04c

Algebra I Notes Linear Equations and Inequalities in Two Variables Unit 04c Big Idea: Describe the similarities and differences between equations and inequalities including solutions and graphs. Skill: graph linear equations and find possible solutions to those equations using

More information