Elements of 2d Computational Geometry. AI for Gaming Santa Clara, 2016

Size: px
Start display at page:

Download "Elements of 2d Computational Geometry. AI for Gaming Santa Clara, 2016"

Transcription

1 Elements of 2d Computational Geometry AI for Gaming Santa Clara, 2016

2 3d Determinants Absolute value is the volume of the parallelepiped Sign is the orientation

3 2d Orientation A+B+C A+C B+C C A+B A B Sign of determinant a x a y 1 b x b y 1 c x c y 1 depends on the orientation of the points (a x,a y, 1), (b x,b y, 1) and (c x,c y, 1). If (a x,a y ), (b x,b y ), and (c x,c y ) are oriented counterclockwise, then and only then is the determinant positive.

4 Application Do two lines intersect? C B A D C lies on a di erent side of AB than D Signs of determinants are di erent a x a y 1 b x b y 1 c x c y 1 a x a y 1 b x b y 1 d x d y 1 < 0.

5 2d Circles Three points determine a circle If they are collinear, the circle is degenerate with a radius of infinity A B C

6 2d Circles Geometric construction: Draw two chords AB and BC A B C

7 2d Circles Given three points A, B, C Draw cords AB, BC A B Create perpendicular bisectors for each chord By drawing a large enough circle around A and B The intersection is the center of the circle Radius is the distance of center point to one of the three points C

8 2d Circles Determine whether a point is inside a circle If the circle is given by center and radius Calculate distance of point from center and compare with radius If the circle is given by three points Use determinant formula No need to calculate circle first

9 2d Circles Calculate the following determinant a x a y a 2 x + a 2 y 1 b x b y b 2 x + b 2 y 1 c x c y c 2 x + c 2 y 1 d x d y d 2 x + d 2 y 1 = a x d x a y d y (a x d x ) 2 +(a y d y ) 2 b x d x b y d y (b x d x ) 2 +(b y d y ) 2 c x d x c y d y (c x d x ) 2 +(c y d y ) 2 If A, B, C are in counter-clockwise order and the determinant is positive, then D lies inside the circle If A, B, C are in counter-clockwise order and the determinant is negative, then D lies not inside the circle If A, B, C are not in counter-clockwise order and the determinant is negative, then D lies inside the circle If A, B, C are not in counter-clockwise order and the determinant is positive, then D lies not inside the circle

10 Barycentric Coordinates Given three (not collinear) points a, b, c Every point p can be written as p=αa+βb+(1-α-β)c Divides plane into seven areas depending on the signs of the coefficients Α ++- Β +++ P C --+

11 ~p = ~a + ~ b +(1 )~c, ~p ~c = (~a ~c)+ ( ~ b ~c) which implies (~p ~c) (~a ~c) = (~a ~c) (~a ~c)+ ( ~ b ~c) (~a ~c) (~p ~c) ( ~ b ~c) = (~a ~c) ( ~ b ~c)+ ( ~ b ~c) ( ~ b ~c) which gives according to Cramer s rule = = (~p ~c) (~a ~c) ( ~ b ~c) (~a ~c) (~p ~c) ( ~ b ~c) ( ~ b ~c) ( ~ b ~c) (~a ~c) (~a ~c) ( ~ b ~c) (~a ~c) (~a ~c) ( ~ b ~c) ( ~ b ~c) ( ~ b ~c) (~a ~c) (~a ~c) (~p ~c) (~a ~c) (~a ~c) ( ~ b ~c) (~p ~c) ( ~ b ~c) (~a ~c) (~a ~c) ( ~ b ~c) (~a ~c) (~a ~c) ( ~ b ~c) ( ~ b ~c) ( ~ b ~c)

12 Barycentric Coordinates We note that in the preceding formula Only two dot products change if we change point p

13 Lines, Rays, Segments Lines Given by two points a and d d L={(1-t)a+td t real} a

14 Lines, Rays, Segments Ray given by two points d L={(1-t)a+td t >= 0} a

15 Lines, Rays, Segments Segment between two points d a L={(1-t)a+td 0 <= t <= 1}

16 Dot Product v obtuse right angle acute u * v<0 u * v=0 u * v>0 u The dot product can be used for many geometric tests

17 Dot Product v ~u ~v = ~u ~v cos ~u ~u = ~u 2 v ~u ~v = ~v ~u ~u (~v + ~w) = ~u ~v + ~u ~w (r~u) (s~v) = sr(~u ~v) θ d u d=(u v)(u u) -1 u d = u -1 u v= v cos θ

18 Bounding Volumes Sphere Axis Aligned Bounding Box (AABB) Oriented bounding box (OBB) better bound, better culling faster test, less memory

19 AABB Representations min max min widths center radius

