VECTORS IN THREE DIMENSIONS

Size: px
Start display at page:

Download "VECTORS IN THREE DIMENSIONS"

Transcription

1 1 CHAPTER 2. BASIC TRIGONOMETRY 1 INSTITIÚID TEICNEOLAÍOCHTA CHEATHARLACH INSTITUTE OF TECHNOLOGY CARLOW VECTORS IN THREE DIMENSIONS 1 Vectors in Two Dimensions A vector is an object which has magnitude and direction. Man phsical quantities, such as velocit, acceleration, force, electric field and magnetic field are eamples of vector quantities. Displacement between points ma also be represented using vectors. We stud some relationship between algebra and geometr. We shall first stud some algebra which is motivated b geometric considerations. We then use the algebra later to better understand some problems in geometr. This mathematics will form the basis of the stud of computer graphics. Vectors are central to the design of an two-dimensional or three-dimensional computer game. The are used to represent points in space, like corners of a door or window or the location of an object in a scene. The are also used to describe a direction, for eample the orientation of a camera or the direction in which a gun is pointing. A vector in two-dimensions R 2 can be described as an ordered pair u = (u 1, u 2 ), where u 1, u 2 R. Definition Two vectors u = (u 1, u 2 ) and v = (v 1, v 2 ) in R 2 are said to be equal, denoted b u = v, if and onl if u 1 = v 1 and u 2 = v 2. Defining vectors in R 2 as ordered pairs of real numbers enables us to state precisel when two vectors are equal it also provides us with the easiest wa of defining addition and various kinds of multiplication. To describe the position of an point in two-dimensions we ma choose two aes and which are mutuall perpendicular and intersect in a point O called the origin, as shown.

2 2 CHAPTER 2. BASIC TRIGONOMETRY 2 (u 1, u 2 ) u 2 O u α u 1 An point P in two dimensions corresponds the ordered pair (u 1, u 2 ) of real numbers, where u 1 represents the magnitude of the component vector along -ais and u 2 represents the magnitude of the component vector along -ais. The magnitude of the vector u, from Pthagoras theorem, is given as u = u u2 2 The direction of the vector u is defined b α ( ) α = tan 1 u2 u Addition of Vectors Definition For an two vectors u = (u 1, u 2 ) and v = (v 1, v 2 ) in R 2, we define their sum to be u + v = (u 1, u 2 ) + (v 1, v 2 ) = (u 1 + v 1, u 2 + v 2 ) Similarl, we define their difference to be u v = (u 1, u 2 ) (v 1, v 2 ) = (u 1 v 1, u 2 v 2 ) Addition of vectors ma be pictured using the parallelogram law.

3 3 CHAPTER 2. BASIC TRIGONOMETRY 3 O P Q P + Q Eample For the following pair of vectors u = (1, 6) and v = ( 5, 2) in R 2, we can calculate u + v = (1, 6) + ( 5, 2) = ( 4, 8) u v = (1, 6) ( 5, 2) = (6, 4) Theorem 1 (VECTOR ADDITION) i For ever u, v R 2, we have u + v R 2. ii For ever u, v, w R 2, we have u + ( v + w) = ( u + v) + w. iii For ever u R 2, we have u + 0 = u where 0 = (0, 0) R 2. iv For ever u R 2, there eists v R 2 such that u + v = 0. v For ever u, v R 2, we have u + v = v + u. 1.2 Scalar Multiplication of Vectors Definition For an vector u = (u 1, u 2 ) in R 2 and an scalar c R, we define the scalar multiple to be c u = c(u 1, u 2 ) = (cu 1, cu 2 )

4 4 CHAPTER 2. BASIC TRIGONOMETRY 4 Scalar multiplication ma be pictured as follows 2P P Q O Q Eample For the following pair of vectors u = (2, 3) and v = ( 1, 5) in R 2, we can evaluate 2 u + 4 v = 2(2, 3) + 4( 1, 5) = (4, 6) + ( 4, 20) = (0, 26) 2 u v = 2(2, 3) ( 1, 5) = (4, 6) ( 1, 5) = (5, 1) Theorem 2 (SCALAR MULTIPLICATION) i For ever c R and u R 2, we have c u R 2. ii For ever c R and u, v R 2, we have c( u + v) = c u + c v. iii For ever a, b R and u R 2, we have (a + b) u = a u + b u. iv For ever a, b R and u R 2, we have (ab) u = a(b u). v For ever u R 2, we have 1 u = u. Eercise For the following pair of vectors u = (4, 3) and v = (1, 7) in R 2, evaluate i 3 u + 3 v, ii u + 2 v, iii 7 u 3 v.

5 5 CHAPTER 2. BASIC TRIGONOMETRY 5 Remark There is another wa in which vectors ma be pictured namel as arrows in two dimensions. The vector (u 1, u 2 ) can be pictured b an arrow with initial point O and terminal point (u 1, u 2 ). It is, however, convenient to picture vectors in a more general wa. Consider an arrow with the initial point P = ( 1, 1 ) and terminal point Q = ( 2, 2 ). This arrow is denoted b P Q. We define P Q = ( 2 1, 2 1 ) = Q P We can picture this as follows using the parallelogram law P O P P Q Q P Q Note that this vector is alread represented b the arrow with initial point O and terminal point ( 2 1, 2 1 ). In fact, an one vector ma be represented b infinitel man arrows. We define two arrows to be equivalent whenever their corresponding components are equal it is the components, and not the individual initial and terminal points, which are used to see if two arrows are equivalent. Since components are determined b the length and direction of an arrow we can state that two arrows are equivalent whenever the have the same length and direction. Since one vector is now represented b an one of infinitel man equivalent arrows, we agree to regard these equivalent arrows as equal. The end result is that we ma picture a vector as an arrow which has a given length and lies in a given direction, and ma be positioned between an pair of points provided that the points determine the same length and direction.

6 6 CHAPTER 2. BASIC TRIGONOMETRY 6 Eample Let P = (2, 5), Q = (3, 2), R = (1, 3) and S = ( 1, 3) be four points in two dimensions, as shown. R O S Q P Then P Q = (1, 3) OR = (1, 3) SO = (1, 3) These arrows represent the same vector, namel, A = (1, 3) and we write P Q = OR = SO = A = (1, 3) Eercise In each case write the vector u in terms of components i u is a vector from the point A(2, 5) to the point B(0, 4), ii u is a vector from the point A( 1, 3) to the point B(5, 2), iii u is a vector from the point A(5, 12) to the point B( 3, 6).

7 7 CHAPTER 2. BASIC TRIGONOMETRY Magnitude and Direction Definition For an vector u = (u 1, u 2 ) in R 2, we define the magnitude of u to be the non-negative real number u = u u2 2 The direction of the vector u is defined b α ( ) α = tan 1 u2 u 1 u 2 O (u 1, u 2 ) u α u 1 Remark i Suppose that P = ( 1, 1 ) and Q = ( 2, 2 ) are two points in R 2. To calculate the distance d(p, Q) between the two points, we must first find a vector from P to Q. This is given b ( 2 1, 2 1 ). The distance d(p, Q) is then the magnitude of this vector, so that d(p, Q) = ( 2 1 ) 2 + ( 2 1 ) 2 Hence, the definition of the magnitude (or norm) of a vector u is simpl the distance from O to the point (u 1, u 2 ). ii A vector of magnitude 1 is called a unit vector or normalized vector. determines a unit vector ( ) 1 u u = u1 u, u 2 u An non-zero vector u

8 8 CHAPTER 2. BASIC TRIGONOMETRY 8 Eample The vector u = (3, 4) has magnitude 5. This vector has direction α = o. Eample The vector u = (2, 5) has magnitude This vector has direction α = o. Eample The vector u = (1, 2) has magnitude This vector has direction α = o. Eample The vector u = ( 1, 2) has magnitude ( 1, 2) 1 φ 2 α From the diagram ( ) 2 φ = tan 1 = o 1 Hence α = 180 o o = o. Note The angle of direction α is the alwas quoted relative to the positive ais. Eample The vector u = ( 2, 3) has magnitude This vector has direction α = o. Eample The vector u = ( 1, 1) has magnitude ( 1, 1) 1 φ α 1

9 9 CHAPTER 2. BASIC TRIGONOMETRY 9 From the diagram ( ) 1 φ = tan 1 = 45 o 1 Hence α = 180 o + 45 o = 225 o. Eample The vector u = ( 4, 5) has magnitude This vector has direction α = o. Eample The vector u = ( 9, 12) has magnitude 15. This vector has direction α = o. Remark We ma be required to determine the components u 1 and u 2 of the vector u = (u 1, u 2 ) when presented with the magnitude and direction of u onl. If, for eample, the magnitude and direction of two distinct vectors are presented converting each vector to components will allow for simpler addition (subtraction or scalar multiplication) of the vectors. u 2 u α O u 1 (u 1, u 2 ) For u = (u 1, u 2 ) we can write, u 1 = u cos α u 2 = u sin α Eample The vector u with magnitude 5 and direction α = 40 o with positive ais has components u 1 = 5 cos 40 o u 2 = 5 sin 40 o Hence u = (3 83, 3 21).

