Chapter 13 Vertex and Coordinate System

Size: px
Start display at page:

Download "Chapter 13 Vertex and Coordinate System"

Transcription

1 [100] 013 revised on cemmath The Simple is the Best Chapter 13 Vertex and Coordinate System 13-1 Class vertex 13-2 Operations for Vertices 13-3 Member Functions for Vertices 13-4 Class csys 13-5 Application Examples 13-6 Summary The class vertex is very useful in handling geometry in the threedimensional space. For example, mesh generation can be carried out by using vertex arrays. This leads to an introduction of another important data type csys which represents a coordinate system. In this chapter, we discuss data types of vertex and csys. Section 13-1 Class vertex Data Structure of Vertex. The vertex in two-dimension or in threedimension is defined as where are the unit vectors in the Cartesian coordinates, and is assumed in two-dimensional space. In Cemmath, the vertex is denoted by v = < x, y > v = < x, y, z > where are double data. In Cemmath, all the vertex data are stored as the 1

2 three-dimensional data. The default format for displaying vertices is < %12.4g %12.4g %12.4g > which can be changed by vertex.format( string ) This can be confirmed by the following Cemmath commands %> default display #> x = 1;; y = pi;; z = sqrt(2);; #> v = <x,y,z>; #> vertex.format(" %15.6e, %15.6e, %15.6e"); v; #> vertex.format("< %12.4g %12.4g %12.4g >"); v; v = < > v = e+000, e+000, e+000 v = < > Writing Coordinate System. The principal coordinate systems are the Cartesian (rectangular), cylindrical and spherical coordinate systems. The polar coordinate system is considered to be the cylindrical coordinate system with. The global Cartesian coordinate is the default coordinate and is designated <x,y,z, rec> which is the same as <x,y,z> // the default writing system is always Cartesian The polar coordinate or the cylindrical coordinate defined as can be applied to write a vertex < r,t, cyl > < r,t,z, cyl > // this is the standard form 2

3 Also, the spherical coordinate defined as can be utilized to write a vertex < R,P,T, sph > // this is the standard Reading Coordinate System. Any point in the global Cartesian coordinate can be read from the cylindrical and spherical coordinate systems by < x,y,z >.cyl < x,y,z >.sph to get and values. For example, #> < 1,1,1 >.cyl ; #> < 1,1,1 >.sph ; result in ans = < > ans = < > At present, it is noteworthy that the angle is written in radian instead of degree. Of course, such a regulation can be easily changed as can be seen later. Conversion between Coordinate Systems. Any vertex written in one coordinate system can be converted to a vertex in another coordinate system by < double,double,double, w_csys >.r_csys < vertex, w_csys >.r_csys < double,double,double, wa_csys[i] >.ra_csys[j] < vertex, wa_csys[i] >.ra_csys[j] where w_csys represents a writing coordinate system, and r_csys a reading coordinate system. In addition, wa_csys represents an array of csys. Then, 3

4 one can easily note that whenever the writing and reading coordinate systems are identical, e.g. < double,double,double, w_csys >. w_csys < double,double,double, wa_csys[i] >. ra_csys[j] are always the same as < double,double,double > The notation in Cemmath is very concise and thus will help users to exploit various coordinate systems with ease. Coordiate Values. Any vertex can be interpreted in one of the Cartesian, cylindrical/polar and spherical coordinates. In Cemmath, the specific coordinate values are designated v.x, v.y, v.z v.r, v.t, v.z v.r, v.p, v.t // ( x, y, z ) for the Cartesian coordinate // ( r, t, z ) for the cylindrical coordinate // ( R, P, T ) for the spherical coordinate It should be noted that the angle system is by default csys.rad based on the radian system in both reading and writing modes. The angle system can be changed by employing degree coordinate system, i.e. csys.deg as can be seen later. An example is as follows. %> coordinate values #> v = < 1,1,1 > ; #> v.x; v.y; v.z; // Cartesian #> v.r; v.t; v.z; // cylindrical #> v.r; v.p; v.t; // spherical v = < > ans = 1 ans = 1 ans = 1 ans = ans = ans = 1 ans =

5 ans = ans = It is also possible to change the specific coordinate value. For example, %> coordinate values #> v = < 1,1,1 > ; #> v.r = 3 ; v = < > v = < > Note that changing the radius in the spherical coordinate does not change the azimuthal and the cone angles. This is true for all other coordinate values, i.e. only one spatial coordinate can be changed by component assignment in each coordinate system. Compound Operations. Compound operations for the vertex elements are very useful to manipulate the positions at the three-dimensional space. For example, a vertex at can be moved to just by v.t += dt. Available compound operations are v.x += d v.x -= d v.x *= d v.x /= d v.x ^= d v.y += d v.y -= d v.y *= d v.y /= d v.y ^= d v.z += d v.z -= d v.z *= d v.z /= d v.z ^= d v.r += d v.r -= d v.r *= d v.r /= d v.r ^= d v.t += d v.t -= d v.t *= d v.t /= d v.t ^= d v.r += d v.r -= d v.r *= d v.r /= d v.r ^= d v.p += d v.p -= d v.p *= d v.p /= d v.p ^= d v.t += d v.t -= d v.t *= d v.t /= d v.t ^= d Examples are %> compound operations #> csys.rad; #> vx = < 2,0.5,1, sph >;; vx.sph ; #> v = vx;; v.r += 1;; v.sph ; #> v = vx;; v.p += 1;; v.sph ; #> v = vx;; v.t += 1;; v.sph ; 5

6 vx = < > ans = < > ans = < > ans = < > ans = < > Section 13-2 Operations for Vertices Binary Operations. Binary operations between vertices are discussed by using two vertices a = < a1, a2, a3 > b = < b1, b2, b3 > Then, binary operations between vertices are defined a + b = < a1+b1, a2+b2, a3+b3 > = a.+ b a b = < a1-b1, a2-b2, a3-b3 > = a.- b a * b = a1*b1 + a2*b2 + a3*b3 a ^ b = < a2*b3-a3*b2, a3*b1-a1*b3, a1*b2-a2*b1 > a.* b = < a1*b1, a2*b2, a3*b3 > a.^ b = < a1^b1, a2^b2, a3^b3 > a./ b = < a1/b1, a2/b2, a3/b3 > a. \ b = < b1/a1, b2/a2, b3/a3 > // element-by-element Examples are %> binary operations #> <1,2,3> + <3,4,5> ; ans = < > #> <1,2,3> * <3,4,5> ; ans = 26 #> <1,2,3> ^ <3,4,5> ; ans = < > 6