20 AABB Intersections Project min and max points on x-axis and y-axis AABB intersects if the projected intervals intersect

21 AABB Intersections Intersection test for min-max representation class AABB: def init (self, mini, maxi): self.mini = mini self.maxi = maxi def str (self): return [{},{}].format(str(self.mini), str(self.maxi) def intersect(self, other): if self.maxx < other.minx or self.minx > self.maxx: return False if self.maxy < other.miny or self.miny > self.maxy: return False return True

22 Intersection Ray Circle Ray given by origin and direction Solve for the points that lie on the outside of the circle {P+td t>0} r C Check whether they lie on the ray d ~p + t ~ d ~c = r (~p + t ~ d ~c) (~p + t ~ d ~c) = r 2 (~m + t ~ d) (~m + t ~ d) = r 2 with ~m = ~p ~c ( ~ d ~d)t 2 + 2(~m ~d)t +(~m ~m r 2 ) = 0 t = (~m ~d) ± q (~m ~d) 2 ~m ~m + r 2 P

23 Intersection Ray Circle Intersect twice Intersect tangentially No intersection False Intersection Ray starts inside

24 Intersection Ray AABB Use intersection with horizontal and vertical slab. If there is no or only one intersection, then the ray cannot intersect the AABB. Horizontal Slab If the intersections do not overlap, then the ray does not intersect the AABB. Vertical Slab

Geometry - Chapter 1 - Corrective #1

Geometry - Chapter 1 - Corrective #1 Class: Date: Geometry - Chapter 1 - Corrective #1 Short Answer 1. Sketch a figure that shows two coplanar lines that do not intersect, but one of the lines is the intersection of two planes. 2. Name two

More information

Elementary Planar Geometry

Elementary Planar Geometry Elementary Planar Geometry What is a geometric solid? It is the part of space occupied by a physical object. A geometric solid is separated from the surrounding space by a surface. A part of the surface

More information

pine cone Ratio = 13:8 or 8:5

pine cone Ratio = 13:8 or 8:5 Chapter 10: Introducing Geometry 10.1 Basic Ideas of Geometry Geometry is everywhere o Road signs o Carpentry o Architecture o Interior design o Advertising o Art o Science Understanding and appreciating

More information

1 www.gradestack.com/ssc Dear readers, ADVANCE MATHS - GEOMETRY DIGEST Geometry is a very important topic in numerical ability section of SSC Exams. You can expect 14-15 questions from Geometry in SSC

More information

Chapter 2: Transformations. Chapter 2 Transformations Page 1

Chapter 2: Transformations. Chapter 2 Transformations Page 1 Chapter 2: Transformations Chapter 2 Transformations Page 1 Unit 2: Vocabulary 1) transformation 2) pre-image 3) image 4) map(ping) 5) rigid motion (isometry) 6) orientation 7) line reflection 8) line

More information

Unit 5: Transformations in the Coordinate Plane

Unit 5: Transformations in the Coordinate Plane Unit 5: Transformations in the Coordinate Plane In this unit, students review the definitions of three types of transformations that preserve distance and angle: rotations, reflections, and translations.

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

Unit 12 Topics in Analytic Geometry - Classwork

Unit 12 Topics in Analytic Geometry - Classwork Unit 1 Topics in Analytic Geometry - Classwork Back in Unit 7, we delved into the algebra and geometry of lines. We showed that lines can be written in several forms: a) the general form: Ax + By + C =

More information

Rational Numbers: Graphing: The Coordinate Plane

Rational Numbers: Graphing: The Coordinate Plane Rational Numbers: Graphing: The Coordinate Plane A special kind of plane used in mathematics is the coordinate plane, sometimes called the Cartesian plane after its inventor, René Descartes. It is one

More information

8.1 Geometric Queries for Ray Tracing

8.1 Geometric Queries for Ray Tracing Fall 2017 CSCI 420: Computer Graphics 8.1 Geometric Queries for Ray Tracing Hao Li http://cs420.hao-li.com 1 Outline Ray-Surface Intersections Special cases: sphere, polygon Barycentric coordinates 2 Outline

More information

Jim Lambers MAT 169 Fall Semester Lecture 33 Notes

Jim Lambers MAT 169 Fall Semester Lecture 33 Notes Jim Lambers MAT 169 Fall Semester 2009-10 Lecture 33 Notes These notes correspond to Section 9.3 in the text. Polar Coordinates Throughout this course, we have denoted a point in the plane by an ordered

More information

Geometry Reasons for Proofs Chapter 1

Geometry Reasons for Proofs Chapter 1 Geometry Reasons for Proofs Chapter 1 Lesson 1.1 Defined Terms: Undefined Terms: Point: Line: Plane: Space: Postulate 1: Postulate : terms that are explained using undefined and/or other defined terms

