1.5 Equations of Lines and Planes in 3-D

Size: px
Start display at page:

Download "1.5 Equations of Lines and Planes in 3-D"

Transcription

1 40 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE Figure 1.16: Line through P 0 parallel to v 1.5 Equations of Lines and Planes in 3-D Recall that given a point P = (a, b, c), one can draw a vector from the origin to P. Such a vector is called the position vector of the point P and its coordinates are a, b, c, the same as P. Position vectors are usually denoted r. In this section, we derive the equations of lines and planes in 3-D. We do so by finding the conditions a point P = (x, y, z) or its corresponding position vector r = x, y, z must satisfy in order to belong to the object being studied (line or plane) Lines And Line Segments In 3-D, like in 2-D, a line is uniquely determined when one point on the line and the direction of the line are given. In this section, we assume we are given a point P 0 = (x 0, y 0, z 0 ) on the line and a direction vector v = a, b, c. Our goal is to determine the equation of the line L which goes through P 0 and is parallel to v. Definition 65 a, b, and c are called the direction numbers of the line L. Let P (x, y, z) be an arbitrary point on L. We wish to find the conditions P must satisfy to be on the line L.

2 1.5. EQUATIONS OF LINES AND PLANES IN 3-D 41 Vector Equation Consider figure We see that a necessary and suffi cient condition for the point P to be on the line L is that P 0 P be parallel to v. This means that there exists a scalar t such that P 0 P = t v Let r 0 be the position vector of P 0 and r be the position vector of P. Then, P 0 P = r r 0 Thus, we obtain That is r r0 = t v r = r0 + t v (1.9) Definition 66 Equation 1.9 is known as the vector equation of the line L. The scalar t used in the equation is called a parameter. The parameter t can be any real number. As it varies, the point P moves along the line. When t = 0, P is the same as P 0. When t > 0, P is away from P 0 in the direction of v and when t < 0, P is away from P 0 in the direction opposite v. The larger t is (in absolute value), the further away P is from P 0. Parametric Equations If we switch to coordinates, equation 1.9 becomes x, y, z = x 0, y 0, z 0 + t a, b, c = x 0 + at, y 0 + bt, z 0 + ct Two vectors are equal when their corresponding coordinates are equal. Thus, we obtain x = x 0 + at y = y 0 + bt (1.10) z = z 0 + ct Definition 67 Equation 1.10 is known as the parametric equation of the line L. Symmetric Equations If we solve for t in equation 1.10, assuming that a 0, b 0, and c 0 we obtain x x 0 = y y 0 = z z 0 (1.11) a b c Definition 68 Equation 1.11 is known as the symmetric equations of the line L.

3 42 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE Remark 69 Equation 1.11 is really three equations x x 0 a y y 0 b x x 0 a = y y 0 b = z z 0 c = z z 0 c (1.12) In the case one of the direction numbers is 0, the symmetric equation simply becomes the equation from 1.12 which does not involve the direction number being 0. The variable corresponding to the direction number being 0 is simply set to the corresponding coordinate of the given point. For example, if a = 0 then the symmetric equations are Examples y y 0 b x = x 0 = z z 0 c Example 70 Find the parametric and symmetric equations of the line through P ( 1, 4, 2) in the direction of v = 1, 2, 3 The parametric equations are The symmetric equations are x = 1 + t y = 4 + 2t z = 2 + 3t x + 1 = y 4 2 = z 2 3 Example 71 Find the parametric and symmetric equations of the line through P 1 (1, 2, 3) and P 2 (2, 4, 1). First, we need to find the direction vector. Since the line goes through P 1 and P 2, the vector P 1 P 2 will be parallel to the line. P 1 P 2 = 1, 2, 2 Using equation 1.10, we get If we solve for t, we get x = 1 + t y = 2 + 2t z = 3 2t x 1 = y 2 2 = z 3 2

4 1.5. EQUATIONS OF LINES AND PLANES IN 3-D 43 Equation of a Line Segment As the last two examples illustrate, we can also find the equation of a line if we are given two points instead of a point and a direction vector. Let s derive a formula in the general case. Suppose that we are given two points on the line P 0 = (x 0, y o, z 0 ) and P 1 = (x 1, y 1, z 1 ). Then P 0 P 1 = x 1 x 0, y 1 y 0, z 1 z 0 is a direction vector for the line. Using P 0 for the point and P 0 P 1 for the direction vector, we see that the parametric equations of the line are x = x 0 + t (x 1 x 0 ) y = y 0 + t (y 1 y 0 ) z = z 0 + t (z 1 z 0 ) This is usually written differently. If we distribute t and factor differently, we get x = (1 t) x 0 + tx 1 y = (1 t) y 0 + ty 1 (1.13) z = (1 t) z 0 + tz 1 When t = 0, we are at the point P 0 and when t = 1, we are at the point P 1. So, if t is allowed to take on any real value, then this equation will describe the whole line. On the other hand, if we restrict t to [0, 1], then this equation describes the portion of the line between P 0 and P 1 which is called the line segment from P 0 to P 1. Example 72 Find the equation of the line segment from P 0 P 1 (2, 4, 1). Using equation 1.13 we get x = (1 t) 1 + 2t y = (1 t) 2 + 4t with t [0, 1] z = (1 t) 3 + t = (1, 2, 3) to Intersecting Lines, Parallel Lines Recall that in 2-D two lines were either parallel or intersected. In 3-D it is also possible for two lines to not be parallel and to not intersect. Such lines are called skew lines. Two lines are parallel if their direction vectors are parallel. If two lines are not parallel, we can find if they intersect if there exists values of the parameters in their equations which produce the same point. More specifically, if the first line has equation r 0 + t v and the second line has equation R 0 + s u then they will intersect if there exists a value for t and s such that r 0 + t v = R 0 + s u. Also, when two lines intersect, we can find the angle between them by finding the smallest angle between their direction vectors (using the dot product). Finally, two lines are perpendicular if their direction vectors are perpendicular.

5 44 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE Remark 73 You will note that we used a different letter for the parameter in each equation because it may be a different value of the parameter which will produce the same point in each equation. We illustrate this with some examples. Example 74 Let L 1 be the line through (1, 6, 2) with direction vector 1, 2, 1 and L 2 be the line through (0, 4, 1) with direction vector 2, 1, 2. Determine if the lines are parallel, if they intersect or if they are skew. If they intersect, find the point at which they intersect. For the lines to be parallel, their direction vectors would have to be parallel, that is there would have to exist a constant c such that Which would imply 1, 2, 1 = c 2, 1, 2 1 = 2c 2 = c 1 = 2c Which has no solution. So, the lines are no parallel. We now derive the equation of each line. For L1 For L 2 x = 1 + t y = 6 + 2t z = 2 + t x = 2s y = 4 + s z = 1 + 2s The line will intersect if we can solve 1 + t = 2s 6 + 2t = 4 + s 2 + t = 1 + 2s Equation 1 gives t = 2s 1 If we substitute in equation 2, we get 6 + 2t = 4 + s (2s 1) = 4 + s 6 + 4s 2 = 4 + s 3s = 12 s = 4

