Think About. Unit 5 Lesson 3. Investigation. This Situation. Name: a Where do you think the origin of a coordinate system was placed in creating this

Size: px
Start display at page:

Download "Think About. Unit 5 Lesson 3. Investigation. This Situation. Name: a Where do you think the origin of a coordinate system was placed in creating this"

Transcription

1 Think About This Situation Unit 5 Lesson 3 Investigation 1 Name: Eamine how the sequence of images changes from frame to frame. a Where do ou think the origin of a coordinate sstem was placed in creating this animation? b What point(s) on the shuttle image would ou use in determining how each image was transformed? c Describe the tpes of transformations that appear to have been used in creating the animation. d Computer animations are frequentl used in movies and video games. Are there other applications of computer animation with which ou are familiar? In the investigations of this lesson, ou will learn how to use matrices to perform transformations of two-dimensional shapes and create simple animations. The tools that ou develop have straightforward etensions to work in three dimensions and the methods that are tpicall used in computer animation. Investigation 1 Building and Using Rotation Matrices For the purpose of this lesson, ou can simplif the space shuttle animation b representing the space shuttle and sequence of images with two-dimensional figures similar to the ones shown below. Such simple representations are used when a storboard, or outline, of an animation is developed. As a class, stud the animation created b the interactive geometr custom tool Animate Shuttle. In that animation, the space shuttle performs a rollover maneuver as if in preparation for re-entr. As ou work on the problems of this investigation, look for answers to the following questions: How can a rotation with center at the origin be represented b a matri? How can rotation matrices be used to animate the rotation of two-dimensional shapes? 232 UNIT 3 Coordinate Methods

2 1 One possible coordinate model of the shuttle is shown below. F E(0, 8) D C(2, 4) H G B A(8, 0) a. What are the coordinates for points F and H? For points B and G? b. Find the coordinates of the image of the shuttle model when rotated 180 about the origin. c. Write a smbolic rule (, ) (, ) that gives the coordinates of the image of an point P(, ) under a 180 rotation. d. What is a smbolic rule that gives the coordinates of the image of an point P(, ) under a 90 counterclockwise rotation about the origin? e. How would ou modif our rule in Part d so that it describes a 90 clockwise rotation about the origin? 2 Matri multiplication can be used to epress each of the rotations in Problem 1. To do this, coordinates of points (, ) need to be represented as one-column matrices,. For eample, the one-column or point matri for (-2, 4) is a. Look back at the smbolic rule for a 180 rotation that ou found in Problem 1 Part c. To build a 2 2 matri representation for the 180 rotation, find numbers a, b, c, and d that make this matri equation true. 180 Rotation General Image Matri Point Matri Point Matri a c b d = - - i. Test our rotation matri b using it to find the rotation images of points A(8, 0) and C(2, 4). Compare our image points with those found in Problem 1 Part b. ii. Wh is the general point matri placed to the right of the rotation matri? LESSON 3 Transformations, Matrices, and Animation 233

3 b. Determine the matri for a 90 counterclockwise rotation about the origin. a b c d = - i. Check our rotation matri b using it to find the images of points B(2, 0) and C(2, 4) in Problem 1. ii. Do these image points make sense? c. Geometricall, ou know that a 90 counterclockwise rotation followed b another 90 counterclockwise rotation gives a 180 rotation. See if multipling the matri for the 90 counterclockwise rotation b itself ields the matri for the 180 rotation. d. What do ou notice about the entries of the matrices used to epress these rotations? 3 One advantage of a matri representation of a transformation is that ou can use it quickl to transform an entire shape. Consider AEH = determined b the tips of the shuttle model a. Multipl the matri representation of AEH b the 90 counterclockwise rotation matri. Using the coordinate rule for the 90 counterclockwise rotation, verif that the result of our calculation is the image triangle, A E H. b. When transforming an n-sided polgon using matrices, wh should the coordinate matri of the polgon be the factor on the right? 4 Designing animations often requires use of rotations through man different angles, in addition to those that are multiples of 90. When building matri representations for rotations and other transformations, it is ver useful to know what happens to the points (1, 0) and (0, 1). Diagram I below shows the images of points P(1, 0) and Q(0, 1) under a counterclockwise rotation about the origin. Diagram I Diagram II Q (, ) Q(0, 1) P (, ) 2 2, 2 P' ( 2 ) O P(1, 0) O 1 M P(1, 0) a. Eplain wh the image of point P and the image of point Q will be on a circle of radius 1 with center at the origin. 234 UNIT 3 Coordinate Methods