10 10 CHAPTER 2. BASIC TRIGONOMETRY 10 Eample The vector u with magnitude 200 and direction α = 210 o with positive ais has components u 1 = 200 cos 210 o u 2 = 200 sin 210 o Hence u = ( , 100). Eample The vector u has magnitude 10 and direction α = 45 o with positive ais. The vector v has magnitude 15 and direction α = 205 o with positive ais. Determine the magnitude and direction of each of the following vectors: i u + v ii u 2 v iii 2 u 3 v Solution: Let u = (u 1, u 2 ) and v = (v 1, v 2 ). Now u 1 = 10 cos 45 o = 7 07 u 2 = 10 sin 45 o = 7 07 v 1 = 15 cos 205 o = v 2 = 15 sin 205 o = 6 34 Hence u = (7 07, 7 07) and v = ( 13 59, 6 34). i u + v u v

11 11 CHAPTER 2. BASIC TRIGONOMETRY 11 u + v = (7 07, 7 07) + ( 13 59, 6 34) = ( , ) = ( 6 52, 0 73) The vector u + v has magnitude This vector has direction α = o. ii u 2 v = (7 07, 7 07) 2( 13 59, 6 34) = (7 07, 7 07) ( 27 18, 12 68) = ( , ) = (34 25, 19 75) The vector u 2 v has magnitude This vector has direction α = o. iii 2 u 3 v = 2(7 07, 7 07) 3( 13 59, 6 34) = (14 14, 14 14) ( 40 77, 19 02) = ( , ) = (54 91, 33 16) The vector 2 u 3 v has magnitude This vector has direction α = o. Remark For computer games and graphics programming the component representation of a vector with round (or square) brackets is used. This notation will be used in all modern computer programming languages. In C#, for eample, the DrawLine() method draws a line from one vector point (1, 1) to a second vector point (2, 2) on the graphics form: g.drawline(p, 1, 1, 2, 2); //Drawline method The following lines of code from C# will draw a line from the point (100, 150) to (300, 400): privatevoidf orm1 P aint(object sender, P ainteventargs e) { Graphics g = e.graphics; //T he graphics class P en p = newp en(color.red); //T he P en class g.drawline(p, 100, 150, 300, 400); //Drawline method }

12 12 CHAPTER 2. BASIC TRIGONOMETRY 12 2 Vectors in Three Dimensions A vector in three-dimensions R 3 u 1, u 2, u 3 R. can be described as an ordered triple u = (u 1, u 2, u 3 ), where Definition Two vectors u = (u 1, u 2, u 3 ) and v = (v 1, v 2, v 3 ) in R 3 are said to be equal, denoted b u = v, if and onl if, u 1 = v 1, u 2 = v 2 and u 3 = v 3. Defining vectors in R 3 as ordered triples of real numbers enables us to state precisel when two vectors are equal it also provides us with the easiest wa of defining addition and various kinds of multiplication, as we will show later. To describe the position of an point in space, we ma choose three aes, and z which are mutuall perpendicular and intersect in a point O called the origin, as shown. u O z (u 1, u 2, u 3 ) An point in space corresponds to the ordered triple (u 1, u 2, u 3 ) of real numbers, where u 1 represents the magnitude of the component vector along -ais, u 2 represents the magnitude of the component vector along -ais and u 3 represents the magnitude of the component vector along the z-ais. The magnitude of the vector u, from Pthagoras theorem, is given as u = u u2 2 + u2 3

13 13 CHAPTER 2. BASIC TRIGONOMETRY 13 The direction of the vector in three-dimensions R 3 in is defined b three angles θ, θ and θ z the vector makes with the -ais, -ais and z-ais respectivel. For a vector u = (u 1, u 2, u 3 ) in R 3 u 1 = u cos θ u 2 = u cos θ u 3 = u cos θ z 2.1 Addition of Vectors Definition For an two vectors u = (u 1, u 2, u 3 ) and v = (v 1, v 2, v 3 ) in R 3, we define their sum to be u + v = (u 1, u 2, u 3 ) + (v 1, v 2, v 3 ) = (u 1 + v 1, u 2 + v 2, u 3 + v 3 ) Similarl, we define their difference to be u v = (u 1, u 2, u 3 ) (v 1, v 2, v 3 ) = (u 1 v 1, u 2 v 2, u 3 v 3 ) Addition of vectors ma be pictured using the parallelogram law. P Q O z P + Q

14 14 CHAPTER 2. BASIC TRIGONOMETRY 14 Eample For the following pair of vectors u = (8, 4, 3) and v = ( 2, 2, 0) in R 3, we can calculate, for eample u + v = (8, 4, 3) + ( 2, 2, 0) = (6, 6, 3) u v = (8, 4, 3) ( 2, 2, 0) = (10, 2, 3) Theorem 3 (VECTOR ADDITION) i For ever u, v R 3, we have u + v R 3. ii For ever u, v, w R 3, we have u + ( v + w) = ( u + v) + w. iii For ever u R 3, we have u + 0 = u where 0 = (0, 0, 0) R 3. iv For ever u R 3, there eists v R 3 such that u + v = 0. v For ever u, v R 3, we have u + v = v + u. 2.2 Scalar Multiplication of Vectors Definition For an vector u = (u 1, u 2, u 3 ) in R 3 and an scalsr c R, we define the scalar multiple to be c u = c(u 1, u 2, u 3 ) = (cu 1, cu 2, cu 3 ) Scalar multiplication ma be pictured as follows 2P P Q O Q z

15 15 CHAPTER 2. BASIC TRIGONOMETRY 15 Eample For the following pair of vectors u = (2, 3, 4) and v = ( 1, 3, 8) in R 3, we can evaluate, for eample 2 u + 4 v = 2(2, 3, 4) + 4( 1, 3, 8) = (4, 6, 8) + ( 4, 12, 32) = (0, 18, 24) 2 u v = 2(2, 3, 4) ( 1, 3, 8) = (4, 6, 8) ( 1, 3, 8) = (5, 3, 16) Theorem 4 (SCALAR MULTIPLICATION) i For ever c R and u R 3, we have c u R 3. ii For ever c R and u, v R 3, we have c( u + v) = c u + c v. iii For ever a, b R and u R 3, we have (a + b) u = a u + b u. iv For ever a, b R and u R 3, we have (ab) u = a(b u). v For ever u R 3, we have 1 u = u. Eercise For the following pair of vectors u = (1, 3, 5) and v = (1, 2, 4) in R 3, evaluate i 2 u + 3 v, ii u 5 v, iii 4 u + 3 v. Remark There is another wa in which vectors ma be pictured namel as arrows in three dimensions. The vector (u 1, u 2, u 3 ) can be pictured b an arrow with initial point O and terminal point (u 1, u 2, u 3 ). It is, however, convenient to picture vectors in a more general wa. Consider an arrow with the initial point P = ( 1, 1, z 1 ) and terminal point Q = ( 2, 2, z 2 ). This arrow is denoted b P Q. We define P Q = ( 2 1, 2 1, z 2 z 1 ) = Q P We can picture this as follows using the parallelogram law

16 16 CHAPTER 2. BASIC TRIGONOMETRY 16 z P P P Q O Q P Q Recall that we ma picture a vector as an arrow which has a given length and lies in a given direction, and ma be positioned between an pair of points provided that the points determine the same length and direction. The following eample illustrates this point. Eample Let P = (2, 5, 4), Q = (3, 2, 6), R = (1, 3, 2) and S = ( 1, 3, 2) be four points in space, as shown. R Then O S Q P z P Q = (1, 3, 2) OR = (1, 3, 2) SO = (1, 3, 2)

17 17 CHAPTER 2. BASIC TRIGONOMETRY 17 These arrows represent the same vector, namel, A = (1, 3, 2) and we write P Q = OR = SO = A = (1, 3, 2) Eercise In each case write the vector u in terms of components i u is a vector from the point A(1, 5, 4) to the point B(2, 0, 4), ii u is a vector from the point A(1, 2, 3) to the point B(4, 5, 6), iii u is a vector from the point A( 2, 1, 9) to the point B(3, 6, 8). [Solution: u = (1, 5, 0 ), u = (3, 3, 3 ), u = (5, 7, 1 )]. Eercise Let u = (2, 1, 3) v = ( 4, 2 5, 3) w = (1, 1, 2) Write each of the following in terms of components i 2 u ii 3 u 2 v iii v 2 u + 4 w iv 2( u + v) w [Solution: i (4, 2, 6 ), ii (14, 8, 3 ), iii ( 4, 8 5, 11 ), iv ( 5, 2, 14 ) ].