6 1.5. EQUATIONS OF LINES AND PLANES IN 3-D 45 Since we had t = 2s 1 this implies that t = 7. We need to verify that these values also work in equation 3. Replacing s and t by their values gives us = (4) 9 = 9 So, the two lines intersect. To find the point of intersection, we can use the equation of either line with the value of the corresponding parameter. If we use L 1, the parameter is t and the value of t which gives the point of intersection is t = 7. Thus, the point of intersection is That is x = y = (7) z = x = 8 y = 8 z = 9 Example 75 Find the angle between the two previous lines. Their direction vectors are u = 1, 2, 1 and v = 2, 1, 2. The smallest angle between these vectors is θ = u v cos 1 u v = cos = cos Example 76 Find the points at which L 1 in the example above intersects with the coordinate planes. The parametric equations of L 1 are x = 1 + t y = 6 + 2t z = 2 + t Intersection with the xy-plane. On the xy-plane, z = 0. If we replace in the equation of L 1, we get t = 2. This allows us to find x and y. x = 1 2 = 1 and y = 6+2 ( 2) = 10. Thus, L 1 intersect the xy-plane at ( 1, 10, 0). Intersection with the xz-plane. On the xz-plane, y = 0. Using the same technique as above, we get 0 = 6 + 2t or t = 3. Thus, x = = 4 and z = = 5. Thus L 1 intersects the xz-plane at (4, 0, 5).

7 46 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE Figure 1.17: Plane determined by a point and its normal Intersection with the yz-plane. On the yz-plane, x = 0. Thus, 0 = 1 + t or t = 1. This gives us y = ( 1) = 8 and z = 2 1 = 1. It follows that L 1 intersects the yz-plane at (0, 8, 1). Summary for Lines 1. Be able to find the equation of a line given a point and a direction or given two points. 2. Be able to tell if two lines are parallel, intersect or are skewed. 3. Be able to find the angle between two lines which intersect. 4. Be able to find the points at which a line intersect with the coordinate planes Planes Plane determined by a point and its normal A plane is uniquely determined given a point on the plane and a vector perpendicular to the plane. Such a vector is said to be normal to the plane. To help visualize this, consider figure Given a point P 0 = (x 0, y 0, z 0 ) and a normal n = a, b, c to a plane, a point P = (x, y, z) will be on the plane if P 0 P is perpendicular to n that is n P0 P = 0 (1.14)

8 1.5. EQUATIONS OF LINES AND PLANES IN 3-D 47 This is known as the vector equation of a plane. Switching to coordinates, we get a, b, c x x 0, y y 0, z z 0 = 0 a (x x 0 ) + b (y y 0 ) + c (z z 0 ) = 0 We usually write this as ax + by + cz + d = 0 (1.15) where d = ax 0 by 0 cz 0. This is known as the scalar equation of a plane. It is also the equation of a plane in implicit form. Remark 77 Note that when we know the scalar equation of a plane, we automatically know its normal; it is given by the coeffi cients of x, y, and z. Remark 78 A plane in 3D is the analogous of a line in 2D. Recall that a normal to the line ax + by + c = 0 in 2D is a, b. Similarly, a normal to the plane ax + by + cz + d = 0 is a, b, c. Example 79 The normal to the plane 3x + 2y z = 10 is 3, 2, 1. Example 80 The scalar equation of a plane through (1, 2, 3) with normal 2, 1, 4 is 2 (x 1) + 1 (y 2) + 4 (z 3) = 0 2x + y + 4z 16 = 0 Plane determined by three points If instead of being given a point and the normal, we are given three non-colinear points P 1, P 2, and P 3, we form the vectors P 1 P 2 and P 1 P 3. The cross product P 1 P 2 P 1 P 3 is a vector perpendicular to both P 1 P 2 and P 1 P 3 and therefore perpendicular to the plane. We can then use one of the point, the vector obtained from the cross product to derive the equation of the plane. Example 81 Find the equation of the plane through the points P 1 (0, 1, 1), P 2 (1, 0, 1) and P 3 (1, 3, 1). A normal to the plane is P 1 P 2 P 1 P 3 = i j k = 2 i + 2 j 3 k = 2, 2, 3

9 48 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE A point P (x, y, z) is on the plane if P 1 P ( P 1 P 2 ) P 1 P 3 = 0 x, y 1, z 1 2, 2, 3 = 0 2x + 2 (y 1) 3 (z 1) = 0 Parallel Planes, Intersecting Planes 2x + 2y 3z + 1 = 0 Two planes are parallel if and only if their normals are parallel. If two planes p 1 with normal n 1 and p 2 with normal n 2 are not parallel, then the angle θ between them is defined to be the smallest angle between their normals that is the angle with the non-negative cosine. In other words, θ = cos 1 n 1 n 2 n 1 n 2 (1.16) Example 82 Find the angle between the planes p 1 : x + y + z 1 = 0 and p 2 : x 2y + 3z 1 = 0. Find their intersection. Angle: The normal to p 1 is n 1 = 1, 1, 1 and the normal to p 2 is n 2 = 1, 2, 3. Therefore, the angle θ between them is θ = cos 1 n 1 n 2 n 1 n 2 = cos = cos Intersection: When two planes are not parallel, they intersect in a line. To find the equation of a line, we need a point and a direction. The direction of the line will be perpendicular to both n 1 and n 2. Thus, it can be found with n 1 n 2. n 1 i j k n 2 = = 5 i 2 j 3 k = 5, 2, 3 We also need a point on the line. For this, we can use the equations of the planes. To be on the line, a point must belong to the two planes. However, that gives us only two equations and we have three unknowns. So, we can