More information

Analytic Geometry. Pick up the weekly agenda sheet and the packet for the week. Find your vocabulary match. This is your new team member.

Analytic Geometry. Pick up the weekly agenda sheet and the packet for the week. Find your vocabulary match. This is your new team member. Happy New Year! Analytic Geometry Pick up the weekly agenda sheet and the packet for the week. Find your vocabulary match. This is your new team member. Unit 1: Similarity, Congruence & Proofs Vocabulary

More information

Multivariable Calculus

Multivariable Calculus Multivariable Calculus Chapter 10 Topics in Analytic Geometry (Optional) 1. Inclination of a line p. 5. Circles p. 4 9. Determining Conic Type p. 13. Angle between lines p. 6. Parabolas p. 5 10. Rotation

More information

Geometry 1-1. Non-collinear Points not on the same line. Need at least 3 points to be non-collinear since two points are always collinear

Geometry 1-1. Non-collinear Points not on the same line. Need at least 3 points to be non-collinear since two points are always collinear Name Geometry 1-1 Undefined terms terms which cannot be defined only described. Point, line, plane Point a location in space Line a series of points that extends indefinitely in opposite directions. It

More information

Moore Catholic High School Math Department

Moore Catholic High School Math Department Moore Catholic High School Math Department Geometry Vocabulary The following is a list of terms and properties which are necessary for success in a Geometry class. You will be tested on these terms during

More information

11.1 Rigid Motions. Symmetry

11.1 Rigid Motions. Symmetry 11.1 Rigid Motions Rigid Motions We will now take a closer look at the ideas behind the different types of symmetries that we have discussed by studying four different rigid motions. The act of taking

More information

Section 12.1 Translations and Rotations

Section 12.1 Translations and Rotations Section 12.1 Translations and Rotations Any rigid motion that preserves length or distance is an isometry. We look at two types of isometries in this section: translations and rotations. Translations A

More information

Lesson 5: Definition of Rotation and Basic Properties

Lesson 5: Definition of Rotation and Basic Properties Student Outcomes Students know how to rotate a figure a given degree around a given center. Students know that rotations move lines to lines, rays to rays, segments to segments, and angles to angles. Students

More information

Mathematics For Class IX Lines and Angles

Mathematics For Class IX Lines and Angles Mathematics For Class IX Lines and Angles (Q.1) In Fig, lines PQ and RS intersect each other at point O. If, find angle POR and angle ROQ (1 Marks) (Q.2) An exterior angle of a triangle is 110 and one

More information

Term Definition Figure