18 18 CHAPTER 2. BASIC TRIGONOMETRY 18 Eercise Let P = (2, 6, 8), Q = (6, 2, 5), R = (4, 4, 3), S = ( 10, 2, 5) and T = ( 6, 6, 2) be five points in space, as shown. T S O z R Q P Show that P Q = OR = ST. 2.3 Magnitude and Direction Definition For an vector u = (u 1, u 2, u 3 ) in R 3, we define the magnitude of u to be the non-negative real number u = u u2 2 + u2 3 The direction of the vector in three-dimensions R 3 in is defined b three angles θ, θ and θ z the vector makes with the -ais, -ais and z-ais respectivel. For a vector u = (u 1, u 2, u 3 ) in R 3 cos θ = u 1 u cos θ = u 2 u cos θ z = u 3 u

19 19 CHAPTER 2. BASIC TRIGONOMETRY 19 θ z z (u 1, u 2, u 3 ) θ θ O These angles are difficult to picture, since the are not in the plane onl or the plane onl or the z plane onl. For u = (u 1, u 2, u 3 ) in R 3, we can write, u 1 = u cos θ u 2 = u cos θ u 3 = u cos θ z These equations will determine the components u 1, u 2 and u 3 of the vector u = (u 1, u 2, u 3 ) in R 3 when presented with the magnitude and direction of u onl. Furthermore cos 2 θ + cos 2 θ + cos 2 θ z = 1 Remark A vector of magnitude 1 is called a unit vector or normalised vector. An non-zero vector determines a unit vector 1 u u = ( ) u1 u, u 2 u, u 3 u 1 u u = (cos θ, cos θ, cos θ z ) This normalised form ma be used to convenientl calculate the angles θ, θ, θ z for a given vector u = (u 1, u 2, u 3 ) in R 3. This form is usuall used to describe the direction of an vector in R 3.

20 20 CHAPTER 2. BASIC TRIGONOMETRY 20 Eample We can write v = (2, 3, 4) as a unit vector (or normalised vector) along u ( ) 1 u u = u1 u, u 2 u, u 3 u Now u = 29. Hence 1 u u = ( 2 29, 3 29, ) 4 29 = (cos θ, cos θ, cos θ ) It follows that cos θ = cos θ = cos θ z = ( ) 2 29 ( ) 3 29 ( ) 4 29 = = = Hence θ = θ = θ z = Eercise For each of the following vectors in R 3, find the angles θ, θ, θ z, i.e., the angle the vector makes with the ais, ais and z ais respectivel. i u = ( 2, 1, 1) ii u = (1, 1, 1) iii u = ( 4, 2, 2) [Solution: i θ = o, θ = o, θ z = o ii θ = o, θ = o, θ z = o iii θ = o, θ = o, θ z = o ]. Remark A ver common problem in games is that an object moves a distance in a particular direction and we have to determine where it ends up, so that we can draw it again in the new position. Suppose that an object is at position A(1, 2, 3) in one frame and it moves 10 units in the direction θ = 75 o, θ = 50 o and θ z = o before the net frame. What is the new position in the second frame?

21 21 CHAPTER 2. BASIC TRIGONOMETRY 21 Let u = (u 1, u 2, u 3 ) with, u 1 = u cos θ = 10 cos 75 o u 2 = u cos θ = 10 cos 50 o u 3 = u cos θ z = 10 cos o Hence u = (2 588, 6 43, 7 21). The new position in the second frame will be A + u = (1, 2, 3) + (2 588, 6 43, 7 21) = (3 588, 8 43, 10 21) Eercise For each of the following objects defined in frame one b a vector A, find its new position in frame two: i The object starts from A(2, 3, 1) and moves 7 units in the direction θ = 90 o, θ = 130 o and θ z = 40 o. ii The object starts from A(1, 2, 3) and moves 2 8 units in the direction θ = 120 o, θ = 60 o. iii The object starts from A( 1, 1, 2) and moves 1 5 units in the direction θ = 50 o, θ = 70 o. [Solution: i (2, 1 50, 6 36 ) ii ( 0 4, 3 4, 4 98 ) iii (0 03, 1 96, 2 51 ) ].

22 22 CHAPTER 2. BASIC TRIGONOMETRY The Scalar Product Definition Suppose that u = (u 1, u 2, u 3 ) and v = (v 1, v 2, v 3 ) are vectors in R 3 and that θ [0, π] represents the angle between them. We define the scalar product u. v of u and v b Alternativel, we can write u. v = u v cos θ u. v = u 1 v 1 + u 2 v 2 + u 3 v 3 Theorem 5 (SCALAR PRODUCT) Suppose that u, v, w R 3 and c R, then i u. v = v. u ii u.( v + w) = ( u. v) + ( u. w) iii c( u. v) = (c u). v = u.(c v) iv u. u 0 v u. u = 0 if and onl if u = 0 Remark i The scalar product is also known as the dot product or the inner product of u and v. ii We sa that two non-zero vectors in R 3 are orthogonal if the angle between them is π 2. It follows immediatel from the definition of scalar product that an two non-zero vectors u, v R 3 are orthogonal if and onl if u. v = 0. iii Using the definition of scalar product we can calculate the angle between u and v since cos θ = u. v u v Eample Suppose u = (2, 4, 6) and v = (1, 2, 3). Then u. v = u 1 v 1 + u 2 v 2 + u 3 v 3 = ( 2) = 12

23 23 CHAPTER 2. BASIC TRIGONOMETRY 23 Eample Suppose u = (2, 0, 0) and v = (1, 1, 2). Then we have u. v = 2. Note now that u = 2 and v = 2. It follows that cos θ = u. v u v = 2 4 = 1 2 Hence ( ) 1 θ = cos 1 = 60 o 2 Eample Suppose u = ( 4, 1, 1) and v = (1, 2, 5). Then we have u. v = 3. Note now that u = 18 and v = 30. It follows that cos θ = u. v u v = 3 = Hence ( ) 3 θ = cos 1 = o Eample Suppose u = (2, 3, 5) and v = (1, 1, 1). Then we have u. v = 0. It follows that u and v are orthogonal. Eercise Let u = (2, 4, 3) and v = (8, 1, 1). Determine the scalar product u. v and hence determine the angle between u and v. Eercise Let u = (1, 2, 5) and v = (0, 1, 1). determine the angle between u and v. Determine the scalar product u. v and hence Eercise Let u = (5, 6, 9) and v = (1, 1, 1). Determine the scalar product u. v and hence determine the angle between u and v. 2.5 Components and Projections Definition Let u and v be two non-zero vectors and θ the angle between them. The scalar component of u along v is the number u. v v * Since u. v = u v cos θ, the scalar component ma also be written as u cos θ.

24 24 CHAPTER 2. BASIC TRIGONOMETRY 24 The vector projection of u along v, denoted b proj v ( u), is the vector defined b proj v ( u) = ( ) u. v v v v that is, the scalar multiple of the direction of v b the scalar component of u along v. Remark i In some applications it can be useful to decompose or resolve a vector u into two vectors one parallel to non-zero vector v and the other perpendicular to v. u w v θ proj v ( u) To resolve a given vector u into two vectors one parallel to to a given non-zero vector v and the other perpendicular to the vector v we first calculate proj v ( u), the vector projection of u along v and secondl a perpendicular vector to v, which we will label w and is given as w = u proj v ( u) The resolvent of proj v ( u) and w will ield u. Furthermore, their scalar product is zero. ii As the name suggests, the scalar component is a scalar and the vector projection is a vector. iii The proj v ( u) has the same direction as v if θ is acute, and the opposite direction if θ is obtuse. iv The length or magnitude of proj v ( u) is u. v v that is, the absolute value of the scalar component of u along v.

25 25 CHAPTER 2. BASIC TRIGONOMETRY 25 Eample Let u = (2, 1, 3) and v = (1, 3, 1). To determine the vector projection of u along v we have proj v ( u) = ( ) u. v v v v Hence proj v ( u) = ( ) (1, 3, 1). = 2 (1, 3, 1) Note Consider the eample above with the diagram depicting a vector projection. From the vector u we have determined proj v ( u), the vector projection of u along v. u w v θ proj v ( u) We can determine the vector w as follows w = u proj v ( u) = (2, 1, 3) 2 5 (1, 3, 1) = (4, 1, 7) The resolvent of proj v ( u) and w should ield u. proj v ( u) + w = 2 ( 5 22 (1, 3, 1) + (4, 1, 7) = , 11 11, 33 ) = (2, 1, 3) 11 Finall, their scalar product is zero. proj v ( u). w = 2 11 (1, 3, 1) (4, 1, 7) = = 0 as epected.