10 1.5. EQUATIONS OF LINES AND PLANES IN 3-D 49 also fix one of the variables. For example, if we set z = 0, we will be looking for the point on the line which intersects the two planes and also the xy-plane. This is what we will do. So, we must solve { x + y = 1 x 2y = 1 The solutions are x = 1 and y = 0. So, (1, 0, 0) is a point on the line. Thus, the parametric equations of the line are Summary for Planes x = 1 + 5t y = 2t z = 3t In addition, using the material studied so far, you should be able to do the following: 1. Be able to find the equation of a plane given a point on the plane and a normal to the plane. 2. Be able to find the equation of a plane given three points on the plane. 3. Be able to find the equation of a plane through a point and parallel to a given plane. 4. Be able to find the equation of a plane through a point and a line not containing the point. 5. Be able to tell if two planes are parallel, perpendicular. 6. Be able to find the angle between two planes. 7. Be able to find the traces of a plane. 8. Be able to find the intersection of two planes. Make sure you can do the above before attempting the problems Problems Do the following problems. 1. Find the parametric equations for the line through the point P = (3, 4, 1) parallel to i + j + k. 2. Find the parametric equations for the line through the point P = ( 2, 0, 3) and Q = (3, 5, 2).

11 50 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE 3. Find the parametric equations for the line through the origin parallel to 2 j + k. 4. Find the parametric equations for the line through the point (1, 1, 1) parallel to the z-axis. 5. Find the parametric equations for the line through the point (0, 7, 0) perpendicular to the plane x + 2y + 2z = Find the parametric equations for the x-axis. 7. Find the equation of the line segment from (0, 0, 0) to ( 1, 1, 3 2). 8. Find the equation of the line segment from (1, 0, 0) to (1, 1, 0). 9. Find the equation of the plane through P = (0, 2, 1) normal to 3 i 2 j k. 10. Find the equation of the plane through P = (1, 1, 1), Q = (2, 0, 2) and R = (0, 2, 1). 11. Find the equation of the plane through P = (2, 4, 5) perpendicular to the x = 5 + t line y = 1 + 3t z = 4t x = 1 + 2t x = 2 + s 12. Find the point of intersection of the lines y = 2 + 3t and y = 4 + 2s z = 3 + 4t z = 1 4s Then, find the plane determined by these two lines. x = 1 + t 13. Find the plane determined by intersecting the lines y = 2 + t and z = 1 t x = 1 4s y = 1 + 2s z = 2 2s 14. Find the plane through P 0 = (2, 1, 1) perpendicular to the line of intersection of the planes 2x + y z = 3 and x + 2y + z = 2. x = 4t 15. Find the distance from the point P = (0, 0, 12) to the line y = 2t z = 2t 16. Find the distance from the point P = (2, 1, 3) to the line x = 2 + 2t y = 1 + 6t z = Find the distance from the point P = (2, 3, 4) to the plane x + 2y + 2z = 13..

12 1.5. EQUATIONS OF LINES AND PLANES IN 3-D Find the distance from the point P = (0, 1, 1) to the plane 4y + 3z = Find the distance between the two planes x+2y+6z = 1 and x+2y+6z = Find the angle between the two planes 2x+2y+2z = 3 and 2x 2y z = 5. x = 1 t 21. Find the point of intersection between the line y = 3t and the plane z = 1 + t 2x y + 3z = Determine whether the lines taken two at a time are parallel, intersect or skew. If they intersect, find their point of intersection. x = 3 + 2t L 1 : y = 1 + 4t z = 2 t L 2 : L 3 : 23. Find the points in which the line planes. x = 1 + 4s y = 1 + 2s z = 3 + 4s x = 3 + 2r y = 2 + r z = 2 + 2r x = 1 + 2t y = 1 t z = 3t meet the coordinate 24. In the plane, the slope-intercept form of the equation of a line is y = mx+b where m is the slope and b the y-intercept. Show that the vector (1, m) is a direction vector of the line y = mx + b. (hint: Pick 2 points P 1 and P 2 on the line the vector P 1 P 2 is a direction vector for the line). 25. Another form of the equation of a line in the plane is ax + by + c = 0. Using a similar approach as the one in the previous problem, show that (b, a) is a direction vector for such a line. What is a vector perpendicular to the line? change in y 26. For a line in space, the notion of slope ( ) does not carry over change in x because there are three variables changing, it is replaced by the direction vector. However, if a line is one of the coordinate planes, then there are only two variables involved. If the line is in the xy-plane, then only x and y are changing. If a line is in the xz-plane, then only x and z are changing. If a line is in the yz-plane, then only y and z are changing. Find the direction vector of a line having its slope equal to m in each of the coordinate planes. (hint: use problem??).

13 52 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE 27. Let L be the line that passes through the points Q and R and let P be a point not on L. Show that the distance between P and L is QR QP. QR Show that this agrees with the formula in the book for the distance between a point S and a line through P parallel to v which is P S v v. 28. Let P be a point not on the plane determined by the points Q, R and S. Show that the distance between P and the plane is QR ( ) QS QP. QR QS 29. Show that the distance from the point P 1 = (x 1, y 1 ) to the line ax+by+c = 0 is ax1+by1+c a 2 +b Show that the distance from the point P 1 = (x 1, y 1, z 1 ) and the plane ax + by + cz + d = 0 is ax1+by1+cz1+d a. 2 +b 2 +c Assuming d 1 d 2, explain why the two planes given by ax+by+cz+d 1 = 0 and ax + by + cz + d 2 = 0 are parallel, then compute the distance between them.

12.5 Equations of Lines and Planes

12.5 Equations of Lines and Planes Instructor: Longfei Li Math 43 Lecture Notes.5 Equations of Lines and Planes What do we need to determine a line? D: a point on the line: P 0 (x 0, y 0 ) direction (slope): k 3D: a point on the line: P

More information

Section 2.4: Equations of Lines and Planes

Section 2.4: Equations of Lines and Planes Section.4: Equations of Lines and Planes An equation of three variable F (x, y, z) 0 is called an equation of a surface S if For instance, (x 1, y 1, z 1 ) S if and only if F (x 1, y 1, z 1 ) 0. x + y

More information

Equations of Lines and Planes

Equations of Lines and Planes Calculus 3 Lia Vas Equations of Lines and Planes Planes. A plane is uniquely determined by a point in it and a vector perpendicular to it. An equation of the plane passing the point (x 0, y 0, z 0 ) perpendicular

More information

LINES AND PLANES CHRIS JOHNSON

LINES AND PLANES CHRIS JOHNSON LINES AND PLANES CHRIS JOHNSON Abstract. In this lecture we derive the equations for lines and planes living in 3-space, as well as define the angle between two non-parallel planes, and determine the distance

More information

Determine whether the following lines intersect, are parallel, or skew. L 1 : x = 6t y = 1 + 9t z = 3t. x = 1 + 2s y = 4 3s z = s

Determine whether the following lines intersect, are parallel, or skew. L 1 : x = 6t y = 1 + 9t z = 3t. x = 1 + 2s y = 4 3s z = s Homework Solutions 5/20 10.5.17 Determine whether the following lines intersect, are parallel, or skew. L 1 : L 2 : x = 6t y = 1 + 9t z = 3t x = 1 + 2s y = 4 3s z = s A vector parallel to L 1 is 6, 9,

More information

Equations Involving Lines and Planes Standard equations for lines in space

Equations Involving Lines and Planes Standard equations for lines in space Equations Involving Lines and Planes In this section we will collect various important formulas regarding equations of lines and planes in three dimensional space Reminder regarding notation: any quantity

More information

Section 13.5 Equations of Lines and Planes

Section 13.5 Equations of Lines and Planes Section 13.5 Equations of Lines and Planes Generalizing Linear Equations One of the main aspects of single variable calculus was approximating graphs of functions by lines - specifically, tangent lines.

More information

Jim Lambers MAT 169 Fall Semester 2009-10 Lecture 25 Notes

Jim Lambers MAT 169 Fall Semester 2009-10 Lecture 25 Notes Jim Lambers MAT 169 Fall Semester 009-10 Lecture 5 Notes These notes correspond to Section 10.5 in the text. Equations of Lines A line can be viewed, conceptually, as the set of all points in space that

More information

Section 9.5: Equations of Lines and Planes

Section 9.5: Equations of Lines and Planes Lines in 3D Space Section 9.5: Equations of Lines and Planes Practice HW from Stewart Textbook (not to hand in) p. 673 # 3-5 odd, 2-37 odd, 4, 47 Consider the line L through the point P = ( x, y, ) that

More information

Math 241, Exam 1 Information.

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

More information

A vector is a directed line segment used to represent a vector quantity.

A vector is a directed line segment used to represent a vector quantity. Chapters and 6 Introduction to Vectors A vector quantity has direction and magnitude. There are many examples of vector quantities in the natural world, such as force, velocity, and acceleration. A vector

More information

1.3. DOT PRODUCT 19. 6. If θ is the angle (between 0 and π) between two non-zero vectors u and v,

1.3. DOT PRODUCT 19. 6. If θ is the angle (between 0 and π) between two non-zero vectors u and v, 1.3. DOT PRODUCT 19 1.3 Dot Product 1.3.1 Definitions and Properties The dot product is the first way to multiply two vectors. The definition we will give below may appear arbitrary. But it is not. It

More information

10.5. Click here for answers. Click here for solutions. EQUATIONS OF LINES AND PLANES. 3x 4y 6z 9 4, 2, 5. x y z. z 2. x 2. y 1.

10.5. Click here for answers. Click here for solutions. EQUATIONS OF LINES AND PLANES. 3x 4y 6z 9 4, 2, 5. x y z. z 2. x 2. y 1. SECTION EQUATIONS OF LINES AND PLANES 1 EQUATIONS OF LINES AND PLANES A Click here for answers. S Click here for solutions. 1 Find a vector equation and parametric equations for the line passing through

More information

13.4 THE CROSS PRODUCT

13.4 THE CROSS PRODUCT 710 Chapter Thirteen A FUNDAMENTAL TOOL: VECTORS 62. Use the following steps and the results of Problems 59 60 to show (without trigonometry) that the geometric and algebraic definitions of the dot product

More information

9 Multiplication of Vectors: The Scalar or Dot Product

9 Multiplication of Vectors: The Scalar or Dot Product Arkansas Tech University MATH 934: Calculus III Dr. Marcel B Finan 9 Multiplication of Vectors: The Scalar or Dot Product Up to this point we have defined what vectors are and discussed basic notation

More information

Section 1.4. Lines, Planes, and Hyperplanes. The Calculus of Functions of Several Variables

Section 1.4. Lines, Planes, and Hyperplanes. The Calculus of Functions of Several Variables The Calculus of Functions of Several Variables Section 1.4 Lines, Planes, Hyperplanes In this section we will add to our basic geometric understing of R n by studying lines planes. If we do this carefully,

More information

11.1. Objectives. Component Form of a Vector. Component Form of a Vector. Component Form of a Vector. Vectors and the Geometry of Space

11.1. Objectives. Component Form of a Vector. Component Form of a Vector. Component Form of a Vector. Vectors and the Geometry of Space 11 Vectors and the Geometry of Space 11.1 Vectors in the Plane Copyright Cengage Learning. All rights reserved. Copyright Cengage Learning. All rights reserved. 2 Objectives! Write the component form of

More information

Math 241 Lines and Planes (Solutions) x = 3 3t. z = 1 t. x = 5 + t. z = 7 + 3t

Math 241 Lines and Planes (Solutions) x = 3 3t. z = 1 t. x = 5 + t. z = 7 + 3t Math 241 Lines and Planes (Solutions) The equations for planes P 1, P 2 and P are P 1 : x 2y + z = 7 P 2 : x 4y + 5z = 6 P : (x 5) 2(y 6) + (z 7) = 0 The equations for lines L 1, L 2, L, L 4 and L 5 are

More information

Section 11.4: Equations of Lines and Planes

Section 11.4: Equations of Lines and Planes Section 11.4: Equations of Lines and Planes Definition: The line containing the point ( 0, 0, 0 ) and parallel to the vector v = A, B, C has parametric equations = 0 + At, = 0 + Bt, = 0 + Ct, where t R

More information

Geometric description of the cross product of the vectors u and v. The cross product of two vectors is a vector! u x v is perpendicular to u and v

Geometric description of the cross product of the vectors u and v. The cross product of two vectors is a vector! u x v is perpendicular to u and v 12.4 Cross Product Geometric description of the cross product of the vectors u and v The cross product of two vectors is a vector! u x v is perpendicular to u and v The length of u x v is uv u v sin The

More information

1 Functions, Graphs and Limits

1 Functions, Graphs and Limits 1 Functions, Graphs and Limits 1.1 The Cartesian Plane In this course we will be dealing a lot with the Cartesian plane (also called the xy-plane), so this section should serve as a review of it and its

More information

(a) We have x = 3 + 2t, y = 2 t, z = 6 so solving for t we get the symmetric equations. x 3 2. = 2 y, z = 6. t 2 2t + 1 = 0,

(a) We have x = 3 + 2t, y = 2 t, z = 6 so solving for t we get the symmetric equations. x 3 2. = 2 y, z = 6. t 2 2t + 1 = 0, Name: Solutions to Practice Final. Consider the line r(t) = 3 + t, t, 6. (a) Find symmetric equations for this line. (b) Find the point where the first line r(t) intersects the surface z = x + y. (a) We

More information

Section 1.1. Introduction to R n

Section 1.1. Introduction to R n The Calculus of Functions of Several Variables Section. Introduction to R n Calculus is the study of functional relationships and how related quantities change with each other. In your first exposure to

More information

Two vectors are equal if they have the same length and direction. They do not

Two vectors are equal if they have the same length and direction. They do not Vectors define vectors Some physical quantities, such as temperature, length, and mass, can be specified by a single number called a scalar. Other physical quantities, such as force and velocity, must

More information

THREE DIMENSIONAL GEOMETRY

THREE DIMENSIONAL GEOMETRY Chapter 8 THREE DIMENSIONAL GEOMETRY 8.1 Introduction In this chapter we present a vector algebra approach to three dimensional geometry. The aim is to present standard properties of lines and planes,

More information

Lecture 14: Section 3.3

Lecture 14: Section 3.3 Lecture 14: Section 3.3 Shuanglin Shao October 23, 2013 Definition. Two nonzero vectors u and v in R n are said to be orthogonal (or perpendicular) if u v = 0. We will also agree that the zero vector in

More information

Review Sheet for Test 1

Review Sheet for Test 1 Review Sheet for Test 1 Math 261-00 2 6 2004 These problems are provided to help you study. The presence of a problem on this handout does not imply that there will be a similar problem on the test. And

More information

discuss how to describe points, lines and planes in 3 space.

discuss how to describe points, lines and planes in 3 space. Chapter 2 3 Space: lines and planes In this chapter we discuss how to describe points, lines and planes in 3 space. introduce the language of vectors. discuss various matters concerning the relative position

More information

Warm Up. Write an equation given the slope and y-intercept. Write an equation of the line shown.

Warm Up. Write an equation given the slope and y-intercept. Write an equation of the line shown. Warm Up Write an equation given the slope and y-intercept Write an equation of the line shown. EXAMPLE 1 Write an equation given the slope and y-intercept From the graph, you can see that the slope is

More information

Solutions to old Exam 1 problems

Solutions to old Exam 1 problems Solutions to old Exam 1 problems Hi students! I am putting this old version of my review for the first midterm review, place and time to be announced. Check for updates on the web site as to which sections

More information

Example SECTION 13-1. X-AXIS - the horizontal number line. Y-AXIS - the vertical number line ORIGIN - the point where the x-axis and y-axis cross

Example SECTION 13-1. X-AXIS - the horizontal number line. Y-AXIS - the vertical number line ORIGIN - the point where the x-axis and y-axis cross CHAPTER 13 SECTION 13-1 Geometry and Algebra The Distance Formula COORDINATE PLANE consists of two perpendicular number lines, dividing the plane into four regions called quadrants X-AXIS - the horizontal

More information

Lines and Planes in R 3

Lines and Planes in R 3 .3 Lines and Planes in R 3 P. Daniger Lines in R 3 We wish to represent lines in R 3. Note that a line may be described in two different ways: By specifying two points on the line. By specifying one point

More information

L 2 : x = s + 1, y = s, z = 4s + 4. 3. Suppose that C has coordinates (x, y, z). Then from the vector equality AC = BD, one has

L 2 : x = s + 1, y = s, z = 4s + 4. 3. Suppose that C has coordinates (x, y, z). Then from the vector equality AC = BD, one has The line L through the points A and B is parallel to the vector AB = 3, 2, and has parametric equations x = 3t + 2, y = 2t +, z = t Therefore, the intersection point of the line with the plane should satisfy:

More information

Exam 1 Sample Question SOLUTIONS. y = 2x

Exam 1 Sample Question SOLUTIONS. y = 2x Exam Sample Question SOLUTIONS. Eliminate the parameter to find a Cartesian equation for the curve: x e t, y e t. SOLUTION: You might look at the coordinates and notice that If you don t see it, we can

More information

Section 1.1 Linear Equations: Slope and Equations of Lines

Section 1.1 Linear Equations: Slope and Equations of Lines Section. Linear Equations: Slope and Equations of Lines Slope The measure of the steepness of a line is called the slope of the line. It is the amount of change in y, the rise, divided by the amount of

More information

CHAPTER FIVE. 5. Equations of Lines in R 3

CHAPTER FIVE. 5. Equations of Lines in R 3 118 CHAPTER FIVE 5. Equations of Lines in R 3 In this chapter it is going to be very important to distinguish clearly between points and vectors. Frequently in the past the distinction has only been a

More information

FURTHER VECTORS (MEI)

FURTHER VECTORS (MEI) Mathematics Revision Guides Further Vectors (MEI) (column notation) Page of MK HOME TUITION Mathematics Revision Guides Level: AS / A Level - MEI OCR MEI: C FURTHER VECTORS (MEI) Version : Date: -9-7 Mathematics

More information

JUST THE MATHS UNIT NUMBER 8.5. VECTORS 5 (Vector equations of straight lines) A.J.Hobson

JUST THE MATHS UNIT NUMBER 8.5. VECTORS 5 (Vector equations of straight lines) A.J.Hobson JUST THE MATHS UNIT NUMBER 8.5 VECTORS 5 (Vector equations of straight lines) by A.J.Hobson 8.5.1 Introduction 8.5. The straight line passing through a given point and parallel to a given vector 8.5.3

More information

1. Equations for lines on the plane and planes in the space.

1. Equations for lines on the plane and planes in the space. 1. Equations for lines on the plane and planes in the space. 1.1. General implicit vector equation. (1) a r=α This equation defines a line in the plane and a plane in the 3-space. Here r is the radius-vector

More information

= y y 0. = z z 0. (a) Find a parametric vector equation for L. (b) Find parametric (scalar) equations for L.

= y y 0. = z z 0. (a) Find a parametric vector equation for L. (b) Find parametric (scalar) equations for L. Math 21a Lines and lanes Spring, 2009 Lines in Space How can we express the equation(s) of a line through a point (x 0 ; y 0 ; z 0 ) and parallel to the vector u ha; b; ci? Many ways: as parametric (scalar)

More information

LINES AND PLANES IN R 3

LINES AND PLANES IN R 3 LINES AND PLANES IN R 3 In this handout we will summarize the properties of the dot product and cross product and use them to present arious descriptions of lines and planes in three dimensional space.

More information

Section 11.1: Vectors in the Plane. Suggested Problems: 1, 5, 9, 17, 23, 25-37, 40, 42, 44, 45, 47, 50

Section 11.1: Vectors in the Plane. Suggested Problems: 1, 5, 9, 17, 23, 25-37, 40, 42, 44, 45, 47, 50 Section 11.1: Vectors in the Plane Page 779 Suggested Problems: 1, 5, 9, 17, 3, 5-37, 40, 4, 44, 45, 47, 50 Determine whether the following vectors a and b are perpendicular. 5) a = 6, 0, b = 0, 7 Recall