Term Definition Figure Notes LT 1.1 - Distinguish and apply basic terms of geometry (coplanar, collinear, bisectors, congruency, parallel, perpendicular, etc.) Term Definition Figure collinear on the same line (note: you do

More information

Geometry ~ Chapter 1 Capacity Matrix

Geometry ~ Chapter 1 Capacity Matrix Geometry ~ Chapter 1 Capacity Matrix Learning Targets 1. Drawing and labeling the Geometry Vocabulary 2. Using the distance and midpoint formula 3. Classifying triangles and polygons Section Required Assignments

More information

Geometry Rules. Triangles:

Geometry Rules. Triangles: Triangles: Geometry Rules 1. Types of Triangles: By Sides: Scalene - no congruent sides Isosceles - 2 congruent sides Equilateral - 3 congruent sides By Angles: Acute - all acute angles Right - one right

More information

S56 (5.3) Higher Straight Line.notebook June 22, 2015

S56 (5.3) Higher Straight Line.notebook June 22, 2015 Daily Practice 5.6.2015 Q1. Simplify Q2. Evaluate L.I: Today we will be revising over our knowledge of the straight line. Q3. Write in completed square form x 2 + 4x + 7 Q4. State the equation of the line

More information

UNIT 1: TRANSFORMATIONS IN THE COORDINATE PLANE

UNIT 1: TRANSFORMATIONS IN THE COORDINATE PLANE UNIT 1: TRANSFORMATIONS IN THE COORDINATE PLANE Unit 1: Transformations in the Coordinate Plane In this unit, students review the definitions of three types of transformations that preserve distance and

More information

Geometry: Unit 1: Transformations. Chapter 14 (In Textbook)

Geometry: Unit 1: Transformations. Chapter 14 (In Textbook) Geometry: Unit 1: Transformations Chapter 14 (In Textbook) Transformations Objective: Students will be able to do the following, regarding geometric transformations. Write Transformations Symbolically

More information

Unit 7. Transformations

Unit 7. Transformations Unit 7 Transformations 1 A transformation moves or changes a figure in some way to produce a new figure called an. Another name for the original figure is the. Recall that a translation moves every point

More information

1 Affine and Projective Coordinate Notation

1 Affine and Projective Coordinate Notation CS348a: Computer Graphics Handout #9 Geometric Modeling Original Handout #9 Stanford University Tuesday, 3 November 992 Original Lecture #2: 6 October 992 Topics: Coordinates and Transformations Scribe:

More information

5.3 Angles and Their Measure

5.3 Angles and Their Measure 5.3 Angles and Their Measure 1. Angles and their measure 1.1. Angles. An angle is formed b rotating a ra about its endpoint. The starting position of the ra is called the initial side and the final position

More information

Trigonometry Review Day 1

Trigonometry Review Day 1 Name Trigonometry Review Day 1 Algebra II Rotations and Angle Terminology II Terminal y I Positive angles rotate in a counterclockwise direction. Reference Ray Negative angles rotate in a clockwise direction.

More information

a triangle with all acute angles acute triangle angles that share a common side and vertex adjacent angles alternate exterior angles

a triangle with all acute angles acute triangle angles that share a common side and vertex adjacent angles alternate exterior angles acute triangle a triangle with all acute angles adjacent angles angles that share a common side and vertex alternate exterior angles two non-adjacent exterior angles on opposite sides of the transversal;

More information

CCGPS UNIT 5 Semester 2 COORDINATE ALGEBRA Page 1 of 38. Transformations in the Coordinate Plane

CCGPS UNIT 5 Semester 2 COORDINATE ALGEBRA Page 1 of 38. Transformations in the Coordinate Plane CCGPS UNIT 5 Semester 2 COORDINATE ALGEBRA Page 1 of 38 Transformations in the Coordinate Plane Name: Date: MCC9-12.G.CO.1 Know precise definitions of angle, circle, perpendicular line, parallel line,

More information

Unit 6: Connecting Algebra and Geometry Through Coordinates

Unit 6: Connecting Algebra and Geometry Through Coordinates Unit 6: Connecting Algebra and Geometry Through Coordinates The focus of this unit is to have students analyze and prove geometric properties by applying algebraic concepts and skills on a coordinate plane.

More information

Chapter 10 Similarity

Chapter 10 Similarity Chapter 10 Similarity Def: The ratio of the number a to the number b is the number. A proportion is an equality between ratios. a, b, c, and d are called the first, second, third, and fourth terms. The

More information

Segment Addition Postulate: If B is BETWEEN A and C, then AB + BC = AC. If AB + BC = AC, then B is BETWEEN A and C.

Segment Addition Postulate: If B is BETWEEN A and C, then AB + BC = AC. If AB + BC = AC, then B is BETWEEN A and C. Ruler Postulate: The points on a line can be matched one to one with the REAL numbers. The REAL number that corresponds to a point is the COORDINATE of the point. The DISTANCE between points A and B, written

More information

MAC Module 1 Trigonometric Functions. Rev.S08

MAC Module 1 Trigonometric Functions. Rev.S08 MAC 1114 Module 1 Trigonometric Functions Learning Objectives Upon completing this module, you should be able to: 1. Use basic terms associated with angles. 2. Find measures of complementary and supplementary

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

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

MAKE GEOMETRIC CONSTRUCTIONS

MAKE GEOMETRIC CONSTRUCTIONS MAKE GEOMETRIC CONSTRUCTIONS KEY IDEAS 1. To copy a segment, follow the steps given: Given: AB Construct: PQ congruent to AB 1. Use a straightedge to draw a line, l. 2. Choose a point on line l and label

More information

1-1. Points, Lines, and Planes. Lesson 1-1. What You ll Learn. Active Vocabulary

1-1. Points, Lines, and Planes. Lesson 1-1. What You ll Learn. Active Vocabulary 1-1 Points, Lines, and Planes What You ll Learn Scan the text in Lesson 1-1. Write two facts you learned about points, lines, and planes as you scanned the text. 1. Active Vocabulary 2. New Vocabulary

More information

You ll use the six trigonometric functions of an angle to do this. In some cases, you will be able to use properties of the = 46

You ll use the six trigonometric functions of an angle to do this. In some cases, you will be able to use properties of the = 46 Math 1330 Section 6.2 Section 7.1: Right-Triangle Applications In this section, we ll solve right triangles. In some problems you will be asked to find one or two specific pieces of information, but often

More information

Euclid s Axioms. 1 There is exactly one line that contains any two points.

Euclid s Axioms. 1 There is exactly one line that contains any two points. 11.1 Basic Notions Euclid s Axioms 1 There is exactly one line that contains any two points. Euclid s Axioms 1 There is exactly one line that contains any two points. 2 If two points line in a plane then

More information

Lesson 2: Basic Concepts of Geometry

Lesson 2: Basic Concepts of Geometry : Basic Concepts of Geometry Learning Target I can identify the difference between a figure notation and its measurements I can list collinear and non collinear points I can find the distance / length

More information

GEOMETRY POSTULATES AND THEOREMS. Postulate 1: Through any two points, there is exactly one line.

GEOMETRY POSTULATES AND THEOREMS. Postulate 1: Through any two points, there is exactly one line. GEOMETRY POSTULATES AND THEOREMS Postulate 1: Through any two points, there is exactly one line. Postulate 2: The measure of any line segment is a unique positive number. The measure (or length) of AB

More information

Downloaded from

Downloaded from Lines and Angles 1.If two supplementary angles are in the ratio 2:7, then the angles are (A) 40, 140 (B) 85, 95 (C) 40, 50 (D) 60, 120. 2.Supplementary angle of 103.5 is (A) 70.5 (B) 76.5 (C) 70 (D)

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

Geometry. Topic 1 Transformations and Congruence

Geometry. Topic 1 Transformations and Congruence Geometry Topic 1 Transformations and Congruence MAFS.912.G-CO.1.2 Consider the point A at ( 3, 5). A. Find the coordinates of A, the image of A after the transformation: (, ) (, ). B. What type of transformation

More information

Math 7 Glossary Terms

Math 7 Glossary Terms Math 7 Glossary Terms Absolute Value Absolute value is the distance, or number of units, a number is from zero. Distance is always a positive value; therefore, absolute value is always a positive value.

More information

Point A location in geometry. A point has no dimensions without any length, width, or depth. This is represented by a dot and is usually labelled.

Point A location in geometry. A point has no dimensions without any length, width, or depth. This is represented by a dot and is usually labelled. Test Date: November 3, 2016 Format: Scored out of 100 points. 8 Multiple Choice (40) / 8 Short Response (60) Topics: Points, Angles, Linear Objects, and Planes Recognizing the steps and procedures for

More information

Geometry Basics of Geometry Precise Definitions Unit CO.1 OBJECTIVE #: G.CO.1

Geometry Basics of Geometry Precise Definitions Unit CO.1 OBJECTIVE #: G.CO.1 OBJECTIVE #: G.CO.1 OBJECTIVE Know precise definitions of angle, circle, perpendicular line, parallel line, and line segment, based on the undefined notions of point, line, distance along a line, and distance

More information

Moore Catholic High School Math Department

Moore Catholic High School Math Department Moore Catholic High School Math Department Geometry Vocabulary The following is a list of terms and properties which are necessary for success in a Geometry class. You will be tested on these terms during

More information

Geometry: Semester 1 Midterm

Geometry: Semester 1 Midterm Class: Date: Geometry: Semester 1 Midterm Multiple Choice Identify the choice that best completes the statement or answers the question. 1. The first two steps for constructing MNO that is congruent to

More information

Definitions. You can represent a point by a dot and name it by a capital letter.

Definitions. You can represent a point by a dot and name it by a capital letter. Definitions Name Block Term Definition Notes Sketch Notation Point A location in space that is represented by a dot and has no dimension You can represent a point by a dot and name it by a capital letter.

More information

Term: description named by notation (symbols) sketch an example. The intersection of two lines is a. Any determine a line.

Term: description named by notation (symbols) sketch an example. The intersection of two lines is a. Any determine a line. Term: description named by notation (symbols) sketch an example point line plane Collinear points Examples: Non-collinear points Examples: Coplanar: Examples: Non-coplanar: Examples: The intersection of

More information

Geometry Lesson 1-1: Identify Points, Lines, and Planes Name Hr Pg. 5 (1, 3-22, 25, 26)

Geometry Lesson 1-1: Identify Points, Lines, and Planes Name Hr Pg. 5 (1, 3-22, 25, 26) Geometry Lesson 1-1: Identify Points, Lines, and Planes Name Hr Pg. 5 (1, 3-22, 25, 26) Learning Target: At the end of today s lesson we will be able to successfully name and sketch geometric figures.

More information

CHAPTER - 10 STRAIGHT LINES Slope or gradient of a line is defined as m = tan, ( 90 ), where is angle which the line makes with positive direction of x-axis measured in anticlockwise direction, 0 < 180

More information

Test Review: Geometry I TEST DATE: ALL CLASSES TUESDAY OCTOBER 6

Test Review: Geometry I TEST DATE: ALL CLASSES TUESDAY OCTOBER 6 Test Review: Geometry I TEST DATE: ALL CLASSES TUESDAY OCTOBER 6 Notes to Study: Notes A1, B1, C1, D1, E1, F1, G1 Homework to Study: Assn. 1, 2, 3, 4, 5, 6, 7 Things it would be a good idea to know: 1)