4 b. Using Diagram II, eplain as precisel as ou can wh the image of point P under the rotation has coordinates ( 2 2, 2 2 ). c. Find the coordinates of point Q. d. Now find the entries of the counterclockwise rotation matri R = a b c d b solving the two matri equations below. Begin b entering the coordinates of point P and point Q in the appropriate column matrices. a b 1 i. c d 0 = CPMP-Tools ii. a c b d 0 1 = iii. So, R =. e. Check that multipling the counterclockwise rotation matri b itself (with entries epressed in radical form) gives the matri for a 90 counterclockwise rotation about the origin that ou found in Problem 2 Part b. 5 Look back at the entries for the counterclockwise rotation matri R and how the were calculated. a. How are the entries of matri R related to the rotation images of P(1, 0) and Q(0, 1)? b. Does the pattern hold for the 180 and 90 rotation matrices ou found in Problem 2? Eplain. 6 A computer or calculator program can be written that will rotate the space shuttle model counterclockwise about the origin using steps of. Stud the Roll Over Algorithm given below. Roll Over Algorithm Step 1. Set up the coordinate matri representing the space shuttle. Step 2. Set up the counterclockwise rotation matri. Step 3. Draw the shuttle. Step 4. Compute and store the coordinates of the shuttle rotated. Step 5. Clear the old shuttle and draw the rotated image. Step 6. Pause. Step 7. Repeat Steps 4 6 as needed. a. Identif the input, processing, and output parts of the Roll Over Algorithm. b. Step 7 is a control command. It controls the action of the algorithm. To make the shuttle rotate all the wa around once, how man times should Steps 4 6 be performed? LESSON 3 Transformations, Matrices, and Animation 235

5 CPMP-Tools 7 The roll over portion of the animation can be created using commands such as those below. Note how assigning names to the shuttle coordinate matri and the rotation matri simplifies the programming. Roll Over Program let shuttle = [[8,0][2,0][2,4][0,4][0,8][0,4][ 2,4][ 2,0][ 8,0][8,0]] let rotmatri = [[0.7071,0.7071][ ,0.7071]] draw shuttle repeat 8 [draw [let shuttle = [rotmatri*shuttle]] pause 500] a. Discuss with our classmates how the commands in this program match corresponding steps in the Roll Over Algorithm. b. Test the program b entering it in the Command window of our interactive geometr software. c. Predict the animation that will be produced b replacing the last three lines of the program b these two lines: draw shuttle repeat 8 [draw [let shuttle = [rotate shuttle 45]] pause 500] Run the program to test our prediction. Make notes of an misunderstandings of programming commands. Summarize the Mathematics In this investigation, ou eplored how to find matri representations for certain rotations and how matrices can be used to create an animation. a Eplain how to use the coordinate rule for a 270 counterclockwise rotation about the origin to find the matri representation for that rotation. Find the matri. b How would ou modif the Roll Over program so that it will rotate the space shuttle clockwise about the origin in steps of? c Describe a sstematic wa of determining the entries of a rotation matri. d The matri is the matri for a 60 clockwise rotation about the origin. Eplain how to use the matri to find a coordinate rule for the image of a point (, ) under this rotation. Be prepared to share our ideas and reasoning with the class. 236 UNIT 3 Coordinate Methods

Unit 5 Lesson 2 Investigation 1

Unit 5 Lesson 2 Investigation 1 Name: Investigation 1 Modeling Rigid Transformations CPMP-Tools Computer graphics enable designers to model two- and three-dimensional figures and to also easil manipulate those figures. For eample, interior

More information

Rational Functions with Removable Discontinuities

Rational Functions with Removable Discontinuities Rational Functions with Removable Discontinuities 1. a) Simplif the rational epression and state an values of where the epression is b) Using the simplified epression in part (a), predict the shape for

More information

Methods. Lesson 2 PRACTICE PROBLEMS Coordinate Models of Transformations

Methods. Lesson 2 PRACTICE PROBLEMS Coordinate Models of Transformations Name: Unit 5 Coordinate Methods Lesson 2 PRACTICE PROBLEMS Coordinate Models of Transformations I can use coordinates to model transformations and investigate their properties. Investigation Investigation

More information

Transformations. which the book introduces in this chapter. If you shift the graph of y 1 x to the left 2 units and up 3 units, the

Transformations. which the book introduces in this chapter. If you shift the graph of y 1 x to the left 2 units and up 3 units, the CHAPTER 8 Transformations Content Summar In Chapter 8, students continue their work with functions, especiall nonlinear functions, through further stud of function graphs. In particular, the consider three

More information

The Marching Cougars Lesson 9-1 Transformations

The Marching Cougars Lesson 9-1 Transformations The Marching Cougars Lesson 9-1 Learning Targets: Perform transformations on and off the coordinate plane. Identif characteristics of transformations that are rigid motions and characteristics of transformations

More information

Rotate. A bicycle wheel can rotate clockwise or counterclockwise. ACTIVITY: Three Basic Ways to Move Things

Rotate. A bicycle wheel can rotate clockwise or counterclockwise. ACTIVITY: Three Basic Ways to Move Things . Rotations object in a plane? What are the three basic was to move an Rotate A biccle wheel can rotate clockwise or counterclockwise. 0 0 0 9 9 9 8 8 8 7 6 7 6 7 6 ACTIVITY: Three Basic Was to Move Things

More information

5.2. Exploring Quotients of Polynomial Functions. EXPLORE the Math. Each row shows the graphs of two polynomial functions.

5.2. Exploring Quotients of Polynomial Functions. EXPLORE the Math. Each row shows the graphs of two polynomial functions. YOU WILL NEED graph paper coloured pencils or pens graphing calculator or graphing software Eploring Quotients of Polnomial Functions EXPLORE the Math Each row shows the graphs of two polnomial functions.

More information

4.2 Start Thinking. 4.2 Warm Up. 4.2 Cumulative Review Warm Up