26 26 CHAPTER 2. BASIC TRIGONOMETRY 26 Eercise Let u = (2, 0, 1) and v = (3, 1, 2). Determine the vector projection of u along v Eercise Let u = ( 1, 2, 4) and v = (0, 1, 6). Determine the vector projection of u along v Eercise Let u = (2, 2, 7) and v = (3, 6, 5). Determine the vector projection of u along v Eercise Let u = (2, 1, 2) and v = (6, 1, 0). Resolve the vector u into vectors parallel and perpendicular to the vector v. Eercise Let u = (3, 4, 5) and v = (1, 1, 2). Resolve the vector u into vectors parallel and perpendicular to the vector v. 2.6 The Vector Product We now discuss a product of vectors unique to R 3. The idea of vector products has a wide applications in geometr, phsics and engineering, and is motivated b the wish to find a vector that is perpendicular to two given vectors. Definition Suppose that u = (u 1, u 2, u 3 ) and v = (v 1, v 2, v 3 ) are vectors in R 3 and that θ [0, π] represents the angle between them. Let n be a unit vector perpendicular to both u and v. Then the vector product (or cross product) of u and v is the vector denoted b u v and defined b u v = u v sin θ n Alternativel u v = (u 2 v 3 u 3 v 2, u 3 v 1 u 1 v 3, u 1 v 2 u 2 v 1 ) Remark The vector product u v ields a vector in R 3. In order to develop this component representation of u v we will switch momentaril from the component representation of a vector u = (u 1, u 2, u 3 ) to its equivalent cartesian form u = u 1 i + u 2 j + u 3 k where the three unit vectors i = (1, 0, 0), j = (0, 1, 0) and k = (0, 0, 1), the unit vectors along the, and z-aes respectivel.

27 27 CHAPTER 2. BASIC TRIGONOMETRY 27 z O u = u 1 i + u 2 j + u 3 k Suppose u = u 1 i + u 2 j + u 3 k v = v 1 i + v 2 j + v 3 k u v = (u 1 i + u 2 j + u 3 k) (v1 i + v 2 j + v 3 k) = u 1 v 1 i i + u 1 v 2 i j + u 1 v 3 i k +u 2 v 1 j i + u 2 v 2 j j + u 2 v 3 j k +u 3 v 1 k i + u 3 v 2 k j + u 3 v 3 k k Using each of the following facts u v = u v sin θ n u v = ( v u) we can establish each of the following i i = 0 i j = k j i = k j j = 0 j k = i i k = j k k = 0 k i = j k j = i Hence, we have u v = u 1 v 1 (0) + u 1 v 2 k + u1 v 3 ( j) +u 2 v 1 ( k) + u 2 v 2 (0) + u 2 v 3 i +u 3 v 1 j + u 3 v 2 ( i) + u 3 v 3 (0) = (u 2 v 3 u 3 v 2 ) i + (u 3 v 1 u 1 v 3 ) j + (u 1 v 2 u 2 v 1 ) k

28 28 CHAPTER 2. BASIC TRIGONOMETRY 28 Finall, returning to our component representation we have u v = (u 2 v 3 u 3 v 2, u 3 v 1 u 1 v 3, u 1 v 2 u 2 v 1 ) Remark A convenient wa of determining the vector product u v is as follows u v = det Using the cofactor epansion b row 1, we have i j k u 1 u 2 u 3 v 1 v 2 v 3 ( ) ( ) ( ) u2 u 3 u1 u 3 u1 u 2 u v = det i det j + det k v 2 v 3 v 1 v 3 v 1 v 2 = ( ( ) ( ) ( )) u2 u 3 u1 u 3 u1 u 2 det, det, det v 2 v 3 v 1 v 3 v 1 v 2 = (u 2 v 3 u 3 v 2, u 3 v 1 u 1 v 3, u 1 v 2 u 2 v 1 ) We will first show that the vector product u v is orthogonal to both u and v. Theorem 6 Suppose that u = (u 1, u 2, u 3 ) and v = (v 1, v 2, v 3 ) are vectors in R 3. Then i u.( u v) = 0 ii v.( u v) = 0 Eample Suppose that u = (1, 1, 2) and v = (3, 0, 2). Then u v = det = ( det i j k ( ), det ( ) ( 1 1, det 3 0 )) = ( 2 + 0, (2 6), 0 + 3) = ( 2, 4, 3) Note that (1, 1, 2).( 2, 4, 3) = 0 and (3, 0, 2).( 2, 4, 3) = 0.

29 29 CHAPTER 2. BASIC TRIGONOMETRY 29 Eercise For the vectors u = (1, 2, 3) and v = (3, 2, 1) in R 3, evaluate i u v ii v u What comment can ou make about ou answer. Theorem 7 (VECTOR PRODUCT) Suppose that u, v, w R 3 and c R. Then i u v = ( v u); ii u ( v + w) = ( u v) + ( u w); iii ( u + v) w = ( u w) + ( v w); iv c( u v) = (c u) v = u (c v); v u 0 = 0; vi u u = 0. Now to consider an application of vector product to evaluate the area of a parallelogram. To do this we first establish the following result. Theorem 8 Suppose that u = (u 1, u 2, u 3 ) and v = (v 1, v 2, v 3 ) are non-zero vectors in R 3, and that θ [0, π] represents the angle between them. Then i u v 2 = u 2 v 2 ( u. v) 2 ii u v = u v sin θ Now consider a parallelogram below. v sin θ O v θ u u

30 30 CHAPTER 2. BASIC TRIGONOMETRY 30 The base of the parallelogram is given b u, and hence the height of the parallelogram is given as v sin θ. Therefore, from theorem 6 we can sa that the area of the parallelogram is given b u v. Theorem 9 Suppose that u, v R 3. Then the parallelogram with u and v as two of its sides has area u v. Eercise Let u = (1, 1, 4) and v = (4, 1, 7) in R 3. Determine the area of the parallelogram that is defined b u and v. 2.7 Scalar Triple Product Now suppose that u, v, w R 3 that do not lie all on the same plane. What is formed is a parallelepiped, i.e. a solid bod in which each face is a parallelogram, with u, v and w as three of its edges. v w P O u w v The base of the parallelepiped has area v w If the vector OP is perpendicular to the base of the parallelepiped, then OP is in the direction of v w. Now the height of the parallelepiped is equal to the norm of the orthogonal projection of u on v w. In other words, the parallelepiped has height proj v w ( u) = ( ) u.( v w) v w v w v w Hence, we have proj v w ( u) = u.( v w) v w

31 31 CHAPTER 2. BASIC TRIGONOMETRY 31 Therefore the volume of the parallelepiped is given b V = u.( v w) Theorem 10 Suppose that u, v, w R 3. Then the parallelepiped with u, v and w as three of its edges has volume u.( v w). Definition Suppose that u, v, w R 3. Then u.( v w) is called the scalar triple product of u, v and w. Remark It follows from theorem 9 that three vectors in R 3 are coplanar if and onl if their scalar triple product is zero. Eample Suppose that u = (1, 0, 1), v = (2, 1, 3) and w = (0, 1, 1). Then Hence u, v and w are coplanar. u.( v w) = det = 0 Eample The volume of the parallelepiped with u = (1, 0, 1), v = (2, 1, 4) and w = (0, 1, 1) as three of its edges are given b We take the absolute value 1. V = u.( v w) = det = 1 Eercise Let u = (2, 1, 3), v = (4, 1, 0) and w = (2, 0, 1). Show that u, v and w are coplanar. Eercise Let u = (5λ, 2λ, 3), v = (1, 1, 0) and w = (0, 2, 1). For which values of λ are these vectors coplanar?

32 32 CHAPTER 2. BASIC TRIGONOMETRY Some Eercises Eercise Consider the following vectors u = (1, 2, 3) and v = (3, 2, 1) in R 3. i Evaluate u 4 v ii Evaluate u. v ii Determine 7 u 2 v iv Determine u v. v Determine the vector projection of u along v, i.e., proj v ( u) Eercise Consider the following vectors u = (1, 0, 1), v = (2, 1, 3) and w = (0, 1, 1) in R 3. i Evaluate u 4 v + 2 w ii Determine 7 u 2 v iii Evaluate u. v iv Determine the angle θ between u and v. v Determine the vector projection of u along v, i.e., proj v ( u) vi Calculate the components a, b and c of some non-zero vector that is orthogonal to u and v. vii Determine the area of the parallelogram that is defined b u and v. viii Determine u.( v w). What comment can ou make about the vectors u, v and w? Eercise Find the interior angles α, β, γ of a triangle ABC whose vertices are the points A( 1, 0, 2), B(2, 1, 1), C(1, 2, 2)

33 33 CHAPTER 2. BASIC TRIGONOMETRY 33 Contents 1 Vectors in Two Dimensions Addition of Vectors Scalar Multiplication of Vectors Magnitude and Direction Vectors in Three Dimensions Addition of Vectors Scalar Multiplication of Vectors Magnitude and Direction The Scalar Product Components and Projections The Vector Product Scalar Triple Product Some Eercises

MATRIX TRANSFORMATIONS