More information

1 Trigonometry. Copyright Cengage Learning. All rights reserved.

1 Trigonometry. Copyright Cengage Learning. All rights reserved. 1 Trigonometry Copyright Cengage Learning. All rights reserved. 1.1 Radian and Degree Measure Copyright Cengage Learning. All rights reserved. Objectives Describe angles. Use radian measure. Use degree

More information

Videos, Constructions, Definitions, Postulates, Theorems, and Properties

Videos, Constructions, Definitions, Postulates, Theorems, and Properties Videos, Constructions, Definitions, Postulates, Theorems, and Properties Videos Proof Overview: http://tinyurl.com/riehlproof Modules 9 and 10: http://tinyurl.com/riehlproof2 Module 9 Review: http://tinyurl.com/module9livelesson-recording

More information

AQA GCSE Further Maths Topic Areas

AQA GCSE Further Maths Topic Areas AQA GCSE Further Maths Topic Areas This document covers all the specific areas of the AQA GCSE Further Maths course, your job is to review all the topic areas, answering the questions if you feel you need

More information

.(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

Introduction to Geometry

Introduction to Geometry Introduction to Geometry Objective A: Problems involving lines and angles Three basic concepts of Geometry are: Points are a single place represented by a dot A Lines are a collection of points that continue

More information

with slopes m 1 and m 2 ), if and only if its coordinates satisfy the equation y y 0 = 0 and Ax + By + C 2