4.2 Start Thinking. 4.2 Warm Up. 4.2 Cumulative Review Warm Up . Start Thinking La a ardstick at the base of a mirror. Stand at the end of the ardstick so ou are 3 feet from the mirror. Is our reflection the same distance from the mirror? Eplain wh or wh not. Hold

More information

Plot and connect the points in a coordinate plane to make a polygon. Name the polygon.

Plot and connect the points in a coordinate plane to make a polygon. Name the polygon. . Start Thinking Find at least two objects in each of the following categories: circle, square, triangle, and rectangle (nonsquare). Use a table to compare each object of the same categor in the following

More information

Lesson 3. Investigation. Name: a. Use the matrix to find the rotation image of the point (-1, 5).

Lesson 3. Investigation. Name: a. Use the matrix to find the rotation image of the point (-1, 5). Check Unit Your 5 Understanding Lesson 3 Investigation 2 Build a matrix that represents a 135 counterclockwise rotation about the origin. a. Use the matrix to find the rotation image of the point (-1,

More information

LESSON 3.1 INTRODUCTION TO GRAPHING

LESSON 3.1 INTRODUCTION TO GRAPHING LESSON 3.1 INTRODUCTION TO GRAPHING LESSON 3.1 INTRODUCTION TO GRAPHING 137 OVERVIEW Here s what ou ll learn in this lesson: Plotting Points a. The -plane b. The -ais and -ais c. The origin d. Ordered

More information

Name: Date: Per: WARM UP

Name: Date: Per: WARM UP Name: Date: Per: 6.1.1-6.1.3 WARM UP 6-23. In the last three lessons, you have investigated rigid transformations: reflections, rotations, and translations. 1. What happens to a shape when you perform

More information

NUMB3RS Activity: The Center of it All. Episode: Pilot

NUMB3RS Activity: The Center of it All. Episode: Pilot NUMBRS Activit Teacher Page NUMBRS Activit: The Center of it All Topic: Circles Grade Level: 9 - Objective: Eplore the circumcenter and investigate the relationship between the position of the circumcenter

More information

Why? Identify Functions A function is a relationship between input and output. In a 1 function, there is exactly one output for each input.

Why? Identify Functions A function is a relationship between input and output. In a 1 function, there is exactly one output for each input. Functions Stopping Distance of a Passenger Car Then You solved equations with elements from a replacement set. (Lesson -5) Now Determine whether a relation is a function. Find function values. Wh? The

More information

Mirror, Mirror Reflections of Figures on the

Mirror, Mirror Reflections of Figures on the Mirror, Mirror Reflections of Figures on the 4 Coordinate Plane WARM UP Determine each product. 1. 21 3 6 2. 2 3 5 (21) LEARNING GOALS Reflect geometric figures on the coordinate plane. Identif and describe

More information

y = f(x) x (x, f(x)) f(x) g(x) = f(x) + 2 (x, g(x)) 0 (0, 1) 1 3 (0, 3) 2 (2, 3) 3 5 (2, 5) 4 (4, 3) 3 5 (4, 5) 5 (5, 5) 5 7 (5, 7)

y = f(x) x (x, f(x)) f(x) g(x) = f(x) + 2 (x, g(x)) 0 (0, 1) 1 3 (0, 3) 2 (2, 3) 3 5 (2, 5) 4 (4, 3) 3 5 (4, 5) 5 (5, 5) 5 7 (5, 7) 0 Relations and Functions.7 Transformations In this section, we stud how the graphs of functions change, or transform, when certain specialized modifications are made to their formulas. The transformations

More information

turn counterclockwise from the positive x-axis. However, we could equally well get to this point by a 3 4 turn clockwise, giving (r, θ) = (1, 3π 2

turn counterclockwise from the positive x-axis. However, we could equally well get to this point by a 3 4 turn clockwise, giving (r, θ) = (1, 3π 2 Math 133 Polar Coordinates Stewart 10.3/I,II Points in polar coordinates. The first and greatest achievement of modern mathematics was Descartes description of geometric objects b numbers, using a sstem

More information

8.G.1c. Trace triangle ABC onto a piece of paper. Cut out your traced triangle.

8.G.1c. Trace triangle ABC onto a piece of paper. Cut out your traced triangle. ? LESSON 9.3 Properties of Rotations ESSENTIL QUESTION 8.G.1c Verif eperimentall the properties of rotations, reflections, and translations: Parallel lines are taken to parallel lines. lso 8.G.1a, 8.G.1b,

More information

Graphing square root functions. What would be the base graph for the square root function? What is the table of values?

Graphing square root functions. What would be the base graph for the square root function? What is the table of values? Unit 3 (Chapter 2) Radical Functions (Square Root Functions Sketch graphs of radical functions b appling translations, stretches and reflections to the graph of Analze transformations to identif the of

More information

Unit 4 Trigonometry. Study Notes 1 Right Triangle Trigonometry (Section 8.1)

Unit 4 Trigonometry. Study Notes 1 Right Triangle Trigonometry (Section 8.1) Unit 4 Trigonometr Stud Notes 1 Right Triangle Trigonometr (Section 8.1) Objective: Evaluate trigonometric functions of acute angles. Use a calculator to evaluate trigonometric functions. Use trigonometric

More information

Properties of Rotations 8.10.A. Sketch the image of the rotation. Label the images of points A, B, and C as A, B, and C.

Properties of Rotations 8.10.A. Sketch the image of the rotation. Label the images of points A, B, and C as A, B, and C. ? LESSON 1.3 ESSENTIL QUESTION Properties of Rotations How do ou describe the properties of orientation and congruence of rotations? Two-dimensional shapes 8.10. Generalize the properties of orientation

More information

Chapter 9 Transformations

Chapter 9 Transformations Section 9-1: Reflections SOL: G.2 The student will use pictorial representations, including computer software, constructions, and coordinate methods, to solve problems involving smmetr and transformation.

More information

0 COORDINATE GEOMETRY

0 COORDINATE GEOMETRY 0 COORDINATE GEOMETRY Coordinate Geometr 0-1 Equations of Lines 0- Parallel and Perpendicular Lines 0- Intersecting Lines 0- Midpoints, Distance Formula, Segment Lengths 0- Equations of Circles 0-6 Problem

More information

ACTIVITY 9. Learning Targets: 112 SpringBoard Mathematics Geometry, Unit 2 Transformations, Triangles, and Quadrilaterals. Reflection.

ACTIVITY 9. Learning Targets: 112 SpringBoard Mathematics Geometry, Unit 2 Transformations, Triangles, and Quadrilaterals. Reflection. Learning Targets: Perform reflections on and off the coordinate plane. Identif reflectional smmetr in plane figures. SUGGESTED LERNING STRTEGIES: Visualization, Create Representations, Predict and Confirm,

More information

Fair Game Review. Chapter 11. Name Date. Reflect the point in (a) the x-axis and (b) the y-axis. 2. ( 2, 4) 1. ( 1, 1 ) 3. ( 3, 3) 4.

Fair Game Review. Chapter 11. Name Date. Reflect the point in (a) the x-axis and (b) the y-axis. 2. ( 2, 4) 1. ( 1, 1 ) 3. ( 3, 3) 4. Name Date Chapter Fair Game Review Reflect the point in (a) the -ais and (b) the -ais.. (, ). (, ). (, ). (, ) 5. (, ) 6. (, ) Copright Big Ideas Learning, LLC Name Date Chapter Fair Game Review (continued)

More information

Transforming Coordinates

Transforming Coordinates # Transforming Coordinates The drawing window in man computer geometr programs is a coordinate grid. You make designs b specifing the endpoints of line segments. When ou transform a design, the coordinates

More information

Three-Dimensional Coordinates

Three-Dimensional Coordinates CHAPTER Three-Dimensional Coordinates Three-dimensional movies superimpose two slightl different images, letting viewers with polaried eeglasses perceive depth (the third dimension) on a two-dimensional

More information

How can you enlarge or reduce a figure in the coordinate plane? Dilate. ACTIVITY: Comparing Triangles in a Coordinate Plane.

How can you enlarge or reduce a figure in the coordinate plane? Dilate. ACTIVITY: Comparing Triangles in a Coordinate Plane. . Dilations How can ou enlarge or reduce a figure in the coordinate plane? Dilate When ou have our ees checked, the optometrist sometimes dilates one or both of the pupils of our ees. ACTIVITY: Comparing

More information

4 B. 4 D. 4 F. 3. What are some common characteristics of the graphs of cubic and quartic polynomial functions?

4 B. 4 D. 4 F. 3. What are some common characteristics of the graphs of cubic and quartic polynomial functions? .1 Graphing Polnomial Functions COMMON CORE Learning Standards HSF-IF.B. HSF-IF.C.7c Essential Question What are some common characteristics of the graphs of cubic and quartic polnomial functions? A polnomial

More information

Glossary alternate interior angles absolute value function Example alternate exterior angles Example angle of rotation Example

Glossary alternate interior angles absolute value function Example alternate exterior angles Example angle of rotation Example Glossar A absolute value function An absolute value function is a function that can be written in the form, where is an number or epression. alternate eterior angles alternate interior angles Alternate

More information

CMSC 425: Lecture 10 Basics of Skeletal Animation and Kinematics

CMSC 425: Lecture 10 Basics of Skeletal Animation and Kinematics : Lecture Basics of Skeletal Animation and Kinematics Reading: Chapt of Gregor, Game Engine Architecture. The material on kinematics is a simplification of similar concepts developed in the field of robotics,

More information

PROBLEM SOLVING WITH EXPONENTIAL FUNCTIONS

PROBLEM SOLVING WITH EXPONENTIAL FUNCTIONS Topic 21: Problem solving with eponential functions 323 PROBLEM SOLVING WITH EXPONENTIAL FUNCTIONS Lesson 21.1 Finding function rules from graphs 21.1 OPENER 1. Plot the points from the table onto the

More information

3.1 Sequences of Transformations

3.1 Sequences of Transformations Name lass Date 3.1 Sequences of Transformations Essential Question: What happens when ou appl more than one transformation to a figure? Eplore ombining Rotations or Reflections transformation is a function

More information

Up, Down, and All Around Transformations of Lines

Up, Down, and All Around Transformations of Lines Up, Down, and All Around Transformations of Lines WARM UP Identif whether the equation represents a proportional or non-proportional relationship. Then state whether the graph of the line will increase

More information

Translations, Reflections, and Rotations

Translations, Reflections, and Rotations Translations, Reflections, and Rotations The Marching Cougars Lesson 9-1 Transformations Learning Targets: Perform transformations on and off the coordinate plane. Identif characteristics of transformations

More information

[ ] [ ] Orthogonal Transformation of Cartesian Coordinates in 2D & 3D. φ = cos 1 1/ φ = tan 1 [ 2 /1]

[ ] [ ] Orthogonal Transformation of Cartesian Coordinates in 2D & 3D. φ = cos 1 1/ φ = tan 1 [ 2 /1] Orthogonal Transformation of Cartesian Coordinates in 2D & 3D A vector is specified b its coordinates, so it is defined relative to a reference frame. The same vector will have different coordinates in

More information

Mirror, Mirror Reflections of Figures on the

Mirror, Mirror Reflections of Figures on the Mirror, Mirror Reflections of Figures on the 4 Coordinate Plane WARM UP Determine each product. 1. 21 3 6 2. 2 3 5 (21) LEARNING GOALS Reflect geometric figures on the coordinate plane. Identif and describe

More information

Reteaching Golden Ratio

Reteaching Golden Ratio Name Date Class Golden Ratio INV 11 You have investigated fractals. Now ou will investigate the golden ratio. The Golden Ratio in Line Segments The golden ratio is the irrational number 1 5. c On the line

More information

9 3 Rotations 9 4 Symmetry

9 3 Rotations 9 4 Symmetry h 9: Transformations 9 1 Translations 9 Reflections 9 3 Rotations 9 Smmetr 9 1 Translations: Focused Learning Target: I will be able to Identif Isometries. Find translation images of figures. Vocabular:

More information

Worksheet on Line Symmetry & Rotational Symmetry

Worksheet on Line Symmetry & Rotational Symmetry Gr. 9 Math 8. - 8.7 Worksheet on Line Smmetr & Rotational Smmetr Multiple Choice Identif the choice that best completes the statement or answers the question.. Which shapes have at least lines of smmetr?

More information

4. Two Dimensional Transformations

4. Two Dimensional Transformations 4. Two Dimensional Transformations CS362 Introduction to Computer Graphics Helena Wong, 2 In man applications, changes in orientations, sizes, and shapes are accomplished with geometric transformations

More information

Today s class. Geometric objects and transformations. Informationsteknologi. Wednesday, November 7, 2007 Computer Graphics - Class 5 1

Today s class. Geometric objects and transformations. Informationsteknologi. Wednesday, November 7, 2007 Computer Graphics - Class 5 1 Toda s class Geometric objects and transformations Wednesda, November 7, 27 Computer Graphics - Class 5 Vector operations Review of vector operations needed for working in computer graphics adding two

More information

Connecting Algebra and Geometry with Polygons

Connecting Algebra and Geometry with Polygons Connecting Algebra and Geometr with Polgons 15 Circles are reall important! Once ou know our wa around a circle, ou can use this knowledge to figure out a lot of other things! 15.1 Name That Triangle!

More information

Enhanced Instructional Transition Guide

Enhanced Instructional Transition Guide Enhanced Instructional Transition Guide / Unit 04: Suggested Duration: 6 das Unit 04: Geometr: Coordinate Plane, Graphing Transformations, and Perspectives (9 das) Possible Lesson 0 (6 das) Possible Lesson

More information

PARAMETRIC EQUATIONS AND POLAR COORDINATES

PARAMETRIC EQUATIONS AND POLAR COORDINATES 9 ARAMETRIC EQUATIONS AND OLAR COORDINATES So far we have described plane curves b giving as a function of f or as a function of t or b giving a relation between and that defines implicitl as a function

More information

Transformations of Absolute Value Functions. Compression A compression is a. function a function of the form f(x) = a 0 x - h 0 + k

Transformations of Absolute Value Functions. Compression A compression is a. function a function of the form f(x) = a 0 x - h 0 + k - Transformations of Absolute Value Functions TEKS FOCUS VOCABULARY Compression A compression is a TEKS (6)(C) Analze the effect on the graphs of f() = when f() is replaced b af(), f(b), f( - c), and f()

More information

10.7. Polar Coordinates. Introduction. What you should learn. Why you should learn it. Example 1. Plotting Points on the Polar Coordinate System

10.7. Polar Coordinates. Introduction. What you should learn. Why you should learn it. Example 1. Plotting Points on the Polar Coordinate System _7.qxd /8/5 9: AM Page 779 Section.7 Polar Coordinates 779.7 Polar Coordinates What ou should learn Plot points on the polar coordinate sstem. Convert points from rectangular to polar form and vice versa.

More information

Computer Graphics. Geometric Transformations

Computer Graphics. Geometric Transformations Contents coordinate sstems scalar values, points, vectors, matrices right-handed and left-handed coordinate sstems mathematical foundations transformations mathematical descriptions of geometric changes,

More information

What and Why Transformations?

What and Why Transformations? 2D transformations What and Wh Transformations? What? : The geometrical changes of an object from a current state to modified state. Changing an object s position (translation), orientation (rotation)

More information

Computer Graphics. Geometric Transformations

Computer Graphics. Geometric Transformations Computer Graphics Geometric Transformations Contents coordinate sstems scalar values, points, vectors, matrices right-handed and left-handed coordinate sstems mathematical foundations transformations mathematical

More information

Polar Functions Polar coordinates

Polar Functions Polar coordinates 548 Chapter 1 Parametric, Vector, and Polar Functions 1. What ou ll learn about Polar Coordinates Polar Curves Slopes of Polar Curves Areas Enclosed b Polar Curves A Small Polar Galler... and wh Polar

More information

The Graph of an Equation

The Graph of an Equation 60_0P0.qd //0 :6 PM Page CHAPTER P Preparation for Calculus Archive Photos Section P. RENÉ DESCARTES (96 60) Descartes made man contributions to philosoph, science, and mathematics. The idea of representing

More information

Half Turns and Quarter Turns Rotations of Figures on the Coordinate Plane

Half Turns and Quarter Turns Rotations of Figures on the Coordinate Plane Half Turns and Quarter Turns Rotations of Figures on the Coordinate Plane 5 WARM UP 1. Redraw each given figure as described. a. so that it is turned 10 clockwise Before: After: s D b. so that it is turned

More information

Name Date. Go to BigIdeasMath.com for an interactive tool to investigate this exploration. and those of A BC?

Name Date. Go to BigIdeasMath.com for an interactive tool to investigate this exploration. and those of A BC? ame Date.3 Rotations For use with Eploration.3 Essential Question How can ou rotate a figure in a coordinate plane? EXPLORTIO: Rotating a Triangle in a oordinate Plane Go to igideasath.com for an interactive

More information

Investigation Free Fall

Investigation Free Fall Investigation Free Fall Name Period Date You will need: a motion sensor, a small pillow or other soft object What function models the height of an object falling due to the force of gravit? Use a motion

More information

What s the Point? # 2 - Geo Fashion

What s the Point? # 2 - Geo Fashion What s the Point? # 2 - Geo Fashion Graph the points and connect them with line segments. Do not connect points with DNC between them. Start (-4,1) (-5,5) (-2,2) (-4,1) DNC (2,-4) (3,-3) (4,-3) (5,-4)

More information

12.1. Angle Relationships. Identifying Complementary, Supplementary Angles. Goal: Classify special pairs of angles. Vocabulary. Complementary. angles.

12.1. Angle Relationships. Identifying Complementary, Supplementary Angles. Goal: Classify special pairs of angles. Vocabulary. Complementary. angles. . Angle Relationships Goal: Classif special pairs of angles. Vocabular Complementar angles: Supplementar angles: Vertical angles: Eample Identifing Complementar, Supplementar Angles In quadrilateral PQRS,

More information

13.2. General Angles and Radian Measure. What you should learn

13.2. General Angles and Radian Measure. What you should learn Page 1 of 1. General Angles and Radian Measure What ou should learn GOAL 1 Measure angles in standard position using degree measure and radian measure. GOAL Calculate arc lengths and areas of sectors,

More information

5.2 Graphing Polynomial Functions

5.2 Graphing Polynomial Functions Locker LESSON 5. Graphing Polnomial Functions Common Core Math Standards The student is epected to: F.IF.7c Graph polnomial functions, identifing zeros when suitable factorizations are available, and showing

More information

14-1. Translations. Vocabulary. Lesson

14-1. Translations. Vocabulary. Lesson Chapter 1 Lesson 1-1 Translations Vocabular slide, translation preimage translation image congruent figures Adding fied numbers to each of the coordinates of a figure has the effect of sliding or translating

More information

Unit 6 Introduction to Trigonometry The Unit Circle (Unit 6.3)

Unit 6 Introduction to Trigonometry The Unit Circle (Unit 6.3) Unit Introduction to Trigonometr The Unit Circle Unit.) William Bill) Finch Mathematics Department Denton High School Introduction Trig Functions Circle Quadrental Angles Other Angles Unit Circle Periodic

More information

Determine Whether Two Functions Are Equivalent. Determine whether the functions in each pair are equivalent by. and g (x) 5 x 2

Determine Whether Two Functions Are Equivalent. Determine whether the functions in each pair are equivalent by. and g (x) 5 x 2 .1 Functions and Equivalent Algebraic Epressions On September, 1999, the Mars Climate Orbiter crashed on its first da of orbit. Two scientific groups used different measurement sstems (Imperial and metric)

More information

Polynomial and Rational Functions

Polynomial and Rational Functions Polnomial and Rational Functions Figure -mm film, once the standard for capturing photographic images, has been made largel obsolete b digital photograph. (credit film : modification of work b Horia Varlan;

More information

Time To Hit The Slopes. Exploring Slopes with Similar Triangles

Time To Hit The Slopes. Exploring Slopes with Similar Triangles Time To Hit The Slopes Eploring Slopes with Similar Triangles Learning Goals In this lesson, ou will: Use an equation to complete a table of values. Graph an equation using a table of values. Use transformations

More information

Appendix C: Review of Graphs, Equations, and Inequalities

Appendix C: Review of Graphs, Equations, and Inequalities Appendi C: Review of Graphs, Equations, and Inequalities C. What ou should learn Just as ou can represent real numbers b points on a real number line, ou can represent ordered pairs of real numbers b points

More information

3-2. Families of Graphs. Look Back. OBJECTIVES Identify transformations of simple graphs. Sketch graphs of related functions.

3-2. Families of Graphs. Look Back. OBJECTIVES Identify transformations of simple graphs. Sketch graphs of related functions. 3-2 BJECTIVES Identif transformations of simple graphs. Sketch graphs of related functions. Families of Graphs ENTERTAINMENT At some circuses, a human cannonball is shot out of a special cannon. In order

More information

2.8 Distance and Midpoint Formulas; Circles

2.8 Distance and Midpoint Formulas; Circles Section.8 Distance and Midpoint Formulas; Circles 9 Eercises 89 90 are based on the following cartoon. B.C. b permission of Johnn Hart and Creators Sndicate, Inc. 89. Assuming that there is no such thing

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

Transformations of y = x 2

Transformations of y = x 2 Transformations of = Parent Parabola Lesson 11-1 Learning Targets: Describe translations of the parent function f() =. Given a translation of the function f() =, write the equation of the function. SUGGESTED

More information

Matrix Representations

Matrix Representations CONDENSED LESSON 6. Matri Representations In this lesson, ou Represent closed sstems with transition diagrams and transition matrices Use matrices to organize information Sandra works at a da-care center.

More information

Sequences of Transformations

Sequences of Transformations OMMON ORE D P j E E F F D F k D E Locker LESSON 3.1 Sequences of Transformations Name lass Date 3.1 Sequences of Transformations Essential Question: What happens when ou appl more than one transformation

More information

Lesson 6: Using Matrices to Solve Systems of Equations

Lesson 6: Using Matrices to Solve Systems of Equations Opening Exercise In Module 1, ou learned to solve sstems of equations b graphing, and b the substitution and elimination methods. Sstems of equations can also be solved using matrices. Before we use matrices,

More information

Polygons in the Coordinate Plane

Polygons in the Coordinate Plane . Polgons in the Coordinate Plane How can ou find the lengths of line segments in a coordinate plane? ACTIVITY: Finding Distances on a Map Work with a partner. The coordinate grid shows a portion of a

More information

L3 Rigid Motion Transformations 3.1 Sequences of Transformations Per Date

L3 Rigid Motion Transformations 3.1 Sequences of Transformations Per Date 3.1 Sequences of Transformations Per Date Pre-Assessment Which of the following could represent a translation using the rule T (, ) = (, + 4), followed b a reflection over the given line? (The pre-image

More information

2.4. Families of Polynomial Functions

2.4. Families of Polynomial Functions 2. Families of Polnomial Functions Crstal pieces for a large chandelier are to be cut according to the design shown. The graph shows how the design is created using polnomial functions. What do all the

More information

CS F-07 Objects in 2D 1

CS F-07 Objects in 2D 1 CS420-2010F-07 Objects in 2D 1 07-0: Representing Polgons We want to represent a simple polgon Triangle, rectangle, square, etc Assume for the moment our game onl uses these simple shapes No curves for

More information

(0, 2) y = x 1 2. y = x (2, 2) y = 2x + 2

(0, 2) y = x 1 2. y = x (2, 2) y = 2x + 2 .5 Equations of Parallel and Perpendicular Lines COMMON CORE Learning Standards HSG-GPE.B.5 HSG-GPE.B. Essential Question How can ou write an equation of a line that is parallel or perpendicular to a given

More information

Essential Question: What are the ways you can transform the graph of the function f(x)? Resource Locker. Investigating Translations

Essential Question: What are the ways you can transform the graph of the function f(x)? Resource Locker. Investigating Translations Name Class Date 1.3 Transformations of Function Graphs Essential Question: What are the was ou can transform the graph of the function f()? Resource Locker Eplore 1 Investigating Translations of Function

More information

Developed in Consultation with Tennessee Educators

Developed in Consultation with Tennessee Educators Developed in Consultation with Tennessee Educators Table of Contents Letter to the Student........................................ Test-Taking Checklist........................................ Tennessee

More information

Transformations using matrices

Transformations using matrices Transformations using matrices 6 sllabusref eferenceence Core topic: Matrices and applications In this cha 6A 6B 6C 6D 6E 6F 6G chapter Geometric transformations and matri algebra Linear transformations

More information

Systems of Linear Equations

Systems of Linear Equations Sstems of Linear Equations Gaussian Elimination Tpes of Solutions A linear equation is an equation that can be written in the form: a a a n n b The coefficients a i and the constant b can be real or comple

More information

2.3. Horizontal and Vertical Translations of Functions. Investigate

2.3. Horizontal and Vertical Translations of Functions. Investigate .3 Horizontal and Vertical Translations of Functions When a video game developer is designing a game, she might have several objects displaed on the computer screen that move from one place to another

More information

Transforming Linear Functions

Transforming Linear Functions COMMON CORE Locker LESSON 6. Transforming Linear Functions Name Class Date 6. Transforming Linear Functions Essential Question: What are the was in which ou can transform the graph of a linear function?

More information

About Finish Line New Jersey Math 5

About Finish Line New Jersey Math 5 Table of COntents About Finish Line New Jerse Math Unit : Big Ideas from Grade Lesson.NBT., Multipling and Dividing Whole Numbers [connects to.nbt., ] Lesson.NF., Understanding Decimals [connects to.nbt..a,

More information

Rotations. Essential Question How can you rotate a figure in a coordinate plane?

Rotations. Essential Question How can you rotate a figure in a coordinate plane? 11.3 Rotations Essential Question How can ou rotate a figure in a coordinate plane? Rotating a Triangle in a oordinate lane ONSTRUTING VILE RGUMENTS To be proficient in math, ou need to use previousl established

More information

1.2. Characteristics of Polynomial Functions. What are the key features of the graphs of polynomial functions?

1.2. Characteristics of Polynomial Functions. What are the key features of the graphs of polynomial functions? 1.2 Characteristics of Polnomial Functions In Section 1.1, ou eplored the features of power functions, which are single-term polnomial functions. Man polnomial functions that arise from real-world applications

More information

Two Dimensional Viewing

Two Dimensional Viewing Two Dimensional Viewing Dr. S.M. Malaek Assistant: M. Younesi Two Dimensional Viewing Basic Interactive Programming Basic Interactive Programming User controls contents, structure, and appearance of objects

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

Understand the Slope-Intercept Equation for a Line

Understand the Slope-Intercept Equation for a Line Lesson Part : Introduction Understand the Slope-Intercept Equation for a Line Focus on Math Concepts CCLS 8.EE..6 How can ou show that an equation in the form 5 mx b defines a line? You have discovered

More information

It s Not Complex Just Its Solutions Are Complex!

It s Not Complex Just Its Solutions Are Complex! It s Not Comple Just Its Solutions Are Comple! Solving Quadratics with Comple Solutions 15.5 Learning Goals In this lesson, ou will: Calculate comple roots of quadratic equations and comple zeros of quadratic

More information

Evaluate and Graph Polynomial Functions

Evaluate and Graph Polynomial Functions 5.2 Evaluate and Graph Polnomial Functions Before You evaluated and graphed linear and quadratic functions. Now You will evaluate and graph other polnomial functions. Wh? So ou can model skateboarding

More information

Contents COORDINATE METHODS REGRESSION AND CORRELATION

Contents COORDINATE METHODS REGRESSION AND CORRELATION Contents UNIT 3 UNIT 4 COORDINATE METHODS Lesson 1 A Coordinate Model of a Plane.............. 162 Investigations 1 Representing Geometric Ideas with Coordinates............... 164 2 Reasoning with Slopes

More information

Foundation Check In Straight line graphs

Foundation Check In Straight line graphs Foundation Check In - 7.0 Straight line graphs. Sketch the graph of = 3 5 on the grid. 6-6 - 0-0 6 - - -6. The point (p, 0) lies on the line with equation = + 3. Write down the value of p. 3. Which of

More information

Name Date. using the vector 1, 4. Graph ABC. and its image. + to find the image

Name Date. using the vector 1, 4. Graph ABC. and its image. + to find the image _.1 ractice 1. Name the vector and write its component form. K J. The vertices of, 3, 1,, and 0, 1. Translate using the vector 1,. Graph and its image. are ( ) ( ) ( ) 3. Find the component form of the

More information

1.5 LIMITS. The Limit of a Function

1.5 LIMITS. The Limit of a Function 60040_005.qd /5/05 :0 PM Page 49 SECTION.5 Limits 49.5 LIMITS Find its of functions graphicall and numericall. Use the properties of its to evaluate its of functions. Use different analtic techniques to

More information

9.4. Perform Rotations. Draw a rotation. STEP 1 Draw a segment from A to P. STEP 2 Draw a ray to form a 1208 angle with } PA.

9.4. Perform Rotations. Draw a rotation. STEP 1 Draw a segment from A to P. STEP 2 Draw a ray to form a 1208 angle with } PA. 40 40 50 30 9.4 erform otations efore You rotated figures about the origin. Now You will rotate figures about a point. Wh? So ou can classif transformations, as in Es. 3 5. Ke Vocabular center of rotation

More information

20 Calculus and Structures

20 Calculus and Structures 0 Calculus and Structures CHAPTER FUNCTIONS Calculus and Structures Copright LESSON FUNCTIONS. FUNCTIONS A function f is a relationship between an input and an output and a set of instructions as to how

More information

Module 2, Section 2 Graphs of Trigonometric Functions

Module 2, Section 2 Graphs of Trigonometric Functions Principles of Mathematics Section, Introduction 5 Module, Section Graphs of Trigonometric Functions Introduction You have studied trigonometric ratios since Grade 9 Mathematics. In this module ou will

More information

8.6 Three-Dimensional Cartesian Coordinate System

8.6 Three-Dimensional Cartesian Coordinate System SECTION 8.6 Three-Dimensional Cartesian Coordinate Sstem 69 What ou ll learn about Three-Dimensional Cartesian Coordinates Distance and Midpoint Formulas Equation of a Sphere Planes and Other Surfaces

More information

Representations of Transformations

Representations of Transformations ? L E S S N 9.4 Algebraic Representations of Transformations ESSENTIAL QUESTIN Algebraic Representations of Translations The rules shown in the table describe how coordinates change when a figure is translated

More information