7 Note that multiplication of two vertices (i.e. 3D vectors) produces double data not of vertex. Also, note that the hat ^ operator corresponds to the cross product between vertices. These operations are consistent with the typical vector operations In particular, the relational operators are defined a == b is true if a1-b1 + a2-b2 + a3-b3 <= meps a!= b is true if a1-b1 + a2-b2 + a3-b3 > meps a > b is true if a1 > b1, a2 > b2, a3 > b3 a < b is true if a1 < b1, a2 < b2, a3 < b3 a >= b is true if a1 >= b1, a2 >= b2, a3 >= b3 a <= b is true if a1 <= b1, a2 <= b2, a3 <= b3 where meps is a priori prescribed small number. A few examples are as follows. %> binary operations #> <1,2,3> == <3,4,5> ; #> <1,2,3>!= <3,4,5> ; #> <1,2,3> > <3,4,5> ; #> <1,2,3> < <3,4,5> ; #> <1,2,3> >= <3,4,5> ; #> <1,2,3> <= <3,4,5> ; ans = 0 ans = 1 ans = 0 ans = 1 ans = 0 ans = 1 7

8 Binary Operations with double Data. Binary operations between vertices and double data are performed by upgrading double to vertex, i.e. a double data is considered to be a vertex with all the identical components. In summary, bindary operations for vertices are listed as follows v1 == v2 v1 == s s == v2 v1!= v2 v1 > v2 v1 < v2 v1 >= v2 v1 <= v2 v1!= s v1 > s v1 < s v1 >= s v1 <= s s!= v2 s > v2 s < v2 s >= v2 s <= v2 v1 + v2 v1 + s s + v2 v1 - v2 v1 - s s - v2 v1 * v2 v1 * s s * v2 v1 ^ v2 v1 / s s \ v2 v1.+ v2 v1.+ s s.+ v2 v1.- v2 v1.- s s.- v2 v1.* v2 v1.* s s.* v2 v1.^ v2 v1.^ s s.^ v2 v1./ v2 v1./ s v1.\ v2 s.\ v2 Compound Operations. Compound operations for vertices are as follows. v += v2 v -= v2 v ^= v2 v += s v -= s v *= s v /= s Tensor Operations. Vectors in physics, e.g. force, can be also described by vertices in 3D space. In Cemmath, the second-order tensor in physics is treated as a matrix. Then, two vertices, or equivalently two vectors a = < a1, a2, a3 > b = < b1, b2, b3 > 8

9 can be used to define tensor product and tensor division a ** b = [ a1*b1, a2*b1, a3*b1 ] [ a1*b2, a2*b2, a3*b2 ] [ a1*b3, a2*b3, a3*b3 ] a %% b = [ a1/b1, a2/b1, a3/b1 ] [ a1/b2, a2/b2, a3/b2 ] [ a1/b3, a2/b3, a3/b3 ] These operators can be utilized to calculate, for example since we can write the above as df %% da. In addition, the typical multiplication in continuum mechanics such as vector*tensor and tensor*vector can be implemented in Cemmath vertex * matrix matrix * vertex which represent the following operations 9

10 An example for tensor operations is given below. %> tensor operations #> I = < 1,0,0 >;; J = < 0,1,0 >;; K = < 0,0,1 >;; #> va = <1,2,3>; vb = <3,4,5>; va = < > vb = < > #> C = va ** vb ; C = [ ] [ ] [ ] #> D = va %% vb ; D = [ ] [ ] [ ] #> I * D; J * D; K * D; ans = < > ans = < > ans = < > #> D * I; D * J; D * K; ans = < > ans = < > ans = < > Section 13-3 Member Functions for Vertices Member Functions. Avaliable member functions.xrot(t).yrot(t).zrot(t).xrotd(t) rotation around the x-axis rotation around the y-axis rotation around the z-axis rotation around the x-axis in degree 10