with slopes m 1 and m 2 ), if and only if its coordinates satisfy the equation y y 0 = 0 and Ax + By + C 2 CHAPTER 10 Straight lines Learning Objectives (i) Slope (m) of a non-vertical line passing through the points (x 1 ) is given by (ii) If a line makes an angle α with the positive direction of x-axis, then

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

a) Draw a line through points A and B. What is one symbol or name for it?

a) Draw a line through points A and B. What is one symbol or name for it? Lesson 1A: Geometric Notation Name: Use correct notation when referring to lines, segments, rays, and angles. 1. Lines P A C D Q E F G H I a) Draw a line through points A and. What is one symbol or name

More information

Geometry (H) Worksheet: 1st Semester Review:True/False, Always/Sometimes/Never

Geometry (H) Worksheet: 1st Semester Review:True/False, Always/Sometimes/Never 1stSemesterReviewTrueFalse.nb 1 Geometry (H) Worksheet: 1st Semester Review:True/False, Always/Sometimes/Never Classify each statement as TRUE or FALSE. 1. Three given points are always coplanar. 2. A

More information

NAME DATE PER. GEOMETRY FALL SEMESTER REVIEW FIRST SIX WEEKS PART 1. A REVIEW OF ALGEBRA Find the correct answer for each of the following.

NAME DATE PER. GEOMETRY FALL SEMESTER REVIEW FIRST SIX WEEKS PART 1. A REVIEW OF ALGEBRA Find the correct answer for each of the following. NAME ATE PER. GEOMETRY FALL SEMESTER REVIEW FIRST SIX WEEKS PART 1. A REVIEW OF ALGEBRA Find the correct answer for each of the following. 1. m = Solve for m : m 7 = -13 + m FIRST SIX-WEEKS REVIEW 2. x

More information

Chapter 1-2 Points, Lines, and Planes

Chapter 1-2 Points, Lines, and Planes Chapter 1-2 Points, Lines, and Planes Undefined Terms: A point has no size but is often represented by a dot and usually named by a capital letter.. A A line extends in two directions without ending. Lines

More information

MATHEMATICS 105 Plane Trigonometry

MATHEMATICS 105 Plane Trigonometry Chapter I THE TRIGONOMETRIC FUNCTIONS MATHEMATICS 105 Plane Trigonometry INTRODUCTION The word trigonometry literally means triangle measurement. It is concerned with the measurement of the parts, sides,

More information

ME 111: Engineering Drawing. Geometric Constructions

ME 111: Engineering Drawing. Geometric Constructions ME 111: Engineering Drawing Lecture 2 01-08-2011 Geometric Constructions Indian Institute of Technology Guwahati Guwahati 781039 Geometric Construction Construction of primitive geometric forms (points,

More information

Chapter 1 Tools of Geometry

Chapter 1 Tools of Geometry Chapter 1 Tools of Geometry Goals: 1) learn to draw conclusions based on patterns 2) learn the building blocks for the structure of geometry 3) learn to measure line segments and angles 4) understand the

More information

Geometry Vocabulary. acute angle-an angle measuring less than 90 degrees