More information

Adding vectors We can do arithmetic with vectors. We ll start with vector addition and related operations. Suppose you have two vectors

Adding vectors We can do arithmetic with vectors. We ll start with vector addition and related operations. Suppose you have two vectors 1 Chapter 13. VECTORS IN THREE DIMENSIONAL SPACE Let s begin with some names and notation for things: R is the set (collection) of real numbers. We write x R to mean that x is a real number. A real number

More information

MAT 1341: REVIEW II SANGHOON BAEK

MAT 1341: REVIEW II SANGHOON BAEK MAT 1341: REVIEW II SANGHOON BAEK 1. Projections and Cross Product 1.1. Projections. Definition 1.1. Given a vector u, the rectangular (or perpendicular or orthogonal) components are two vectors u 1 and

More information

Chapter 4.1 Parallel Lines and Planes

Chapter 4.1 Parallel Lines and Planes Chapter 4.1 Parallel Lines and Planes Expand on our definition of parallel lines Introduce the idea of parallel planes. What do we recall about parallel lines? In geometry, we have to be concerned about

More information

Lecture 8 : Coordinate Geometry. The coordinate plane The points on a line can be referenced if we choose an origin and a unit of 20

Lecture 8 : Coordinate Geometry. The coordinate plane The points on a line can be referenced if we choose an origin and a unit of 20 Lecture 8 : Coordinate Geometry The coordinate plane The points on a line can be referenced if we choose an origin and a unit of 0 distance on the axis and give each point an identity on the corresponding