11 .yrotd(t) rotation around the y-axis in degree.zrotd(t) rotation around the z-axis in degree.unit normalize by the magnitude.trun truncate.plot plot in 3D space.abs/norm the same as.r.symm(vp) symmetric position with respect to vertex vp are employed to treat vertices in a variety of ways. Section 13-4 Class csys In this section, we discuss the class csys to describe local coordinate system in contrast to the global coordinate systems. Principal Coordinate Systems. The global principal coordinate systems (i.e. the rectangular, cylindrical and spherical) should be treated as special csys. This allows that %> (M #Example ) principal spherical system #> csys.sph; to represent ans = 'spherical' local coordinate system origin = < > dir cosine = [ ] [ ] [ ] Local Coordinate Systems. A local coordinate system is composed of two elements with respect to the global Cartesian coordinate. The first is the origin, and the second is the direction cosines. In the global Cartesian coordinate, the direction cosine of the -axis of a local coordinate can be written as. Similary, the and axes can be denoted by and, respectively. Also, the 11

12 orthogonality requires that whenever is the Kronecker delta. Then, the mathematical definition of a local orthogonal coordinate system is where the origin of a local coordinate system is represented by a vertex, and the direction cosine of a local coordinate system is represented by a matrix of dimension. Then, the coordinate in the local coordinate can be identified as the coordinate in the global Cartesian coordinate. The syntax to create a local coordinate system with an origin at vertex vorg is csys.rec ( vorg, vn1,vn2 ) csys.cyl ( vorg, vn1,vn2 ) csys.sph ( vorg, vn1,vn2 ) or equivalently csys ( 1, vorg, vn1,vn2 ) csys ( 2, vorg, vn1,vn2 ) csys ( 3, vorg, vn1,vn2 ) where the integers 1,2 and 3 denote the rectangular, cylindrical and spherical coordinate, respectively. In the above, two vertices vn1,vn2 are used to generate direction cosines An Example of Local Coordinate Systems. Let us consider a simple example of a local coordinate system by the following Cemmath command %> local coordinate system #> cs1 = csys.cyl( <3,1>, <1,1>, <-1,2>); cs1 = 'cylindrical' local coordinate system 12

13 origin = < > dir cosine = [ ] [ ] [ ] This local coordinate system is shown in Figure 1. Figure 1 A local coordinate system Then, it is easy to find that the point P(1,1,0) in the global coordinate is interpreted to be in the local cylindrical coordinate system. Also the point Q(2,2,0) in the global coordinate is interpreted to be the local cylindrical coordinate system. This can be confirmed by in #> <1,1,0>.cs1 ; // <2, pi*3/4, 0> #> <2,2,0>.cs1 ; // <1.414, pi/2, 0> #> <sqrt(2),pi/2,0, cs1> ; // <2, 2, 0> ans = < > ans = < > ans = < > In the above, writing and reading with respect to a local coordinate system are treated very concisely. Class Functions of csys. Several class functions are 13

14 csys.rec // csys.rectangular, csys.cart, csys.cartesian csys.cyl // csys.cylindrical, csys.polar csys.sph // csys.spherical csys.deg // angles in degree csys.rad // angles in radian (default) csys.pass180/passpi // pass 180 degree, i.e. 0 <= theta < 360 csys.pass0 // pass 0 degree, i.e < theta <= 180 When csys.deg is executed, the degree is adopted to be the angle system. This can be confirmed by %> angle system #> csys.deg; < 1,45,0, cyl >; #> csys.rad; < 1,pi/4,0, cyl >; // angle in degree. csys.deg is activated ans = < > // angle in radian. csys.rad is activated ans = < > The range of angle can be defined in two different ways The first case passes line and the second case passes line. In this regard, two commands csys.pass180/passpi and csys.pass0 can be used to select the range of angle. The default system is csys.pass0, i.e. is assumed. This argument can be confirmed by %> angle range #> csys.pass180; < 1,-1,0 >.cyl; #> csys.pass0; < 1,-1,0 >.cyl; // angle range, 0 <= radian < 2*pi is activated ans = < > // angle range, -pi < radian <= pi, is activated ans = < > Member Functions of csys. Several member functions are.plot // plot coordinate system 14

15 .org.cos // origin of a local coordinate system // direction cosine of a a local coordinate system The origin of a local coordinate system can be changed via member function org. An example is as follows. %> change origin #> cs2 = csys.cyl( <3,1>, <1,1>, <-1,2>); #> cs2.org = < 5,4,7 >; #> cs2; cs2 = 'cylindrical' local coordinate system origin = < > dir cosine = [ ] [ ] [ ] ans = < > cs2 = 'cylindrical' local coordinate system origin = < > dir cosine = [ ] [ ] [ ] However, direction cosine cannot be modified since the orthogonality of the direction cosine need to be preserved. In later version of Cemmath, we will upgrade this part. Referring can be done by %> change origin #> cs2 = csys.cyl( <3,1>, <1,1>, <-1,2>); #> cs2.cos; ans = [ ] [ ] [ ] Section 13-5 Application Examples 15

16 Center of a Triangle. A circle enclosing a triangle is found by vertex operations as follows. %> A circle enclosing a triangle #> va=<3,5,7>; vb=<-1,2,-5>; vc=<4,-6,1>; #> Radius = 0; #> vg=(va+vb+vc)/3; // geometric center va = vb-va; vb = vc-va; vn = va^vb; vx = vn^va; dt = 0.5*((vb-va)*vb)/(vx*vb); vr = 0.5*va+dt*vx; // vr = va/2+t*vx, vr-(vb/2) should be orthogoanal to vb if(radius > 1.e-10) { dt = sqrt( (Radius*Radius-vr*vr)/(vn*vn) ); vr = vr + dt*vn; } #> vcen = va+vr ; #> (vcen-va).abs; #> (vcen-vb).abs; #> (vcen-vc).abs ; // vcen = < > ans = ans = ans = At the end of commands, it is confirmed that the point vcen is indeed the center of a triangle. Array of Vertex. A number of vertices can be created by an array of vertex, and they can be used to generate meshes. An example is to make an annular mesh as follows. %> Vertex array to generate annular mesh 16

17 #> vertex V[50]; #> csys.deg; #> for.i(0,4) { r = *i;; for.j(0,9) { t = 36*j;; V[10*i+j] = < r,t, cyl >;; } } #> V; V = vertex [50] [0] = < > [1] = < > [2] = < > [3] = < > [18] = < > [19] = < > and more... (50 elements) Section 13-6 Summary Class Functions of vertex. vertex.format( string ) Conversion between Coordinate Systems. Any vertex written in one coordinate system can be converted to a vertex in another coordinate system by < double,double,double, w_csys >.r_csys < vertex, w_csys >.r_csys Member Functions of vertex..xrot(t).yrot(t).zrot(t).xrotd(t) rotation around the x-axis rotation around the y-axis rotation around the z-axis rotation around the x-axis in degree 17

18 .yrotd(t) rotation around the y-axis in degree.zrotd(t) rotation around the z-axis in degree.unit normalized by the magnitude.trun truncate.plot/plot3 plot in 3D space.abs/norm the same as.r.symm(vp) symmetric position with respect to vertex vp Class Functions of csys. csys.rec // csys.rectangular, csys.cart, csys.cartesian csys.cyl // csys.cylindrical, csys.polar csys.sph // csys.spherical csys.deg // angles in degree csys.rad // angles in radian (default) csys.pass180/passpi // pass 180 degree, i.e. 0 <= theta < 360 csys.pass0 // pass 0 degree, i.e < theta <=180 csys.rec ( vorg, vn1,vn2 ) csys.cyl ( vorg, vn1,vn2 ) csys.sph ( vorg, vn1,vn2 ) Member Functions of csys..plot/plot3.org.cos // plot coordinate system // origin of a local coordinate system // direction cosine of a local coordinate system // // end of file //

A VERTICAL LOOK AT KEY CONCEPTS AND PROCEDURES GEOMETRY

A VERTICAL LOOK AT KEY CONCEPTS AND PROCEDURES GEOMETRY A VERTICAL LOOK AT KEY CONCEPTS AND PROCEDURES GEOMETRY Revised TEKS (2012): Building to Geometry Coordinate and Transformational Geometry A Vertical Look at Key Concepts and Procedures Derive and use

More information

Fall 2016 Semester METR 3113 Atmospheric Dynamics I: Introduction to Atmospheric Kinematics and Dynamics

Fall 2016 Semester METR 3113 Atmospheric Dynamics I: Introduction to Atmospheric Kinematics and Dynamics Fall 2016 Semester METR 3113 Atmospheric Dynamics I: Introduction to Atmospheric Kinematics and Dynamics Lecture 5 August 31 2016 Topics: Polar coordinate system Conversion of polar coordinates to 2-D

More information

ü 12.1 Vectors Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section.

ü 12.1 Vectors Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section. Chapter 12 Vector Geometry Useful Tip: If you are reading the electronic version of this publication formatted as a Mathematica Notebook, then it is possible to view 3-D plots generated by Mathematica

More information

A VERTICAL LOOK AT KEY CONCEPTS AND PROCEDURES GEOMETRY. Texas Education Agency

A VERTICAL LOOK AT KEY CONCEPTS AND PROCEDURES GEOMETRY. Texas Education Agency A VERTICAL LOOK AT KEY CONCEPTS AND PROCEDURES GEOMETRY Texas Education Agency The materials are copyrighted (c) and trademarked (tm) as the property of the Texas Education Agency (TEA) and may not be

More information

FIND RECTANGULAR COORDINATES FROM POLAR COORDINATES CALCULATOR

FIND RECTANGULAR COORDINATES FROM POLAR COORDINATES CALCULATOR 29 June, 2018 FIND RECTANGULAR COORDINATES FROM POLAR COORDINATES CALCULATOR Document Filetype: PDF 464.26 KB 0 FIND RECTANGULAR COORDINATES FROM POLAR COORDINATES CALCULATOR Rectangular to Polar Calculator

More information

PC-MATLAB PRIMER. This is intended as a guided tour through PCMATLAB. Type as you go and watch what happens.

PC-MATLAB PRIMER. This is intended as a guided tour through PCMATLAB. Type as you go and watch what happens. PC-MATLAB PRIMER This is intended as a guided tour through PCMATLAB. Type as you go and watch what happens. >> 2*3 ans = 6 PCMATLAB uses several lines for the answer, but I ve edited this to save space.

More information

Section 10.1 Polar Coordinates

Section 10.1 Polar Coordinates Section 10.1 Polar Coordinates Up until now, we have always graphed using the rectangular coordinate system (also called the Cartesian coordinate system). In this section we will learn about another system,

More information

Glossary of dictionary terms in the AP geometry units

Glossary of dictionary terms in the AP geometry units Glossary of dictionary terms in the AP geometry units affine linear equation: an equation in which both sides are sums of terms that are either a number times y or a number times x or just a number [SlL2-D5]

More information

MCAS/DCCAS Mathematics Correlation Chart Grade 6

MCAS/DCCAS Mathematics Correlation Chart Grade 6 MCAS/DCCAS Mathematics Correlation Chart Grade 6 MCAS Finish Line Mathematics Grade 6 MCAS Standard DCCAS Standard DCCAS Standard Description Unit 1: Number Sense Lesson 1: Whole Number and Decimal Place

More information

PITSCO Math Individualized Prescriptive Lessons (IPLs)

PITSCO Math Individualized Prescriptive Lessons (IPLs) Orientation Integers 10-10 Orientation I 20-10 Speaking Math Define common math vocabulary. Explore the four basic operations and their solutions. Form equations and expressions. 20-20 Place Value Define

More information

Integers & Absolute Value Properties of Addition Add Integers Subtract Integers. Add & Subtract Like Fractions Add & Subtract Unlike Fractions

Integers & Absolute Value Properties of Addition Add Integers Subtract Integers. Add & Subtract Like Fractions Add & Subtract Unlike Fractions Unit 1: Rational Numbers & Exponents M07.A-N & M08.A-N, M08.B-E Essential Questions Standards Content Skills Vocabulary What happens when you add, subtract, multiply and divide integers? What happens when

More information

7 th Grade Accelerated Learning Targets Final 5/5/14

7 th Grade Accelerated Learning Targets Final 5/5/14 7 th Grade Accelerated Learning Targets Final 5/5/14 BSD Grade 7 Long Term Learning Targets & Supporting Learning Targets Quarter 1 & 2 Quarter 3 Quarter 4 7.02, 7.03, 7.04, 7.05 7.06, 8.04, 8.05 7.08,

More information

8 TH GRADE MATHEMATICS CHECKLIST Goals 6 10 Illinois Learning Standards A-D Assessment Frameworks Calculators Allowed on ISAT

8 TH GRADE MATHEMATICS CHECKLIST Goals 6 10 Illinois Learning Standards A-D Assessment Frameworks Calculators Allowed on ISAT 8 TH GRADE MATHEMATICS CHECKLIST Goals 6 10 Illinois Learning Standards A-D Assessment Frameworks Calculators Allowed on ISAT ISAT test questions are derived from this checklist. Use as a curriculum guide.

More information

9.1 Parametric Curves

9.1 Parametric Curves Math 172 Chapter 9A notes Page 1 of 20 9.1 Parametric Curves So far we have discussed equations in the form. Sometimes and are given as functions of a parameter. Example. Projectile Motion Sketch and axes,

More information

MATHEMATICS FOR ENGINEERING TRIGONOMETRY

MATHEMATICS FOR ENGINEERING TRIGONOMETRY MATHEMATICS FOR ENGINEERING TRIGONOMETRY TUTORIAL SOME MORE RULES OF TRIGONOMETRY This is the one of a series of basic tutorials in mathematics aimed at beginners or anyone wanting to refresh themselves

More information

GEOMETRY MODULE 3 LESSON 7 GENERAL PYRAMIDS AND CONES AND THEIR CROSS-SECTIONS

GEOMETRY MODULE 3 LESSON 7 GENERAL PYRAMIDS AND CONES AND THEIR CROSS-SECTIONS GEOMETRY MODULE 3 LESSON 7 GENERAL PYRAMIDS AND CONES AND THEIR CROSS-SECTIONS OPENING EXERCISE Complete the opening exercise on page 49 in your workbook. General Cylinders: 1 and 6 Prisms: and 7 Figures

More information

APS Sixth Grade Math District Benchmark Assessment NM Math Standards Alignment

APS Sixth Grade Math District Benchmark Assessment NM Math Standards Alignment SIXTH GRADE NM STANDARDS Strand: NUMBER AND OPERATIONS Standard: Students will understand numerical concepts and mathematical operations. 5-8 Benchmark N.: Understand numbers, ways of representing numbers,

More information

Chapter 5 Partial Differentiation

Chapter 5 Partial Differentiation Chapter 5 Partial Differentiation For functions of one variable, y = f (x), the rate of change of the dependent variable can dy be found unambiguously by differentiation: f x. In this chapter we explore

More information

Understand the concept of volume M.TE Build solids with unit cubes and state their volumes.

Understand the concept of volume M.TE Build solids with unit cubes and state their volumes. Strand II: Geometry and Measurement Standard 1: Shape and Shape Relationships - Students develop spatial sense, use shape as an analytic and descriptive tool, identify characteristics and define shapes,

More information

In this section, we will study the following topics:

In this section, we will study the following topics: 6.1 Radian and Degree Measure In this section, we will study the following topics: Terminology used to describe angles Degree measure of an angle Radian measure of an angle Converting between radian and

More information

CS354 Computer Graphics Rotations and Quaternions

CS354 Computer Graphics Rotations and Quaternions Slide Credit: Don Fussell CS354 Computer Graphics Rotations and Quaternions Qixing Huang April 4th 2018 Orientation Position and Orientation The position of an object can be represented as a translation

More information

Common Core Standards Addressed in this Resource

Common Core Standards Addressed in this Resource Common Core Standards Addressed in this Resource N-CN.4 - Represent complex numbers on the complex plane in rectangular and polar form (including real and imaginary numbers), and explain why the rectangular

More information

Diocese of Green Bay. Mathematics

Diocese of Green Bay. Mathematics Diocese of Green Bay Mathematics Understanding that mathematics is helpful in describing the physical world of patterns God created, mathematics is an area of academics designed to prepare individuals

More information

In the first part of the lesson, students plot

In the first part of the lesson, students plot NATIONAL MATH + SCIENCE INITIATIVE Mathematics Using Linear Equations to Define Geometric Solids Level Geometry within a unit on volume applications Module/Connection to AP* Area and Volume *Advanced Placement

More information

6.7. POLAR COORDINATES

6.7. POLAR COORDINATES 6.7. POLAR COORDINATES What You Should Learn Plot points on the polar coordinate system. Convert points from rectangular to polar form and vice versa. Convert equations from rectangular to polar form and

More information

MATHEMATICS Geometry Standard: Number, Number Sense and Operations

MATHEMATICS Geometry Standard: Number, Number Sense and Operations Standard: Number, Number Sense and Operations Number and Number A. Connect physical, verbal and symbolic representations of 1. Connect physical, verbal and symbolic representations of Systems integers,

More information

Middle School Math Course 3

Middle School Math Course 3 Middle School Math Course 3 Correlation of the ALEKS course Middle School Math Course 3 to the Texas Essential Knowledge and Skills (TEKS) for Mathematics Grade 8 (2012) (1) Mathematical process standards.

More information

Coordinate Transformations in Advanced Calculus

Coordinate Transformations in Advanced Calculus Coordinate Transformations in Advanced Calculus by Sacha Nandlall T.A. for MATH 264, McGill University Email: sacha.nandlall@mail.mcgill.ca Website: http://www.resanova.com/teaching/calculus/ Fall 2006,

More information

3 Identify shapes as two-dimensional (lying in a plane, flat ) or three-dimensional ( solid ).

3 Identify shapes as two-dimensional (lying in a plane, flat ) or three-dimensional ( solid ). Geometry Kindergarten Identify and describe shapes (squares, circles, triangles, rectangles, hexagons, cubes, cones, cylinders, and spheres). 1 Describe objects in the environment using names of shapes,

More information

7 Fractions. Number Sense and Numeration Measurement Geometry and Spatial Sense Patterning and Algebra Data Management and Probability

7 Fractions. Number Sense and Numeration Measurement Geometry and Spatial Sense Patterning and Algebra Data Management and Probability 7 Fractions GRADE 7 FRACTIONS continue to develop proficiency by using fractions in mental strategies and in selecting and justifying use; develop proficiency in adding and subtracting simple fractions;

More information

MATHia Unit MATHia Workspace Overview TEKS

MATHia Unit MATHia Workspace Overview TEKS 1 Tools of Geometry Lines, Rays, Segments, and Angles Distances on the Coordinate Plane Parallel and Perpendicular Lines Angle Properties Naming Lines, Rays, Segments, and Angles Working with Measures

More information

To graph the point (r, θ), simply go out r units along the initial ray, then rotate through the angle θ. The point (1, 5π 6. ) is graphed below:

To graph the point (r, θ), simply go out r units along the initial ray, then rotate through the angle θ. The point (1, 5π 6. ) is graphed below: Polar Coordinates Any point in the plane can be described by the Cartesian coordinates (x, y), where x and y are measured along the corresponding axes. However, this is not the only way to represent points

More information

2D transformations: An introduction to the maths behind computer graphics

2D transformations: An introduction to the maths behind computer graphics 2D transformations: An introduction to the maths behind computer graphics Lecturer: Dr Dan Cornford d.cornford@aston.ac.uk http://wiki.aston.ac.uk/dancornford CS2150, Computer Graphics, Aston University,

More information

GRADE 3 GRADE-LEVEL GOALS

GRADE 3 GRADE-LEVEL GOALS Content Strand: Number and Numeration Understand the Meanings, Uses, and Representations of Numbers Understand Equivalent Names for Numbers Understand Common Numerical Relations Place value and notation

More information

Script for the Excel-based applet StereogramHeijn_v2.2.xls

Script for the Excel-based applet StereogramHeijn_v2.2.xls Script for the Excel-based applet StereogramHeijn_v2.2.xls Heijn van Gent, MSc. 25.05.2006 Aim of the applet: The aim of this applet is to plot planes and lineations in a lower Hemisphere Schmidt Net using

More information

104, 107, 108, 109, 114, 119, , 129, 139, 141, , , , , 180, , , 128 Ch Ch1-36

104, 107, 108, 109, 114, 119, , 129, 139, 141, , , , , 180, , , 128 Ch Ch1-36 111.41. Geometry, Adopted 2012 (One Credit). (c) Knowledge and skills. Student Text Practice Book Teacher Resource: Activities and Projects (1) Mathematical process standards. The student uses mathematical

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

Precalculus, Quarter 2, Unit 2.1. Trigonometry Graphs. Overview

Precalculus, Quarter 2, Unit 2.1. Trigonometry Graphs. Overview 13 Precalculus, Quarter 2, Unit 2.1 Trigonometry Graphs Overview Number of instructional days: 12 (1 day = 45 minutes) Content to be learned Convert between radian and degree measure. Determine the usefulness

More information

Rectangular Coordinates in Space

Rectangular Coordinates in Space Rectangular Coordinates in Space Philippe B. Laval KSU Today Philippe B. Laval (KSU) Rectangular Coordinates in Space Today 1 / 11 Introduction We quickly review one and two-dimensional spaces and then

More information

Mathematics High School Geometry

Mathematics High School Geometry Mathematics High School Geometry An understanding of the attributes and relationships of geometric objects can be applied in diverse contexts interpreting a schematic drawing, estimating the amount of

More information

9.5 Polar Coordinates. Copyright Cengage Learning. All rights reserved.

9.5 Polar Coordinates. Copyright Cengage Learning. All rights reserved. 9.5 Polar Coordinates Copyright Cengage Learning. All rights reserved. Introduction Representation of graphs of equations as collections of points (x, y), where x and y represent the directed distances

More information

Prep 8 Year: Pre-Algebra Textbook: Larson, Boswell, Kanold & Stiff. Pre-Algebra. Common Core Edition Holt McDougal, 2012.

Prep 8 Year: Pre-Algebra Textbook: Larson, Boswell, Kanold & Stiff. Pre-Algebra. Common Core Edition Holt McDougal, 2012. Prep 8 Year: Pre-Algebra Textbook: Larson, Boswell, Kanold & Stiff. Pre-Algebra. Common Core Edition Holt McDougal, 2012. Course Description: The students entering prep year have differing ranges of exposure

More information

Linear algebra deals with matrixes: two-dimensional arrays of values. Here s a matrix: [ x + 5y + 7z 9x + 3y + 11z

Linear algebra deals with matrixes: two-dimensional arrays of values. Here s a matrix: [ x + 5y + 7z 9x + 3y + 11z Basic Linear Algebra Linear algebra deals with matrixes: two-dimensional arrays of values. Here s a matrix: [ 1 5 ] 7 9 3 11 Often matrices are used to describe in a simpler way a series of linear equations.

More information

Six Weeks:

Six Weeks: HPISD Grade 7 7/8 Math The student uses mathematical processes to: acquire and demonstrate mathematical understanding Mathematical Process Standards Apply mathematics to problems arising in everyday life,

More information

Grade 4 Math Proficiency Scales-T1

Grade 4 Math Proficiency Scales-T1 Measurement & Data Geometry Critical Thinking Communication Grade 4 Math Proficiency Scales-T1 Novice 1 and of the Make mathematical arguments and critique the reasoning of others. Partially Proficient

More information

CALCULATING TRANSFORMATIONS OF KINEMATIC CHAINS USING HOMOGENEOUS COORDINATES

CALCULATING TRANSFORMATIONS OF KINEMATIC CHAINS USING HOMOGENEOUS COORDINATES CALCULATING TRANSFORMATIONS OF KINEMATIC CHAINS USING HOMOGENEOUS COORDINATES YINGYING REN Abstract. In this paper, the applications of homogeneous coordinates are discussed to obtain an efficient model

More information

Geometry. (F) analyze mathematical relationships to connect and communicate mathematical ideas; and

Geometry. (F) analyze mathematical relationships to connect and communicate mathematical ideas; and (1) Mathematical process standards. The student uses mathematical processes to acquire and demonstrate mathematical understanding. The student is (A) apply mathematics to problems arising in everyday life,

More information

Eighth Grade Math Assessment Framework Standard 6A Representations and Ordering

Eighth Grade Math Assessment Framework Standard 6A Representations and Ordering Eighth Grade Math Assessment Framework Standard 6A Representations and Ordering 6.8.01 Read, write, and recognize equivalent representations of integer powers of 10. Related Textbook pages Related Additional

More information

Honors Precalculus: Solving equations and inequalities graphically and algebraically. Page 1

Honors Precalculus: Solving equations and inequalities graphically and algebraically. Page 1 Solving equations and inequalities graphically and algebraically 1. Plot points on the Cartesian coordinate plane. P.1 2. Represent data graphically using scatter plots, bar graphs, & line graphs. P.1

More information

FOUNDATION HIGHER. F Autumn 1, Yr 9 Autumn 2, Yr 9 Spring 1, Yr 9 Spring 2, Yr 9 Summer 1, Yr 9 Summer 2, Yr 9

FOUNDATION HIGHER. F Autumn 1, Yr 9 Autumn 2, Yr 9 Spring 1, Yr 9 Spring 2, Yr 9 Summer 1, Yr 9 Summer 2, Yr 9 Year: 9 GCSE Mathematics FOUNDATION F Autumn 1, Yr 9 Autumn 2, Yr 9 Spring 1, Yr 9 Spring 2, Yr 9 Summer 1, Yr 9 Summer 2, Yr 9 HIGHER Integers and place value Decimals Indices, powers and roots Factors,multiples

More information

Computer Graphics with OpenGL ES (J. Han) Chapter IV Spaces and Transforms

Computer Graphics with OpenGL ES (J. Han) Chapter IV Spaces and Transforms Chapter IV Spaces and Transforms Scaling 2D scaling with the scaling factors, s x and s y, which are independent. Examples When a polygon is scaled, all of its vertices are processed by the same scaling

More information

This strand involves properties of the physical world that can be measured, the units used to measure them and the process of measurement.

This strand involves properties of the physical world that can be measured, the units used to measure them and the process of measurement. ICAS MATHEMATICS ASSESSMENT FRAMEWORK ICAS Mathematics assesses mathematical skills in a range of contexts. The content of the papers is divided into the strands of: and, and, and, and, and and. The content

More information

BASIC ELEMENTS. Geometry is the study of the relationships among objects in an n-dimensional space

BASIC ELEMENTS. Geometry is the study of the relationships among objects in an n-dimensional space GEOMETRY 1 OBJECTIVES Introduce the elements of geometry Scalars Vectors Points Look at the mathematical operations among them Define basic primitives Line segments Polygons Look at some uses for these

More information

MATHEMATICS FOR ENGINEERING TUTORIAL 5 COORDINATE SYSTEMS

MATHEMATICS FOR ENGINEERING TUTORIAL 5 COORDINATE SYSTEMS MATHEMATICS FOR ENGINEERING TUTORIAL 5 COORDINATE SYSTEMS This tutorial is essential pre-requisite material for anyone studying mechanical engineering. This tutorial uses the principle of learning by example.

More information

Amarillo ISD Math Curriculum

Amarillo ISD Math Curriculum Amarillo Independent School District follows the Texas Essential Knowledge and Skills (TEKS). All of AISD curriculum and documents and resources are aligned to the TEKS. The State of Texas State Board

More information

Chislehurst and Sidcup Grammar School Mathematics Department Year 9 Programme of Study

Chislehurst and Sidcup Grammar School Mathematics Department Year 9 Programme of Study Chislehurst and Sidcup Grammar School Mathematics Department Year 9 Programme of Study Timings Topics Autumn Term - 1 st half (7 weeks - 21 lessons) 1. Algebra 1: Expressions, Formulae, Equations and Inequalities

More information

1 Reasoning with Shapes

1 Reasoning with Shapes 1 Reasoning with Shapes Topic 1: Using a Rectangular Coordinate System Lines, Rays, Segments, and Angles Naming Lines, Rays, Segments, and Angles Working with Measures of Segments and Angles Students practice

More information

B. Number Operations and Relationships Grade 7

B. Number Operations and Relationships Grade 7 B. Number Operations and Relationships MPS Learning Target #1 Represent, rename, compare, and identify equivalent forms of fractions, decimals, and percents using place value and number theory concepts.

More information

Number Sense and Operations Curriculum Framework Learning Standard

Number Sense and Operations Curriculum Framework Learning Standard Grade 5 Expectations in Mathematics Learning Standards from the MA Mathematics Curriculum Framework for the end of Grade 6 are numbered and printed in bold. The Franklin Public School System s grade level

More information

Middle School Math Course 3 Correlation of the ALEKS course Middle School Math 3 to the Illinois Assessment Framework for Grade 8

Middle School Math Course 3 Correlation of the ALEKS course Middle School Math 3 to the Illinois Assessment Framework for Grade 8 Middle School Math Course 3 Correlation of the ALEKS course Middle School Math 3 to the Illinois Assessment Framework for Grade 8 State Goal 6: Number Sense 6.8.01: 6.8.02: 6.8.03: 6.8.04: 6.8.05: = ALEKS

More information

Vectors and the Geometry of Space

Vectors and the Geometry of Space Vectors and the Geometry of Space In Figure 11.43, consider the line L through the point P(x 1, y 1, z 1 ) and parallel to the vector. The vector v is a direction vector for the line L, and a, b, and c

More information

Trigonometric Ratios

Trigonometric Ratios Geometry, Quarter 3, Unit 3.1 Trigonometric Ratios Overview Number of instructional days: 10 (1 day = 45 minutes) Content to be learned Make and defend conjectures to solve problems using trigonometric

More information

Prentice Hall Mathematics: Course Correlated to: Colorado Model Content Standards and Grade Level Expectations (Grade 6)

Prentice Hall Mathematics: Course Correlated to: Colorado Model Content Standards and Grade Level Expectations (Grade 6) Colorado Model Content Standards and Grade Level Expectations (Grade 6) Standard 1: Students develop number sense and use numbers and number relationships in problemsolving situations and communicate the

More information

Unit Maps: Grade 8 Math

Unit Maps: Grade 8 Math Real Number Relationships 8.3 Number and operations. The student represents and use real numbers in a variety of forms. Representation of Real Numbers 8.3A extend previous knowledge of sets and subsets

More information

7 th Grade STAAR Crunch March 30, 2016

7 th Grade STAAR Crunch March 30, 2016 Reporting Category UMATHX Suggested Lessons and Activities Access UMath X with the URL that your group was given. Login with a valid user name and password. Category 1:Numbers, Operations, and Quantitative

More information

New York State Regents Examination in Geometry (Common Core) Performance Level Descriptions

New York State Regents Examination in Geometry (Common Core) Performance Level Descriptions New York State Regents Examination in Geometry (Common Core) Performance Level Descriptions August 2015 THE STATE EDUCATION DEPARTMENT / THE UNIVERSITY OF THE STATE OF NEW YORK / ALBANY, NY 12234 Geometry

More information

Themes in the Texas CCRS - Mathematics

Themes in the Texas CCRS - Mathematics 1. Compare real numbers. a. Classify numbers as natural, whole, integers, rational, irrational, real, imaginary, &/or complex. b. Use and apply the relative magnitude of real numbers by using inequality

More information

OUTLINES. Variable names in MATLAB. Matrices, Vectors and Scalar. Entering a vector Colon operator ( : ) Mathematical operations on vectors.

OUTLINES. Variable names in MATLAB. Matrices, Vectors and Scalar. Entering a vector Colon operator ( : ) Mathematical operations on vectors. 1 LECTURE 3 OUTLINES Variable names in MATLAB Examples Matrices, Vectors and Scalar Scalar Vectors Entering a vector Colon operator ( : ) Mathematical operations on vectors examples 2 VARIABLE NAMES IN

More information

6.1 Polar Coordinates

6.1 Polar Coordinates 6.1 Polar Coordinates Introduction This chapter introduces and explores the polar coordinate system, which is based on a radius and theta. Students will learn how to plot points and basic graphs in this

More information

Note: Levels A-I respresent Grade Levels K-8; Florida - Grade 7 -Math Standards /Benchmarks PLATO Courseware Covering Florida - Grade 7 - Math

Note: Levels A-I respresent Grade Levels K-8; Florida - Grade 7 -Math Standards /Benchmarks PLATO Courseware Covering Florida - Grade 7 - Math Note: Levels A-I respresent Grade Levels K-8; - Grade 7 -Math Standards /Benchmarks 2005 PLATO Courseware Covering - Grade 7 - Math Number Sense, Concepts, and Operations Standard 1: The student understands

More information

Mathematics High School Geometry An understanding of the attributes and relationships of geometric objects can be applied in diverse contexts

Mathematics High School Geometry An understanding of the attributes and relationships of geometric objects can be applied in diverse contexts Mathematics High School Geometry An understanding of the attributes and relationships of geometric objects can be applied in diverse contexts interpreting a schematic drawing, estimating the amount of

More information

Seventh Grade Mathematics Content Standards and Objectives

Seventh Grade Mathematics Content Standards and Objectives Seventh Grade Mathematics Content Standards and Objectives Standard 1: Number and Operations beyond the field of mathematics, students will M.S.7.1 demonstrate understanding of numbers, ways of representing

More information

Chapter 5. Projections and Rendering

Chapter 5. Projections and Rendering Chapter 5 Projections and Rendering Topics: Perspective Projections The rendering pipeline In order to view manipulate and view a graphics object we must find ways of storing it a computer-compatible way.

More information

To graph the point (r, θ), simply go out r units along the initial ray, then rotate through the angle θ. The point (1, 5π 6

To graph the point (r, θ), simply go out r units along the initial ray, then rotate through the angle θ. The point (1, 5π 6 Polar Coordinates Any point in the plane can be described by the Cartesian coordinates (x, y), where x and y are measured along the corresponding axes. However, this is not the only way to represent points

More information

Make geometric constructions. (Formalize and explain processes)

Make geometric constructions. (Formalize and explain processes) Standard 5: Geometry Pre-Algebra Plus Algebra Geometry Algebra II Fourth Course Benchmark 1 - Benchmark 1 - Benchmark 1 - Part 3 Draw construct, and describe geometrical figures and describe the relationships

More information

Each point P in the xy-plane corresponds to an ordered pair (x, y) of real numbers called the coordinates of P.

Each point P in the xy-plane corresponds to an ordered pair (x, y) of real numbers called the coordinates of P. Lecture 7, Part I: Section 1.1 Rectangular Coordinates Rectangular or Cartesian coordinate system Pythagorean theorem Distance formula Midpoint formula Lecture 7, Part II: Section 1.2 Graph of Equations

More information

HPISD Eighth Grade Math

HPISD Eighth Grade Math HPISD Eighth Grade Math The student uses mathematical processes to: acquire and demonstrate mathematical understanding Apply mathematics to problems arising in everyday life, society, and the workplace.

More information

acute angle An angle with a measure less than that of a right angle. Houghton Mifflin Co. 2 Grade 5 Unit 6

acute angle An angle with a measure less than that of a right angle. Houghton Mifflin Co. 2 Grade 5 Unit 6 acute angle An angle with a measure less than that of a right angle. Houghton Mifflin Co. 2 Grade 5 Unit 6 angle An angle is formed by two rays with a common end point. Houghton Mifflin Co. 3 Grade 5 Unit

More information

A very brief Matlab introduction

A very brief Matlab introduction A very brief Matlab introduction Siniša Krajnović January 24, 2006 This is a very brief introduction to Matlab and its purpose is only to introduce students of the CFD course into Matlab. After reading

More information

GTPS Curriculum Grade 6 Math

GTPS Curriculum Grade 6 Math 14 days 4.16A2 Demonstrate a sense of the relative magnitudes of numbers. 4.1.6.A.7 Develop and apply number theory concepts in problem solving situations. Primes, factors, multiples Common multiples,

More information

Bracken County Schools Curriculum Guide Geometry

Bracken County Schools Curriculum Guide Geometry Geometry Unit 1: Lines and Angles (Ch. 1-3) Suggested Length: 6 weeks Core Content 1. What properties do lines and angles demonstrate in Geometry? 2. How do you write the equation of a line? 3. What affect

More information

Analytic Spherical Geometry:

Analytic Spherical Geometry: Analytic Spherical Geometry: Begin with a sphere of radius R, with center at the origin O. Measuring the length of a segment (arc) on a sphere. Let A and B be any two points on the sphere. We know that

More information

Module 1 Session 1 HS. Critical Areas for Traditional Geometry Page 1 of 6

Module 1 Session 1 HS. Critical Areas for Traditional Geometry Page 1 of 6 Critical Areas for Traditional Geometry Page 1 of 6 There are six critical areas (units) for Traditional Geometry: Critical Area 1: Congruence, Proof, and Constructions In previous grades, students were

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

MAINE ASSOCIATION OF MATH LEAGUES RULES GOVERNING QUESTIONS, ANSWERS, AND GRADING

MAINE ASSOCIATION OF MATH LEAGUES RULES GOVERNING QUESTIONS, ANSWERS, AND GRADING MAINE ASSOCIATION OF MATH LEAGUES RULES GOVERNING QUESTIONS, ANSWERS, AND GRADING 05-06 Introduction Philosophy. It is the intent of MAML to promote Maine high school mathematics competitions. The questions

More information

OKLAHOMA SCHOOL TESTING PROGRAM TEST BLUEPRINT MATHEMATICS GRADE 3

OKLAHOMA SCHOOL TESTING PROGRAM TEST BLUEPRINT MATHEMATICS GRADE 3 201-201 GRADE 3 4% 14% 2% 12% 23 11 14 3.N.1 Number Sense 3.N.2 Number Operations () 3.N.4 Money (3) 3.N.3 Fractions 3.A.1 Numerical and Geometric Patterns (4) 3.A.2 Equations (3) 3.GM.1 Describe and Create

More information

Gateway Regional School District VERTICAL ALIGNMENT OF MATHEMATICS STANDARDS Grades 5-8

Gateway Regional School District VERTICAL ALIGNMENT OF MATHEMATICS STANDARDS Grades 5-8 NUMBER SENSE & OPERATIONS 5.N.7 Compare and order whole numbers, positive fractions, positive mixed numbers, positive decimals, and percents. Fractions 1/2, 1/3, 1/4, 1/5, 1/10 and equivalent decimals

More information

Content. Coordinate systems Orthographic projection. (Engineering Drawings)

Content. Coordinate systems Orthographic projection. (Engineering Drawings) Projection Views Content Coordinate systems Orthographic projection (Engineering Drawings) Graphical Coordinator Systems A coordinate system is needed to input, store and display model geometry and graphics.

More information

Mapping Common Core State Standard Clusters and. Ohio Grade Level Indicator. Grade 5 Mathematics

Mapping Common Core State Standard Clusters and. Ohio Grade Level Indicator. Grade 5 Mathematics Mapping Common Core State Clusters and Ohio s Grade Level Indicators: Grade 5 Mathematics Operations and Algebraic Thinking: Write and interpret numerical expressions. Operations and Algebraic Thinking:

More information

Parallel and perspective projections such as used in representing 3d images.

Parallel and perspective projections such as used in representing 3d images. Chapter 5 Rotations and projections In this chapter we discuss Rotations Parallel and perspective projections such as used in representing 3d images. Using coordinates and matrices, parallel projections

More information

8. The triangle is rotated around point D to create a new triangle. This looks like a rigid transformation.

8. The triangle is rotated around point D to create a new triangle. This looks like a rigid transformation. 2.1 Transformations in the Plane 1. True 2. True 3. False 4. False 5. True 6. False 7. True 8. The triangle is rotated around point D to create a new triangle. This looks like a rigid transformation. 9.

More information

Prentice Hall Mathematics: Course Correlated to: Colorado Model Content Standards and Grade Level Expectations (Grade 8)

Prentice Hall Mathematics: Course Correlated to: Colorado Model Content Standards and Grade Level Expectations (Grade 8) Colorado Model Content Standards and Grade Level Expectations (Grade 8) Standard 1: Students develop number sense and use numbers and number relationships in problemsolving situations and communicate the

More information

MATHEMATICS SYLLABUS SECONDARY 5th YEAR

MATHEMATICS SYLLABUS SECONDARY 5th YEAR European Schools Office of the Secretary-General Pedagogical Development Unit Ref.: 011-01-D-7-en- Orig.: EN MATHEMATICS SYLLABUS SECONDARY 5th YEAR 4 period/week course APPROVED BY THE JOINT TEACHING

More information

Conic Sections and Locii

Conic Sections and Locii Lesson Summary: Students will investigate the ellipse and the hyperbola as a locus of points. Activity One addresses the ellipse and the hyperbola is covered in lesson two. Key Words: Locus, ellipse, hyperbola

More information

Introduction to Geometry

Introduction to Geometry Introduction to Geometry This course covers the topics outlined below. You can customize the scope and sequence of this course to meet your curricular needs. Curriculum (211 topics + 6 additional topics)

More information

Suggested List of Mathematical Language. Geometry

Suggested List of Mathematical Language. Geometry Suggested List of Mathematical Language Geometry Problem Solving A additive property of equality algorithm apply constraints construct discover explore generalization inductive reasoning parameters reason

More information

Charting new territory: Formulating the Dalivian coordinate system

Charting new territory: Formulating the Dalivian coordinate system Parabola Volume 53, Issue 2 (2017) Charting new territory: Formulating the Dalivian coordinate system Olivia Burton and Emma Davis 1 Numerous coordinate systems have been invented. The very first and most

More information

Curriculum Connections (Fractions): K-8 found at under Planning Supports

Curriculum Connections (Fractions): K-8 found at   under Planning Supports Curriculum Connections (Fractions): K-8 found at http://www.edugains.ca/newsite/digitalpapers/fractions/resources.html under Planning Supports Kindergarten Grade 1 Grade 2 Grade 3 Grade 4 Grade 5 Grade

More information

Unit Maps: Grade 8 Math

Unit Maps: Grade 8 Math Real Number Relationships 8.3 Number and operations. The student represents and use real numbers in a variety of forms. Representation of Real Numbers 8.3A extend previous knowledge of sets and subsets

More information

Maths Year 11 Mock Revision list

Maths Year 11 Mock Revision list Maths Year 11 Mock Revision list F = Foundation Tier = Foundation and igher Tier = igher Tier Number Tier Topic know and use the word integer and the equality and inequality symbols use fractions, decimals

More information