MATRIX TRANSFORMATIONS CHAPTER 5. MATRIX TRANSFORMATIONS INSTITIÚID TEICNEOLAÍOCHTA CHEATHARLACH INSTITUTE OF TECHNOLOGY CARLOW MATRIX TRANSFORMATIONS Matri Transformations Definition Let A and B be sets. A function f : A B

More information

Analytic Geometry in Three Dimensions

Analytic Geometry in Three Dimensions Analtic Geometr in Three Dimensions. The Three-Dimensional Coordinate Sstem. Vectors in Space. The Cross Product of Two Vectors. Lines and Planes in Space The three-dimensional coordinate sstem is used

More information

Cartesian coordinates in space (Sect. 12.1).

Cartesian coordinates in space (Sect. 12.1). Cartesian coordinates in space (Sect..). Overview of Multivariable Calculus. Cartesian coordinates in space. Right-handed, left-handed Cartesian coordinates. Distance formula between two points in space.

More information

10.2 The Unit Circle: Cosine and Sine

10.2 The Unit Circle: Cosine and Sine 0. The Unit Circle: Cosine and Sine 77 0. The Unit Circle: Cosine and Sine In Section 0.., we introduced circular motion and derived a formula which describes the linear velocit of an object moving on

More information

Exercise Solutions for Introduction to 3D Game Programming with DirectX 10

Exercise Solutions for Introduction to 3D Game Programming with DirectX 10 Exercise Solutions for Introduction to 3D Game Programming with DirectX 10 Frank Luna, September 6, 009 Solutions to Part I Chapter 1 1. Let u = 1, and v = 3, 4. Perform the following computations and

More information

9.2. Cartesian Components of Vectors. Introduction. Prerequisites. Learning Outcomes

9.2. Cartesian Components of Vectors. Introduction. Prerequisites. Learning Outcomes Cartesian Components of Vectors 9.2 Introduction It is useful to be able to describe vectors with reference to specific coordinate sstems, such as the Cartesian coordinate sstem. So, in this Section, we

More information

9.1 VECTORS. A Geometric View of Vectors LEARNING OBJECTIVES. = a, b

9.1 VECTORS. A Geometric View of Vectors LEARNING OBJECTIVES. = a, b vectors and POLAR COORDINATES LEARNING OBJECTIVES In this section, ou will: View vectors geometricall. Find magnitude and direction. Perform vector addition and scalar multiplication. Find the component

More information

Three-Dimensional Space; Vectors

Three-Dimensional Space; Vectors Chapter 3 Three-Dimensional Space; Vectors 3.1 Rectangular Coordinates in 3-Space; Spheres Rectangular Coordinate Sstems To begin, consider three mutuall perpendicular coordinate lines, called the -ais,

More information

Quantities which have only magnitude are called scalars. Quantities which have magnitude and direction are called vectors.

Quantities which have only magnitude are called scalars. Quantities which have magnitude and direction are called vectors. Vectors summary Quantities which have only magnitude are called scalars. Quantities which have magnitude and direction are called vectors. AB is the position vector of B relative to A and is the vector

More information

Review of Coordinate Systems

Review of Coordinate Systems Vector in 2 R and 3 R Review of Coordinate Systems Used to describe the position of a point in space Common coordinate systems are: Cartesian Polar Cartesian Coordinate System Also called rectangular coordinate

More information

Vectors and the Geometry of Space

Vectors and the Geometry of Space Vectors and the Geometry of Space Many quantities in geometry and physics, such as area, volume, temperature, mass, and time, can be characterized by a single real number scaled to appropriate units of

More information

12.1 Systems of Linear equations: Substitution and Elimination

12.1 Systems of Linear equations: Substitution and Elimination . Sstems of Linear equations: Substitution and Elimination Sstems of two linear equations in two variables A sstem of equations is a collection of two or more equations. A solution of a sstem in two variables

More information

Ground Rules. PC1221 Fundamentals of Physics I. Coordinate Systems. Cartesian Coordinate System. Lectures 5 and 6 Vectors.

Ground Rules. PC1221 Fundamentals of Physics I. Coordinate Systems. Cartesian Coordinate System. Lectures 5 and 6 Vectors. PC1221 Fundamentals of Phsics I Lectures 5 and 6 Vectors Dr Ta Seng Chuan 1 Ground ules Switch off our handphone and pager Switch off our laptop computer and keep it No talking while lecture is going on

More information

9.1 VECTORS. A Geometric View of Vectors LEARNING OBJECTIVES. = a, b

9.1 VECTORS. A Geometric View of Vectors LEARNING OBJECTIVES. = a, b vectors and POLAR COORDINATES LEARNING OBJECTIVES In this section, ou will: View vectors geometricall. Find magnitude and direction. Perform vector addition and scalar multiplication. Find the component

More information

Vectors in Two Dimensions

Vectors in Two Dimensions Vectors in Two Dimensions Introduction In engineering, phsics, and mathematics, vectors are a mathematical or graphical representation of a phsical quantit that has a magnitude as well as a direction.

More information

Functions of Several Variables

Functions of Several Variables Chapter 1 Functions of Several Variables 1.1 Introduction A real valued function of n variables is a function f : R, where the domain is a subset of R n. So: for each ( 1,,..., n ) in, the value of f is

More information

Vectors Primer. M.C. Simani. July 7, 2007

Vectors Primer. M.C. Simani. July 7, 2007 Vectors Primer M.. Simani Jul 7, 2007 This note gives a short introduction to the concept of vector and summarizes the basic properties of vectors. Reference textbook: Universit Phsics, Young and Freedman,

More information

MAT 1339-S14 Class 8

MAT 1339-S14 Class 8 MAT 1339-S14 Class 8 July 28, 2014 Contents 7.2 Review Dot Product........................... 2 7.3 Applications of the Dot Product..................... 4 7.4 Vectors in Three-Space.........................

More information

(arrows denote positive direction)

(arrows denote positive direction) 12 Chapter 12 12.1 3-dimensional Coordinate System The 3-dimensional coordinate system we use are coordinates on R 3. The coordinate is presented as a triple of numbers: (a,b,c). In the Cartesian coordinate

More information

MAT 1275: Introduction to Mathematical Analysis. Graphs and Simplest Equations for Basic Trigonometric Functions. y=sin( x) Function

MAT 1275: Introduction to Mathematical Analysis. Graphs and Simplest Equations for Basic Trigonometric Functions. y=sin( x) Function MAT 275: Introduction to Mathematical Analsis Dr. A. Rozenblum Graphs and Simplest Equations for Basic Trigonometric Functions We consider here three basic functions: sine, cosine and tangent. For them,

More information

Lecture 2: Vector-Vector Operations

Lecture 2: Vector-Vector Operations Lecture 2: Vector-Vector Operations Vector-Vector Operations Addition of two vectors Geometric representation of addition and subtraction of vectors Vectors and points Dot product of two vectors Geometric

More information

SECTION 6.3: VECTORS IN THE PLANE

SECTION 6.3: VECTORS IN THE PLANE (Section 6.3: Vectors in the Plane) 6.18 SECTION 6.3: VECTORS IN THE PLANE Assume a, b, c, and d are real numbers. PART A: INTRO A scalar has magnitude but not direction. We think of real numbers as scalars,

More information

Last week we presented the following expression for the angles between two vectors u and v in R n ( ) θ = cos 1 u v

Last week we presented the following expression for the angles between two vectors u and v in R n ( ) θ = cos 1 u v Orthogonality (I) Last week we presented the following expression for the angles between two vectors u and v in R n ( ) θ = cos 1 u v u v which brings us to the fact that θ = π/2 u v = 0. Definition (Orthogonality).

More information

Table of Contents. Module 1

Table of Contents. Module 1 Table of Contents Module 1 11 Order of Operations 16 Signed Numbers 1 Factorization of Integers 17 Further Signed Numbers 13 Fractions 18 Power Laws 14 Fractions and Decimals 19 Introduction to Algebra

More information

The Force Table Introduction: Theory:

The Force Table Introduction: Theory: 1 The Force Table Introduction: "The Force Table" is a simple tool for demonstrating Newton s First Law and the vector nature of forces. This tool is based on the principle of equilibrium. An object is

More information

UNCORRECTED. To recognise the rules of a number of common algebraic relations: y = x 1 y 2 = x

UNCORRECTED. To recognise the rules of a number of common algebraic relations: y = x 1 y 2 = x 5A galler of graphs Objectives To recognise the rules of a number of common algebraic relations: = = = (rectangular hperbola) + = (circle). To be able to sketch the graphs of these relations. To be able

More information

MAT1035 Analytic Geometry

MAT1035 Analytic Geometry MAT1035 Analytic Geometry Lecture Notes R.A. Sabri Kaan Gürbüzer Dokuz Eylül University 2016 2 Contents 1 Review of Trigonometry 5 2 Polar Coordinates 7 3 Vectors in R n 9 3.1 Located Vectors..............................................