Geometry Vocabulary. acute angle-an angle measuring less than 90 degrees Geometry Vocabulary acute angle-an angle measuring less than 90 degrees angle-the turn or bend between two intersecting lines, line segments, rays, or planes angle bisector-an angle bisector is a ray that

More information

Chapter 8. Properties of Triangles and Quadrilaterals. 02/2017 LSowatsky

Chapter 8. Properties of Triangles and Quadrilaterals. 02/2017 LSowatsky Chapter 8 Properties of Triangles and Quadrilaterals 02/2017 LSowatsky 1 8-1A: Points, Lines, and Planes I can Identify and label basic geometric figures. LSowatsky 2 Vocabulary: Point: a point has no

More information

Angles. Classification Acute Right Obtuse. Complementary s 2 s whose sum is 90 Supplementary s 2 s whose sum is 180. Angle Addition Postulate

Angles. Classification Acute Right Obtuse. Complementary s 2 s whose sum is 90 Supplementary s 2 s whose sum is 180. Angle Addition Postulate ngles Classification cute Right Obtuse Complementary s 2 s whose sum is 90 Supplementary s 2 s whose sum is 180 ngle ddition Postulate If the exterior sides of two adj s lie in a line, they are supplementary

More information

Transformations and Isometries

Transformations and Isometries Transformations and Isometries Definition: A transformation in absolute geometry is a function f that associates with each point P in the plane some other point P in the plane such that (1) f is one-to-one

More information

Chapter 1. Essentials of Geometry

Chapter 1. Essentials of Geometry Chapter 1 Essentials of Geometry 1.1 Identify Points, Lines, and Planes Objective: Name and sketch geometric figures so you can use geometry terms in the real world. Essential Question: How do you name

More information

GEOMETRY is the study of points in space

GEOMETRY is the study of points in space CHAPTER 5 Logic and Geometry SECTION 5-1 Elements of Geometry GEOMETRY is the study of points in space POINT indicates a specific location and is represented by a dot and a letter R S T LINE is a set of

More information

Chapter 6.1 Medians. Geometry

Chapter 6.1 Medians. Geometry Chapter 6.1 Medians Identify medians of triangles Find the midpoint of a line using a compass. A median is a segment that joins a vertex of the triangle and the midpoint of the opposite side. Median AD

More information

Answers to practice questions for Midterm 1