More information

1.(6pts) Find symmetric equations of the line L passing through the point (2, 5, 1) and perpendicular to the plane x + 3y z = 9.

1.(6pts) Find symmetric equations of the line L passing through the point (2, 5, 1) and perpendicular to the plane x + 3y z = 9. .(6pts Find symmetric equations of the line L passing through the point (, 5, and perpendicular to the plane x + 3y z = 9. (a x = y + 5 3 = z (b x (c (x = ( 5(y 3 = z + (d x (e (x + 3(y 3 (z = 9 = y 3

More information

Vector Algebra CHAPTER 13. Ü13.1. Basic Concepts

Vector Algebra CHAPTER 13. Ü13.1. Basic Concepts CHAPTER 13 ector Algebra Ü13.1. Basic Concepts A vector in the plane or in space is an arrow: it is determined by its length, denoted and its direction. Two arrows represent the same vector if they have

More information

The Point-Slope Form

The Point-Slope Form 7. The Point-Slope Form 7. OBJECTIVES 1. Given a point and a slope, find the graph of a line. Given a point and the slope, find the equation of a line. Given two points, find the equation of a line y Slope

More information

Recall that two vectors in are perpendicular or orthogonal provided that their dot

Recall that two vectors in are perpendicular or orthogonal provided that their dot Orthogonal Complements and Projections Recall that two vectors in are perpendicular or orthogonal provided that their dot product vanishes That is, if and only if Example 1 The vectors in are orthogonal

More information

Section 8.8. 1. The given line has equations. x = 3 + t(13 3) = 3 + 10t, y = 2 + t(3 + 2) = 2 + 5t, z = 7 + t( 8 7) = 7 15t.

Section 8.8. 1. The given line has equations. x = 3 + t(13 3) = 3 + 10t, y = 2 + t(3 + 2) = 2 + 5t, z = 7 + t( 8 7) = 7 15t. . The given line has equations Section 8.8 x + t( ) + 0t, y + t( + ) + t, z 7 + t( 8 7) 7 t. The line meets the plane y 0 in the point (x, 0, z), where 0 + t, or t /. The corresponding values for x and

More information

Mathematics 205 HWK 6 Solutions Section 13.3 p627. Note: Remember that boldface is being used here, rather than overhead arrows, to indicate vectors.

Mathematics 205 HWK 6 Solutions Section 13.3 p627. Note: Remember that boldface is being used here, rather than overhead arrows, to indicate vectors. Mathematics 205 HWK 6 Solutions Section 13.3 p627 Note: Remember that boldface is being used here, rather than overhead arrows, to indicate vectors. Problem 5, 13.3, p627. Given a = 2j + k or a = (0,2,

More information

1.3 LINEAR EQUATIONS IN TWO VARIABLES. Copyright Cengage Learning. All rights reserved.

1.3 LINEAR EQUATIONS IN TWO VARIABLES. Copyright Cengage Learning. All rights reserved. 1.3 LINEAR EQUATIONS IN TWO VARIABLES Copyright Cengage Learning. All rights reserved. What You Should Learn Use slope to graph linear equations in two variables. Find the slope of a line given two points

More information

Numerical Analysis Lecture Notes

Numerical Analysis Lecture Notes Numerical Analysis Lecture Notes Peter J. Olver 5. Inner Products and Norms The norm of a vector is a measure of its size. Besides the familiar Euclidean norm based on the dot product, there are a number

More information

5.3 The Cross Product in R 3

5.3 The Cross Product in R 3 53 The Cross Product in R 3 Definition 531 Let u = [u 1, u 2, u 3 ] and v = [v 1, v 2, v 3 ] Then the vector given by [u 2 v 3 u 3 v 2, u 3 v 1 u 1 v 3, u 1 v 2 u 2 v 1 ] is called the cross product (or

More information

Dot product and vector projections (Sect. 12.3) There are two main ways to introduce the dot product

Dot product and vector projections (Sect. 12.3) There are two main ways to introduce the dot product Dot product and vector projections (Sect. 12.3) Two definitions for the dot product. Geometric definition of dot product. Orthogonal vectors. Dot product and orthogonal projections. Properties of the dot

More information

Geometry of Vectors. 1 Cartesian Coordinates. Carlo Tomasi

Geometry of Vectors. 1 Cartesian Coordinates. Carlo Tomasi Geometry of Vectors Carlo Tomasi This note explores the geometric meaning of norm, inner product, orthogonality, and projection for vectors. For vectors in three-dimensional space, we also examine the

More information

LINEAR ALGEBRA W W L CHEN

LINEAR ALGEBRA W W L CHEN LINEAR ALGEBRA W W L CHEN c W W L Chen, 1982, 2008. This chapter originates from material used by author at Imperial College, University of London, between 1981 and 1990. It is available free to all individuals,

More information

Cross product and determinants (Sect. 12.4) Two main ways to introduce the cross product

Cross product and determinants (Sect. 12.4) Two main ways to introduce the cross product Cross product and determinants (Sect. 12.4) Two main ways to introduce the cross product Geometrical definition Properties Expression in components. Definition in components Properties Geometrical expression.

More information

v w is orthogonal to both v and w. the three vectors v, w and v w form a right-handed set of vectors.

v w is orthogonal to both v and w. the three vectors v, w and v w form a right-handed set of vectors. 3. Cross product Definition 3.1. Let v and w be two vectors in R 3. The cross product of v and w, denoted v w, is the vector defined as follows: the length of v w is the area of the parallelogram with

More information

Overview. Observations. Activities. Chapter 3: Linear Functions Linear Functions: Slope-Intercept Form

Overview. Observations. Activities. Chapter 3: Linear Functions Linear Functions: Slope-Intercept Form Name Date Linear Functions: Slope-Intercept Form Student Worksheet Overview The Overview introduces the topics covered in Observations and Activities. Scroll through the Overview using " (! to review,

More information

Write the Equation of the Line Review

Write the Equation of the Line Review Connecting Algebra 1 to Advanced Placement* Mathematics A Resource and Strategy Guide Objective: Students will be assessed on their ability to write the equation of a line in multiple methods. Connections

More information

2.1 Three Dimensional Curves and Surfaces

2.1 Three Dimensional Curves and Surfaces . Three Dimensional Curves and Surfaces.. Parametric Equation of a Line An line in two- or three-dimensional space can be uniquel specified b a point on the line and a vector parallel to the line. The

More information

9.4. The Scalar Product. Introduction. Prerequisites. Learning Style. Learning Outcomes

9.4. The Scalar Product. Introduction. Prerequisites. Learning Style. Learning Outcomes The Scalar Product 9.4 Introduction There are two kinds of multiplication involving vectors. The first is known as the scalar product or dot product. This is so-called because when the scalar product of

More information

EQUATIONS and INEQUALITIES

EQUATIONS and INEQUALITIES EQUATIONS and INEQUALITIES Linear Equations and Slope 1. Slope a. Calculate the slope of a line given two points b. Calculate the slope of a line parallel to a given line. c. Calculate the slope of a line

More information

What does the number m in y = mx + b measure? To find out, suppose (x 1, y 1 ) and (x 2, y 2 ) are two points on the graph of y = mx + b.

What does the number m in y = mx + b measure? To find out, suppose (x 1, y 1 ) and (x 2, y 2 ) are two points on the graph of y = mx + b. PRIMARY CONTENT MODULE Algebra - Linear Equations & Inequalities T-37/H-37 What does the number m in y = mx + b measure? To find out, suppose (x 1, y 1 ) and (x 2, y 2 ) are two points on the graph of

More information

Name Class. Date Section. Test Form A Chapter 11. Chapter 11 Test Bank 155

Name Class. Date Section. Test Form A Chapter 11. Chapter 11 Test Bank 155 Chapter Test Bank 55 Test Form A Chapter Name Class Date Section. Find a unit vector in the direction of v if v is the vector from P,, 3 to Q,, 0. (a) 3i 3j 3k (b) i j k 3 i 3 j 3 k 3 i 3 j 3 k. Calculate

More information

Linear Algebra Notes for Marsden and Tromba Vector Calculus

Linear Algebra Notes for Marsden and Tromba Vector Calculus Linear Algebra Notes for Marsden and Tromba Vector Calculus n-dimensional Euclidean Space and Matrices Definition of n space As was learned in Math b, a point in Euclidean three space can be thought of

More information

Graphing Linear Equations

Graphing Linear Equations Graphing Linear Equations I. Graphing Linear Equations a. The graphs of first degree (linear) equations will always be straight lines. b. Graphs of lines can have Positive Slope Negative Slope Zero slope

More information

Section 12.6: Directional Derivatives and the Gradient Vector

Section 12.6: Directional Derivatives and the Gradient Vector Section 26: Directional Derivatives and the Gradient Vector Recall that if f is a differentiable function of x and y and z = f(x, y), then the partial derivatives f x (x, y) and f y (x, y) give the rate

More information

a.) Write the line 2x - 4y = 9 into slope intercept form b.) Find the slope of the line parallel to part a

a.) Write the line 2x - 4y = 9 into slope intercept form b.) Find the slope of the line parallel to part a Bellwork a.) Write the line 2x - 4y = 9 into slope intercept form b.) Find the slope of the line parallel to part a c.) Find the slope of the line perpendicular to part b or a May 8 7:30 AM 1 Day 1 I.

More information

DERIVATIVES AS MATRICES; CHAIN RULE

DERIVATIVES AS MATRICES; CHAIN RULE DERIVATIVES AS MATRICES; CHAIN RULE 1. Derivatives of Real-valued Functions Let s first consider functions f : R 2 R. Recall that if the partial derivatives of f exist at the point (x 0, y 0 ), then we

More information

A synonym is a word that has the same or almost the same definition of

A synonym is a word that has the same or almost the same definition of Slope-Intercept Form Determining the Rate of Change and y-intercept Learning Goals In this lesson, you will: Graph lines using the slope and y-intercept. Calculate the y-intercept of a line when given

More information

Vector Notation: AB represents the vector from point A to point B on a graph. The vector can be computed by B A.

Vector Notation: AB represents the vector from point A to point B on a graph. The vector can be computed by B A. 1 Linear Transformations Prepared by: Robin Michelle King A transformation of an object is a change in position or dimension (or both) of the object. The resulting object after the transformation is called

More information

ISOMETRIES OF R n KEITH CONRAD

ISOMETRIES OF R n KEITH CONRAD ISOMETRIES OF R n KEITH CONRAD 1. Introduction An isometry of R n is a function h: R n R n that preserves the distance between vectors: h(v) h(w) = v w for all v and w in R n, where (x 1,..., x n ) = x

More information

Vocabulary Words and Definitions for Algebra

Vocabulary Words and Definitions for Algebra Name: Period: Vocabulary Words and s for Algebra Absolute Value Additive Inverse Algebraic Expression Ascending Order Associative Property Axis of Symmetry Base Binomial Coefficient Combine Like Terms

More information

Solving Equations Involving Parallel and Perpendicular Lines Examples

Solving Equations Involving Parallel and Perpendicular Lines Examples Solving Equations Involving Parallel and Perpendicular Lines Examples. The graphs of y = x, y = x, and y = x + are lines that have the same slope. They are parallel lines. Definition of Parallel Lines

More information

MA261-A Calculus III 2006 Fall Homework 3 Solutions Due 9/22/2006 8:00AM

MA261-A Calculus III 2006 Fall Homework 3 Solutions Due 9/22/2006 8:00AM MA6-A Calculus III 6 Fall Homework Solutions Due 9//6 :AM 9. # Find the parametric euation and smmetric euation for the line of intersection of the planes + + z = and + z =. To write down a line euation,

More information

Algebraic expressions are a combination of numbers and variables. Here are examples of some basic algebraic expressions.

Algebraic expressions are a combination of numbers and variables. Here are examples of some basic algebraic expressions. Page 1 of 13 Review of Linear Expressions and Equations Skills involving linear equations can be divided into the following groups: Simplifying algebraic expressions. Linear expressions. Solving linear

More information

6. Vectors. 1 2009-2016 Scott Surgent (surgent@asu.edu)

6. Vectors. 1 2009-2016 Scott Surgent (surgent@asu.edu) 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

Understanding Basic Calculus

Understanding Basic Calculus Understanding Basic Calculus S.K. Chung Dedicated to all the people who have helped me in my life. i Preface This book is a revised and expanded version of the lecture notes for Basic Calculus and other

More information

Geometry 1. Unit 3: Perpendicular and Parallel Lines

Geometry 1. Unit 3: Perpendicular and Parallel Lines Geometry 1 Unit 3: Perpendicular and Parallel Lines Geometry 1 Unit 3 3.1 Lines and Angles Lines and Angles Parallel Lines Parallel lines are lines that are coplanar and do not intersect. Some examples

More information

28 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE. v x. u y v z u z v y u y u z. v y v z

28 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE. v x. u y v z u z v y u y u z. v y v z 28 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE 1.4 Cross Product 1.4.1 Definitions The cross product is the second multiplication operation between vectors we will study. The goal behind the definition

More information

A QUICK GUIDE TO THE FORMULAS OF MULTIVARIABLE CALCULUS

A QUICK GUIDE TO THE FORMULAS OF MULTIVARIABLE CALCULUS A QUIK GUIDE TO THE FOMULAS OF MULTIVAIABLE ALULUS ontents 1. Analytic Geometry 2 1.1. Definition of a Vector 2 1.2. Scalar Product 2 1.3. Properties of the Scalar Product 2 1.4. Length and Unit Vectors

More information

( 1)2 + 2 2 + 2 2 = 9 = 3 We would like to make the length 6. The only vectors in the same direction as v are those

( 1)2 + 2 2 + 2 2 = 9 = 3 We would like to make the length 6. The only vectors in the same direction as v are those 1.(6pts) Which of the following vectors has the same direction as v 1,, but has length 6? (a), 4, 4 (b),, (c) 4,, 4 (d), 4, 4 (e) 0, 6, 0 The length of v is given by ( 1) + + 9 3 We would like to make

More information

Chapter 17. Orthogonal Matrices and Symmetries of Space

Chapter 17. Orthogonal Matrices and Symmetries of Space Chapter 17. Orthogonal Matrices and Symmetries of Space Take a random matrix, say 1 3 A = 4 5 6, 7 8 9 and compare the lengths of e 1 and Ae 1. The vector e 1 has length 1, while Ae 1 = (1, 4, 7) has length

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. The equation is not unique for if we multipl both sides b

More information

Lecture 9: Lines. m = y 2 y 1 x 2 x 1

Lecture 9: Lines. m = y 2 y 1 x 2 x 1 Lecture 9: Lines If we have two distinct points in the Cartesian plane, there is a unique line which passes through the two points. We can construct it by joining the points with a straight edge and extending

More information

Year 12 Pure Mathematics. C1 Coordinate Geometry 1. Edexcel Examination Board (UK)

Year 12 Pure Mathematics. C1 Coordinate Geometry 1. Edexcel Examination Board (UK) Year 1 Pure Mathematics C1 Coordinate Geometry 1 Edexcel Examination Board (UK) Book used with this handout is Heinemann Modular Mathematics for Edexcel AS and A-Level, Core Mathematics 1 (004 edition).

More information

Writing the Equation of a Line in Slope-Intercept Form

Writing the Equation of a Line in Slope-Intercept Form Writing the Equation of a Line in Slope-Intercept Form Slope-Intercept Form y = mx + b Example 1: Give the equation of the line in slope-intercept form a. With y-intercept (0, 2) and slope -9 b. Passing

More information

Linear Equations. Find the domain and the range of the following set. {(4,5), (7,8), (-1,3), (3,3), (2,-3)}

Linear Equations. Find the domain and the range of the following set. {(4,5), (7,8), (-1,3), (3,3), (2,-3)} Linear Equations Domain and Range Domain refers to the set of possible values of the x-component of a point in the form (x,y). Range refers to the set of possible values of the y-component of a point in

More information

Solutions to Math 51 First Exam January 29, 2015

Solutions to Math 51 First Exam January 29, 2015 Solutions to Math 5 First Exam January 29, 25. ( points) (a) Complete the following sentence: A set of vectors {v,..., v k } is defined to be linearly dependent if (2 points) there exist c,... c k R, not

More information

Solving Simultaneous Equations and Matrices

Solving Simultaneous Equations and Matrices Solving Simultaneous Equations and Matrices The following represents a systematic investigation for the steps used to solve two simultaneous linear equations in two unknowns. The motivation for considering

More information

What are the place values to the left of the decimal point and their associated powers of ten?

What are the place values to the left of the decimal point and their associated powers of ten? The verbal answers to all of the following questions should be memorized before completion of algebra. Answers that are not memorized will hinder your ability to succeed in geometry and algebra. (Everything

More information

Slope-Intercept Equation. Example

Slope-Intercept Equation. Example 1.4 Equations of Lines and Modeling Find the slope and the y intercept of a line given the equation y = mx + b, or f(x) = mx + b. Graph a linear equation using the slope and the y-intercept. Determine

More information

Slope-Intercept Form of a Linear Equation Examples

Slope-Intercept Form of a Linear Equation Examples Slope-Intercept Form of a Linear Equation Examples. In the figure at the right, AB passes through points A(0, b) and B(x, y). Notice that b is the y-intercept of AB. Suppose you want to find an equation

More information

3.3. Solving Polynomial Equations. Introduction. Prerequisites. Learning Outcomes

3.3. Solving Polynomial Equations. Introduction. Prerequisites. Learning Outcomes Solving Polynomial Equations 3.3 Introduction Linear and quadratic equations, dealt within Sections 3.1 and 3.2, are members of a class of equations, called polynomial equations. These have the general

More information

1 VECTOR SPACES AND SUBSPACES

1 VECTOR SPACES AND SUBSPACES 1 VECTOR SPACES AND SUBSPACES What is a vector? Many are familiar with the concept of a vector as: Something which has magnitude and direction. an ordered pair or triple. a description for quantities such

More information

Orthogonal Projections

Orthogonal Projections Orthogonal Projections and Reflections (with exercises) by D. Klain Version.. Corrections and comments are welcome! Orthogonal Projections Let X,..., X k be a family of linearly independent (column) vectors

More information