More information

Study guide for Exam 1. by William H. Meeks III October 26, 2012

Study guide for Exam 1. by William H. Meeks III October 26, 2012 Study guide for Exam 1. by William H. Meeks III October 2, 2012 1 Basics. First we cover the basic definitions and then we go over related problems. Note that the material for the actual midterm may include

More information

11.4 Polar Coordinates

11.4 Polar Coordinates 11. Polar Coordinates 917 11. Polar Coordinates In Section 1.1, we introduced the Cartesian coordinates of a point in the plane as a means of assigning ordered pairs of numbers to points in the plane.

More information

Math 241, Exam 1 Information.

Math 241, Exam 1 Information. Math 241, Exam 1 Information. 2/13/13, LC 310, 11:15-12:05. Exam 1 will be based on: Sections 12.1-12.5, 14.2. The corresponding assigned homework problems (see http://www.math.sc.edu/ boylan/sccourses/241sp13/241.html)

More information

Physics for Scientists and Engineers. Chapter 3 Vectors and Coordinate Systems

Physics for Scientists and Engineers. Chapter 3 Vectors and Coordinate Systems Phsics for Scientists and Engineers Chapter 3 Vectors and Coordinate Sstems Spring, 2008 Ho Jung Paik Coordinate Sstems Used to describe the position of a point in space Coordinate sstem consists of a

More information

Introduction to 3D Game Programming with DirectX 9.0c: A Shader Approach

Introduction to 3D Game Programming with DirectX 9.0c: A Shader Approach Introduction to 3D Game Programming with DirectX 90c: A Shader Approach Part I Solutions Note : Please email to frank@moon-labscom if ou find an errors Note : Use onl after ou have tried, and struggled

More information

Worksheet #1. A little review.

Worksheet #1. A little review. Worksheet #1. A little review. I. Set up BUT DO NOT EVALUATE definite integrals for each of the following. 1. The area between the curves = 1 and = 3. Solution. The first thing we should ask ourselves

More information

6. Vectors. Given two points, P 0 = (x 0, y 0 ) and P 1 = (x 1, y 1 ), a vector can be drawn with its foot at P 0 and

6. Vectors. Given two points, P 0 = (x 0, y 0 ) and P 1 = (x 1, y 1 ), a vector can be drawn with its foot at P 0 and 6. Vectors For purposes of applications in calculus and physics, a vector has both a direction and a magnitude (length), and is usually represented as an arrow. The start of the arrow is the vector s foot,

More information

Lecture 5. Equations of Lines and Planes. Dan Nichols MATH 233, Spring 2018 University of Massachusetts.

Lecture 5. Equations of Lines and Planes. Dan Nichols MATH 233, Spring 2018 University of Massachusetts. Lecture 5 Equations of Lines and Planes Dan Nichols nichols@math.umass.edu MATH 233, Spring 2018 Universit of Massachusetts Februar 6, 2018 (2) Upcoming midterm eam First midterm: Wednesda Feb. 21, 7:00-9:00

More information

Lines and Planes 1. x(t) = at + b y(t) = ct + d

Lines and Planes 1. x(t) = at + b y(t) = ct + d 1 Lines in the Plane Lines and Planes 1 Ever line of points L in R 2 can be epressed as the solution set for an equation of the form A + B = C. Will we call this the ABC form. Recall that the slope-intercept

More information

FIRST- AND SECOND-ORDER IVPS The problem given in (1) is also called an nth-order initial-value problem. For example, Solve: Solve:

FIRST- AND SECOND-ORDER IVPS The problem given in (1) is also called an nth-order initial-value problem. For example, Solve: Solve: .2 INITIAL-VALUE PROBLEMS 3.2 INITIAL-VALUE PROBLEMS REVIEW MATERIAL Normal form of a DE Solution of a DE Famil of solutions INTRODUCTION We are often interested in problems in which we seek a solution

More information

Trigonometric Functions

Trigonometric Functions Trigonometric Functions This section reviews radian measure and the basic trigonometric functions. C ' θ r s ' ngles ngles are measured in degrees or radians. The number of radians in the central angle

More information

Scalars distance speed mass time volume temperature work and energy

Scalars distance speed mass time volume temperature work and energy Scalars and Vectors scalar is a quantit which has no direction associated with it, such as mass, volume, time, and temperature. We sa that scalars have onl magnitude, or size. mass ma have a magnitude

More information

LINEAR ALGEBRA - CHAPTER 1: VECTORS

LINEAR ALGEBRA - CHAPTER 1: VECTORS LINEAR ALGEBRA - CHAPTER 1: VECTORS A game to introduce Linear Algebra In measurement, there are many quantities whose description entirely rely on magnitude, i.e., length, area, volume, mass and temperature.

More information

x y plane is the plane in which the stresses act, yy xy xy Figure 3.5.1: non-zero stress components acting in the x y plane

x y plane is the plane in which the stresses act, yy xy xy Figure 3.5.1: non-zero stress components acting in the x y plane 3.5 Plane Stress This section is concerned with a special two-dimensional state of stress called plane stress. It is important for two reasons: () it arises in real components (particularl in thin components

More information

Vector Geometry. Chapter 5

Vector Geometry. Chapter 5 Chapter 5 Vector Geometry In this chapter we will look more closely at certain geometric aspects of vectors in R n. We will first develop an intuitive understanding of some basic concepts by looking at

More information

Section 1.2: A Catalog of Functions

Section 1.2: A Catalog of Functions Section 1.: A Catalog of Functions As we discussed in the last section, in the sciences, we often tr to find an equation which models some given phenomenon in the real world - for eample, temperature as

More information

Physics Gravitational force. 2. Strong or color force. 3. Electroweak force

Physics Gravitational force. 2. Strong or color force. 3. Electroweak force Phsics 360 Notes on Griffths - pluses and minuses No tetbook is perfect, and Griffithsisnoeception. Themajorplusisthat it is prett readable. For minuses, see below. Much of what G sas about the del operator

More information

Phys 221. Chapter 3. Vectors A. Dzyubenko Brooks/Cole

Phys 221. Chapter 3. Vectors A. Dzyubenko Brooks/Cole Phs 221 Chapter 3 Vectors adzubenko@csub.edu http://www.csub.edu/~adzubenko 2014. Dzubenko 2014 rooks/cole 1 Coordinate Sstems Used to describe the position of a point in space Coordinate sstem consists

More information

4.1 Distance and Length

4.1 Distance and Length Chapter Vector Geometry In this chapter we will look more closely at certain geometric aspects of vectors in R n. We will first develop an intuitive understanding of some basic concepts by looking at vectors

More information

Chapter 2 - Vector Algebra

Chapter 2 - Vector Algebra A spatial vector, or simply vector, is a concept characterized by a magnitude and a direction, and which sums with other vectors according to the Parallelogram Law. A vector can be thought of as an arrow

More information

Mathematics 309 Conic sections and their applicationsn. Chapter 2. Quadric figures. ai,j x i x j + b i x i + c =0. 1. Coordinate changes

Mathematics 309 Conic sections and their applicationsn. Chapter 2. Quadric figures. ai,j x i x j + b i x i + c =0. 1. Coordinate changes Mathematics 309 Conic sections and their applicationsn Chapter 2. Quadric figures In this chapter want to outline quickl how to decide what figure associated in 2D and 3D to quadratic equations look like.

More information

Special Mathematics Notes

Special Mathematics Notes Special Mathematics Notes Tetbook: Classroom Mathematics Stds 9 & 10 CHAPTER 6 Trigonometr Trigonometr is a stud of measurements of sides of triangles as related to the angles, and the application of this

More information

APPLIED MECHANICS I Resultant of Concurrent Forces Consider a body acted upon by co-planar forces as shown in Fig 1.1(a).

APPLIED MECHANICS I Resultant of Concurrent Forces Consider a body acted upon by co-planar forces as shown in Fig 1.1(a). PPLIED MECHNICS I 1. Introduction to Mechanics Mechanics is a science that describes and predicts the conditions of rest or motion of bodies under the action of forces. It is divided into three parts 1.

More information

13 Spherical geometry

13 Spherical geometry 13 Spherical geometry Let ABC be a triangle in the Euclidean plane. From now on, we indicate the interior angles A = CAB, B = ABC, C = BCA at the vertices merely by A, B, C. The sides of length a = BC

More information

Trigonometric Functions

Trigonometric Functions TrigonometricReview.nb Trigonometric Functions The trigonometric (or trig) functions are ver important in our stud of calculus because the are periodic (meaning these functions repeat their values in a

More information

CHAPTER 3 : VECTORS. Definition 3.1 A vector is a quantity that has both magnitude and direction.

CHAPTER 3 : VECTORS. Definition 3.1 A vector is a quantity that has both magnitude and direction. EQT 101-Engineering Mathematics I Teaching Module CHAPTER 3 : VECTORS 3.1 Introduction Definition 3.1 A ector is a quantity that has both magnitude and direction. A ector is often represented by an arrow

More information

Math 323 Exam 2 - Practice Problem Solutions. 2. Given the vectors a = 1,2,0, b = 1,0,2, and c = 0,1,1, compute the following:

Math 323 Exam 2 - Practice Problem Solutions. 2. Given the vectors a = 1,2,0, b = 1,0,2, and c = 0,1,1, compute the following: Math 323 Eam 2 - Practice Problem Solutions 1. Given the vectors a = 2,, 1, b = 3, 2,4, and c = 1, 4,, compute the following: (a) A unit vector in the direction of c. u = c c = 1, 4, 1 4 =,, 1+16+ 17 17

More information

CHAPTER 10 VECTORS POINTS TO REMEMBER

CHAPTER 10 VECTORS POINTS TO REMEMBER For more important questions visit : www4onocom CHAPTER 10 VECTORS POINTS TO REMEMBER A quantity that has magnitude as well as direction is called a vector It is denoted by a directed line segment Two

More information

ANALYTICAL GEOMETRY Revision of Grade 10 Analytical Geometry

ANALYTICAL GEOMETRY Revision of Grade 10 Analytical Geometry ANALYTICAL GEOMETRY Revision of Grade 10 Analtical Geometr Let s quickl have a look at the analtical geometr ou learnt in Grade 10. 8 LESSON Midpoint formula (_ + 1 ;_ + 1 The midpoint formula is used

More information

Lecture #4: Vector Addition

Lecture #4: Vector Addition Lecture #4: Vector Addition ackground and Introduction i) Some phsical quantities in nature are specified b onl one number and are called scalar quantities. An eample of a scalar quantit is temperature,

More information

8.4 Inverse Functions

8.4 Inverse Functions Section 8. Inverse Functions 803 8. Inverse Functions As we saw in the last section, in order to solve application problems involving eponential unctions, we will need to be able to solve eponential equations

More information

ENT 151 STATICS. Statics of Particles. Contents. Resultant of Two Forces. Introduction

ENT 151 STATICS. Statics of Particles. Contents. Resultant of Two Forces. Introduction CHAPTER ENT 151 STATICS Lecture Notes: Azizul bin Mohamad KUKUM Statics of Particles Contents Introduction Resultant of Two Forces Vectors Addition of Vectors Resultant of Several Concurrent Forces Sample

More information

Distance Formula in 3-D Given any two points P 1 (x 1, y 1, z 1 ) and P 2 (x 2, y 2, z 2 ) the distance between them is ( ) ( ) ( )

Distance Formula in 3-D Given any two points P 1 (x 1, y 1, z 1 ) and P 2 (x 2, y 2, z 2 ) the distance between them is ( ) ( ) ( ) Vectors and the Geometry of Space Vector Space The 3-D coordinate system (rectangular coordinates ) is the intersection of three perpendicular (orthogonal) lines called coordinate axis: x, y, and z. Their

More information

Chapter 4 Analytic Trigonometry

Chapter 4 Analytic Trigonometry Analtic Trigonometr Chapter Analtic Trigonometr Inverse Trigonometric Functions The trigonometric functions act as an operator on the variable (angle, resulting in an output value Suppose this process

More information

6.4 graphs OF logarithmic FUnCTIOnS

6.4 graphs OF logarithmic FUnCTIOnS SECTION 6. graphs of logarithmic functions 9 9 learning ObjeCTIveS In this section, ou will: Identif the domain of a logarithmic function. Graph logarithmic functions. 6. graphs OF logarithmic FUnCTIOnS

More information

Derivatives of Multivariable Functions

Derivatives of Multivariable Functions Chapter 0 Derivatives of Multivariable Functions 0. Limits Motivating Questions In this section, we strive to understand the ideas generated b the following important questions: What do we mean b the limit

More information

Re(z) = a, For example, 3 + 2i = = 13. The complex conjugate (or simply conjugate") of z = a + bi is the number z defined by

Re(z) = a, For example, 3 + 2i = = 13. The complex conjugate (or simply conjugate) of z = a + bi is the number z defined by F COMPLEX NUMBERS In this appendi, we review the basic properties of comple numbers. A comple number is a number z of the form z = a + bi where a,b are real numbers and i represents a number whose square

More information

CHAPTER 4 VECTORS. Before we go any further, we must talk about vectors. They are such a useful tool for

CHAPTER 4 VECTORS. Before we go any further, we must talk about vectors. They are such a useful tool for CHAPTER 4 VECTORS Before we go any further, we must talk about vectors. They are such a useful tool for the things to come. The concept of a vector is deeply rooted in the understanding of physical mechanics

More information

APPENDIXES. B Coordinate Geometry and Lines C. D Trigonometry E F. G The Logarithm Defined as an Integral H Complex Numbers I

APPENDIXES. B Coordinate Geometry and Lines C. D Trigonometry E F. G The Logarithm Defined as an Integral H Complex Numbers I APPENDIXES A Numbers, Inequalities, and Absolute Values B Coordinate Geometr and Lines C Graphs of Second-Degree Equations D Trigonometr E F Sigma Notation Proofs of Theorems G The Logarithm Defined as

More information

ARCH 331 Note Set 3.1 Su2016abn. Forces and Vectors

ARCH 331 Note Set 3.1 Su2016abn. Forces and Vectors orces and Vectors Notation: = name for force vectors, as is A, B, C, T and P = force component in the direction = force component in the direction R = name for resultant vectors R = resultant component

More information

What you will learn today

What you will learn today What you will learn today The Dot Product Equations of Vectors and the Geometry of Space 1/29 Direction angles and Direction cosines Projections Definitions: 1. a : a 1, a 2, a 3, b : b 1, b 2, b 3, a

More information

CHAPTER 1 MEASUREMENTS AND VECTORS

CHAPTER 1 MEASUREMENTS AND VECTORS CHPTER 1 MESUREMENTS ND VECTORS 1 CHPTER 1 MESUREMENTS ND VECTORS 1.1 UNITS ND STNDRDS n phsical quantit must have, besides its numerical value, a standard unit. It will be meaningless to sa that the distance

More information

Coordinate geometry. + bx + c. Vertical asymptote. Sketch graphs of hyperbolas (including asymptotic behaviour) from the general

Coordinate geometry. + bx + c. Vertical asymptote. Sketch graphs of hyperbolas (including asymptotic behaviour) from the general A Sketch graphs of = a m b n c where m = or and n = or B Reciprocal graphs C Graphs of circles and ellipses D Graphs of hperbolas E Partial fractions F Sketch graphs using partial fractions Coordinate

More information

(1) Recap of Differential Calculus and Integral Calculus (2) Preview of Calculus in three dimensional space (3) Tools for Calculus 3

(1) Recap of Differential Calculus and Integral Calculus (2) Preview of Calculus in three dimensional space (3) Tools for Calculus 3 Math 127 Introduction and Review (1) Recap of Differential Calculus and Integral Calculus (2) Preview of Calculus in three dimensional space (3) Tools for Calculus 3 MATH 127 Introduction to Calculus III

More information

Created by T. Madas VECTOR PRACTICE Part B Created by T. Madas

Created by T. Madas VECTOR PRACTICE Part B Created by T. Madas VECTOR PRACTICE Part B THE CROSS PRODUCT Question 1 Find in each of the following cases a) a = 2i + 5j + k and b = 3i j b) a = i + 2j + k and b = 3i j k c) a = 3i j 2k and b = i + 3j + k d) a = 7i + j

More information

1 HOMOGENEOUS TRANSFORMATIONS

1 HOMOGENEOUS TRANSFORMATIONS HOMOGENEOUS TRANSFORMATIONS Purpose: The purpose of this chapter is to introduce ou to the Homogeneous Transformation. This simple 4 4 transformation is used in the geometr engines of CAD sstems and in

More information

And similarly in the other directions, so the overall result is expressed compactly as,

And similarly in the other directions, so the overall result is expressed compactly as, SQEP Tutorial Session 5: T7S0 Relates to Knowledge & Skills.5,.8 Last Update: //3 Force on an element of area; Definition of principal stresses and strains; Definition of Tresca and Mises equivalent stresses;

More information

3.7 InveRSe FUnCTIOnS

3.7 InveRSe FUnCTIOnS CHAPTER functions learning ObjeCTIveS In this section, ou will: Verif inverse functions. Determine the domain and range of an inverse function, and restrict the domain of a function to make it one-to-one.

More information

General Physics I, Spring Vectors

General Physics I, Spring Vectors General Physics I, Spring 2011 Vectors 1 Vectors: Introduction A vector quantity in physics is one that has a magnitude (absolute value) and a direction. We have seen three already: displacement, velocity,

More information

Vectors and Matrices

Vectors and Matrices Vectors and Matrices Scalars We often employ a single number to represent quantities that we use in our daily lives such as weight, height etc. The magnitude of this number depends on our age and whether

More information

Vectors in Physics. Topics to review:

Vectors in Physics. Topics to review: Vectors in Physics Topics to review: Scalars Versus Vectors The Components of a Vector Adding and Subtracting Vectors Unit Vectors Position, Displacement, Velocity, and Acceleration Vectors Relative Motion

More information

Physics 101 Lecture 2 Vectors Dr. Ali ÖVGÜN

Physics 101 Lecture 2 Vectors Dr. Ali ÖVGÜN Phsics 101 Lecture 2 Vectors Dr. Ali ÖVGÜN EMU Phsics Department www.aovgun.com Coordinate Sstems qcartesian coordinate sstem qpolar coordinate sstem Januar 21, 2015 qfrom Cartesian to Polar coordinate

More information

Introduction to Vectors Pg. 279 # 1 6, 8, 9, 10 OR WS 1.1 Sept. 7. Vector Addition Pg. 290 # 3, 4, 6, 7, OR WS 1.2 Sept. 8

Introduction to Vectors Pg. 279 # 1 6, 8, 9, 10 OR WS 1.1 Sept. 7. Vector Addition Pg. 290 # 3, 4, 6, 7, OR WS 1.2 Sept. 8 UNIT 1 INTRODUCTION TO VECTORS Lesson TOPIC Suggested Work Sept. 5 1.0 Review of Pre-requisite Skills Pg. 273 # 1 9 OR WS 1.0 Fill in Info sheet and get permission sheet signed. Bring in $3 for lesson

More information

5.6. Differential equations

5.6. Differential equations 5.6. Differential equations The relationship between cause and effect in phsical phenomena can often be formulated using differential equations which describe how a phsical measure () and its derivative

More information

Systems of Linear Equations: Solving by Graphing

Systems of Linear Equations: Solving by Graphing 8.1 Sstems of Linear Equations: Solving b Graphing 8.1 OBJECTIVE 1. Find the solution(s) for a set of linear equations b graphing NOTE There is no other ordered pair that satisfies both equations. From

More information

Solutions to Assignment #01. (a) Use tail-to-head addition and the Parallelogram Law to nd the resultant, (a + b) = (b + a) :

Solutions to Assignment #01. (a) Use tail-to-head addition and the Parallelogram Law to nd the resultant, (a + b) = (b + a) : Solutions to Assignment # Puhalskii/Kawai Section 8. (I) Demonstrate the vector sums/di erences on separate aes on the graph paper side of our engineering pad. Let a = h; i = i j and b = h; i = i + j:

More information

Vectors & Coordinate Systems

Vectors & Coordinate Systems Vectors & Coordinate Systems Antoine Lesage Landry and Francis Dawson September 7, 2017 Contents 1 Motivations & Definition 3 1.1 Scalar field.............................................. 3 1.2 Vector

More information

Course Notes Math 275 Boise State University. Shari Ultman

Course Notes Math 275 Boise State University. Shari Ultman Course Notes Math 275 Boise State University Shari Ultman Fall 2017 Contents 1 Vectors 1 1.1 Introduction to 3-Space & Vectors.............. 3 1.2 Working With Vectors.................... 7 1.3 Introduction

More information

Three-Dimensional Coordinate Systems. Three-Dimensional Coordinate Systems. Three-Dimensional Coordinate Systems. Three-Dimensional Coordinate Systems

Three-Dimensional Coordinate Systems. Three-Dimensional Coordinate Systems. Three-Dimensional Coordinate Systems. Three-Dimensional Coordinate Systems To locate a point in a plane, two numbers are necessary. We know that any point in the plane can be represented as an ordered pair (a, b) of real numbers, where a is the x-coordinate and b is the y-coordinate.

More information

APPENDIX D Rotation and the General Second-Degree Equation

APPENDIX D Rotation and the General Second-Degree Equation APPENDIX D Rotation and the General Second-Degree Equation Rotation of Aes Invariants Under Rotation After rotation of the - and -aes counterclockwise through an angle, the rotated aes are denoted as the

More information

MOTION IN 2-DIMENSION (Projectile & Circular motion And Vectors)

MOTION IN 2-DIMENSION (Projectile & Circular motion And Vectors) MOTION IN -DIMENSION (Projectile & Circular motion nd Vectors) INTRODUCTION The motion of an object is called two dimensional, if two of the three co-ordinates required to specif the position of the object

More information

Identifying second degree equations

Identifying second degree equations Chapter 7 Identifing second degree equations 71 The eigenvalue method In this section we appl eigenvalue methods to determine the geometrical nature of the second degree equation a 2 + 2h + b 2 + 2g +

More information

GEOMETRY AND VECTORS

GEOMETRY AND VECTORS GEOMETRY AND VECTORS Distinguishing Between Points in Space One Approach Names: ( Fred, Steve, Alice...) Problem: distance & direction must be defined point-by-point More elegant take advantage of geometry

More information

The Cross Product. Philippe B. Laval. Spring 2012 KSU. Philippe B. Laval (KSU) The Cross Product Spring /

The Cross Product. Philippe B. Laval. Spring 2012 KSU. Philippe B. Laval (KSU) The Cross Product Spring / The Cross Product Philippe B Laval KSU Spring 2012 Philippe B Laval (KSU) The Cross Product Spring 2012 1 / 15 Introduction The cross product is the second multiplication operation between vectors we will

More information

Answer Explanations. The SAT Subject Tests. Mathematics Level 1 & 2 TO PRACTICE QUESTIONS FROM THE SAT SUBJECT TESTS STUDENT GUIDE

Answer Explanations. The SAT Subject Tests. Mathematics Level 1 & 2 TO PRACTICE QUESTIONS FROM THE SAT SUBJECT TESTS STUDENT GUIDE The SAT Subject Tests Answer Eplanations TO PRACTICE QUESTIONS FROM THE SAT SUBJECT TESTS STUDENT GUIDE Mathematics Level & Visit sat.org/stpractice to get more practice and stud tips for the Subject Test

More information

STUDY KNOWHOW PROGRAM STUDY AND LEARNING CENTRE. Functions & Graphs

STUDY KNOWHOW PROGRAM STUDY AND LEARNING CENTRE. Functions & Graphs STUDY KNOWHOW PROGRAM STUDY AND LEARNING CENTRE Functions & Graphs Contents Functions and Relations... 1 Interval Notation... 3 Graphs: Linear Functions... 5 Lines and Gradients... 7 Graphs: Quadratic

More information

12.1 Three Dimensional Coordinate Systems (Review) Equation of a sphere

12.1 Three Dimensional Coordinate Systems (Review) Equation of a sphere 12.2 Vectors 12.1 Three Dimensional Coordinate Systems (Reiew) Equation of a sphere x a 2 + y b 2 + (z c) 2 = r 2 Center (a,b,c) radius r 12.2 Vectors Quantities like displacement, elocity, and force inole

More information

Math 32A Discussion Session Week 2 Notes October 10 and 12, 2017

Math 32A Discussion Session Week 2 Notes October 10 and 12, 2017 Math 32A Discussion Session Week 2 Notes October 10 and 12, 2017 Since we didn t get a chance to discuss parametrized lines last week, we may spend some time discussing those before moving on to the dot

More information

Determinants. We said in Section 3.3 that a 2 2 matrix a b. Determinant of an n n Matrix

Determinants. We said in Section 3.3 that a 2 2 matrix a b. Determinant of an n n Matrix 3.6 Determinants We said in Section 3.3 that a 2 2 matri a b is invertible if and onl if its c d erminant, ad bc, is nonzero, and we saw the erminant used in the formula for the inverse of a 2 2 matri.

More information

Rigid Body Transforms-3D. J.C. Dill transforms3d 27Jan99

Rigid Body Transforms-3D. J.C. Dill transforms3d 27Jan99 ESC 489 3D ransforms 1 igid Bod ransforms-3d J.C. Dill transforms3d 27Jan99 hese notes on (2D and) 3D rigid bod transform are currentl in hand-done notes which are being converted to this file from that

More information

220A Solutions. Assignment 5.

220A Solutions. Assignment 5. 4-40. Draw the free-bod diagram. 220A Solutions Assignment 5. - cos sin here are two stumbling points. he first is to resist the temptation to draw a force pointing down the inclined plane. he onl forces

More information

Vector Arithmetic and Geometry

Vector Arithmetic and Geometry Vector Arithmetic and Geometry In applied mathematics and physics and engineering, vectors often have two components to represent for example planar motion or more likely have three components to represent

More information

2- Scalars and Vectors

2- Scalars and Vectors 2- Scalars and Vectors Scalars : have magnitude only : Length, time, mass, speed and volume is example of scalar. v Vectors : have magnitude and direction. v The magnitude of is written v v Position, displacement,

More information