Answers to practice questions for Midterm 1 Answers to practice questions for Midterm Paul Hacking /5/9 (a The RREF (reduced row echelon form of the augmented matrix is So the system of linear equations has exactly one solution given by x =, y =,

More information

Section 1-1 Points, Lines, and Planes

Section 1-1 Points, Lines, and Planes Section 1-1 Points, Lines, and Planes I CAN. Identify and model points, lines, and planes. Identify collinear and coplanar points and intersecting lines and planes in space. Undefined Term- Words, usually

More information

Introduction to Transformations. In Geometry

Introduction to Transformations. In Geometry + Introduction to Transformations In Geometry + What is a transformation? A transformation is a copy of a geometric figure, where the copy holds certain properties. Example: copy/paste a picture on your

More information

M2 GEOMETRY REVIEW FOR MIDTERM EXAM

M2 GEOMETRY REVIEW FOR MIDTERM EXAM M2 GEOMETRY REVIEW FOR MIDTERM EXAM #1-11: True or false? If false, replace the underlined word or phrase to make a true sentence. 1. Two lines are perpendicular if they intersect to form a right angle.

More information

Grade IX. Mathematics Geometry Notes. #GrowWithGreen

Grade IX. Mathematics Geometry Notes. #GrowWithGreen Grade IX Mathematics Geometry Notes #GrowWithGreen The distance of a point from the y - axis is called its x -coordinate, or abscissa, and the distance of the point from the x -axis is called its y-coordinate,

More information

Type of Triangle Definition Drawing. Name the triangles below, and list the # of congruent sides and angles:

Type of Triangle Definition Drawing. Name the triangles below, and list the # of congruent sides and angles: Name: Triangles Test Type of Triangle Definition Drawing Right Obtuse Acute Scalene Isosceles Equilateral Number of congruent angles = Congruent sides are of the congruent angles Name the triangles below,

More information

Chapter 11. Parametric Equations And Polar Coordinates

Chapter 11. Parametric Equations And Polar Coordinates Instructor: Prof. Dr. Ayman H. Sakka Chapter 11 Parametric Equations And Polar Coordinates In this chapter we study new ways to define curves in the plane, give geometric definitions of parabolas, ellipses,

More information

Geometry Semester 1 Final Exam Study Guide FCS, Mr. Garcia

Geometry Semester 1 Final Exam Study Guide FCS, Mr. Garcia Name Date Period This is your semester 1 exam review study guide. It is designed for you to do a portion each day until the day of the exam. You may use the following formula to calculate your semester

More information

Term Definition Figure

Term Definition Figure Geometry Unit 1 Packet - Language of Geometry Name: #: Video Notes LT 1.1 - Distinguish and apply basic terms of geometry (coplanar, collinear, bisectors, congruent, parallel, perpendicular, etc.) Term

More information

Geometry. Oklahoma Math Day INSTRUCTIONS:

Geometry. Oklahoma Math Day INSTRUCTIONS: Oklahoma Math Day November 16, 016 Geometry INSTRUCTIONS: 1. Do not begin the test until told to do so.. Calculators are not permitted. 3. Be sure to enter your name and high school code on the answer

More information

2 Geometry Solutions

2 Geometry Solutions 2 Geometry Solutions jacques@ucsd.edu Here is give problems and solutions in increasing order of difficulty. 2.1 Easier problems Problem 1. What is the minimum number of hyperplanar slices to make a d-dimensional

More information

Tools of Geometry 1. X + 9 = 24 2. 25 X = 15 3. X + 3 = -2X -10 4. 3X + 4Y = 2 Place in slope intercept form. 5. Y = ½ X 2 What is the slope? What is the Y- Intercept? Inductive Reasoning is reasoning

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

Objectives: (What You ll Learn) Identify and model points, lines, planes Identify collinear and coplanar points, intersecting lines and planes

Objectives: (What You ll Learn) Identify and model points, lines, planes Identify collinear and coplanar points, intersecting lines and planes Geometry Chapter 1 Outline: Points, Lines, Planes, & Angles A. 1-1 Points, Lines, and Planes (What You ll Learn) Identify and model points, lines, planes Identify collinear and coplanar points, intersecting

More information

no triangle can have more than one right angle or obtuse angle.

no triangle can have more than one right angle or obtuse angle. Congruence Theorems in Action Isosceles Triangle Theorems.3 Learning Goals In this lesson, you will: Prove the Isosceles Triangle Base Theorem. Prove the Isosceles Triangle Vertex Angle Theorem. Prove

More information

Answers. (1) Parallelogram. Remember: A four-sided flat shape where the opposite sides are parallel is called a parallelogram. Here, AB DC and BC AD.

Answers. (1) Parallelogram. Remember: A four-sided flat shape where the opposite sides are parallel is called a parallelogram. Here, AB DC and BC AD. Answers (1) Parallelogram Remember: A four-sided flat shape where the opposite sides are parallel is called a parallelogram. Here, AB DC and BC AD. (2) straight angle The angle whose measure is 180 will

More information

A rotation is a transformation that turns a figure around a point, called the.

A rotation is a transformation that turns a figure around a point, called the. Name: # Geometr: Period Ms. Pierre Date: Rotations Toda s Objective KWBAT represent a rotation as a function of coordinate pairs and rotate a figure in the plane following a rule described in words or

More information

Review Exercise. 1. Determine vector and parametric equations of the plane that contains the

Review Exercise. 1. Determine vector and parametric equations of the plane that contains the Review Exercise 1. Determine vector and parametric equations of the plane that contains the points A11, 2, 12, B12, 1, 12, and C13, 1, 42. 2. In question 1, there are a variety of different answers possible,

More information

Chapter 8.1: Circular Functions (Trigonometry)

Chapter 8.1: Circular Functions (Trigonometry) Chapter 8.1: Circular Functions (Trigonometry) SSMTH1: Precalculus Science and Technology, Engineering and Mathematics (STEM) Strands Mr. Migo M. Mendoza Chapter 8.1: Circular Functions Lecture 8.1: Basic

More information

Postulates, Theorems, and Corollaries. Chapter 1

Postulates, Theorems, and Corollaries. Chapter 1 Chapter 1 Post. 1-1-1 Through any two points there is exactly one line. Post. 1-1-2 Through any three noncollinear points there is exactly one plane containing them. Post. 1-1-3 If two points lie in a

More information

Math 3315: Geometry Vocabulary Review Human Dictionary: WORD BANK

Math 3315: Geometry Vocabulary Review Human Dictionary: WORD BANK Math 3315: Geometry Vocabulary Review Human Dictionary: WORD BANK [acute angle] [acute triangle] [adjacent interior angle] [alternate exterior angles] [alternate interior angles] [altitude] [angle] [angle_addition_postulate]

More information

Unit 1, Lesson 1: Moving in the Plane

Unit 1, Lesson 1: Moving in the Plane Unit 1, Lesson 1: Moving in the Plane Let s describe ways figures can move in the plane. 1.1: Which One Doesn t Belong: Diagrams Which one doesn t belong? 1.2: Triangle Square Dance m.openup.org/1/8-1-1-2

More information