Lines & Planes. Packages: linalg, plots. Commands: evalm, spacecurve, plot3d, display, solve, implicitplot, dotprod, seq, implicitplot3d.

Size: px
Start display at page:

Download "Lines & Planes. Packages: linalg, plots. Commands: evalm, spacecurve, plot3d, display, solve, implicitplot, dotprod, seq, implicitplot3d."

Transcription

1 Lines & Planes Introduction and Goals: This lab is simply to give you some practice with plotting straight lines and planes and how to do some basic problem solving with them. So the exercises will be mainly mechanical but will contain several well used and needed manipulations. Our goal is to be able to do all of the basic calculations we normally do by hand using Maple and be able to produce graphs of lines and planes in three dimensions. Before You Start: Make sure that you read and understand the mathematics from the corresponding sections in your textbook. It would also help if you looked over the lab on Vectors and Vector Arithmetic. Textbook Correspondence: Stewart 5 th Edition: 1.5. Stewart 5 th Edition Early Transcendentals: Thomas Calculus 1 th Edition Early Transcendentals: 1.. Johnston & Mathews Calculus: Maple Commands and Packages Used: Packages: linalg, plots. Commands: evalm, spacecurve, plotd, display, solve, implicitplot, dotprod, seq, implicitplotd. History & Biographies: Maple Commands: Since we will be using several functions that are in the linalg package and the plots package you should load these packages into your worksheet before going any further. Execute the commands, > with(linalg): > with(plots):

2 Let s begin our investigation with lines. Mathematically we denote lines in threespace as parametric equations, usually written in the form x = x y = y z = z + at + bt + ct where ( x, y z ) is a point on the line and ( a b, c), also common to write this set of points as a vector, specifically,, is the direction vector of the line. It is x at, y + bt z + ct. +, Since Maple s syntax is closer to the vector representation of a line we will use vector 2,, 1 and is in the notation here. So to define the line that goes through the point ( ) direction of 1,2,, we need to define the vector valued function that takes t to 2 + t, + 2t, 1+. To do this definition we simply need to combine the standard function definition syntax with the vector syntax. Define executing the command, > r:=t-> [2+t, +2*t, -1+*t]; r := t [ 2 + t, + 2 t, 1 + t ] r ( t) = 2 + t, + 2t, 1+ by Now we can find the point on the line associated with any value of the parameter t simply using Maple s function evaluation syntax. For example, > r(); > r(1)-r(); > evalm(r(1)-r()); > r(); > r(w); [ 2,, -1] [, 5, 2 ] [ 2,, -1] [ 1, 2, ] [ 5, 9, 8 ] [ 2 + w, + 2 w, 1 + w ] To plot this line we use the spacecurve command. The spacecurve command syntax is similar to all of the other plotting commands in Maple. You need to give it the curve to plot, the range of values for the parameter and a list of all the other plot options you want. For example, if we execute the command,

3 > spacecurve(r(t),t=..1,axes=boxed); we get the image to the right. In the above syntax we let our parameter t go from to 1, to extend the line further in either direction we would simply alter the bounds. Also note that the default coloring of the line shaded it from dark to light as t went from its lower bound to its upper bound. This is a nice feature since we are frequently interested in a line s orientation, that is, the direction of increasing t. On the other hand, this sometimes makes it more difficult to see what the line or curve is doing near the upper bound. By including the color option in the spacecurve command we can draw the line as a solid color. For example, the command > spacecurve(r(t),t=..1,axes=boxed, color=black); gives the image to the right. We can also mimic the vector form construction of a line in three-space. Recall that the vector form looks like r ( t) = r + vt where r is a point on the line and v is a direction vector. To define the same line as we did above in this framework we execute the following commands, > v:=[1,2,]; > r:=[2,,-1]; > r:=t->r+t*v; v := [ 1, 2, ] r := [ 2,, -1] r := t r + t v Mathematically, the two ways we defined the line are identical but Maple looks at them a bit differently. This means that graphing will be a bit different between the two methods. If we use the same spacecurve command as we did above we get an error because Maple doe not see the line in the correct form. > spacecurve(r(t),t=..1,axes=boxed, color=black); Error, (in spacecurve) first argument must be array, list or set To get the line in the correct form for the spacecurve command we simply use the evalm command on the vector. Doing so gives us the same graph as we had before.

4 > spacecurve(evalm(r(t)),t=..1,axes=boxed, color=black); As with most of the other graphics commands in Maple you can graph several lines together using a single spacecurve command and you plot several lines, with different parameter ranges, together using separate spacecurve commands pasted together with a display command. For example, say we wanted to plot the lines r ( t) = 2 + t, + 2t, 1, r ( t) = t,4t, 2 t and r ( t) = 2,1 + t, 1 t together using the 1 + same range for t, say to 5. First define the lines, > r1:=t->[2+t,+2*t,-1+*t]; r1 := t [ 2 + t, + 2 t, 1 + t ] > r2:=t->[t,4*t,2-t]; r2 := t [ t, 4 t, 2 t ] > r:=t->[2,1+t,1-t]; r := t [ 2, 1 + t, 1 t ] 2 Then use the spacecurve command with the three lines placed in a list delimited by curly brackets. > spacecurve({r1(t),r2(t),r(t)}, t=..5,axes=boxed,color=black); To plot the lines r ( t) = 2 + t, + 2t, 1, 1 + r ( t) = t,4t, 2 t and r ( t) = 2,1 + t, 1 t together using the ranges to 1, 1 to 2 and 2 to 2 respectively we construct the three spacecurve plots and then paste them together with the display command. Note the use of the colon in the spacecurve commands, if you use the semicolon you will get a lot of unnecessary output. > c1:=spacecurve(r1(t),t=..1,axes=boxed,color=black): > c2:=spacecurve(r2(t),t=1..2,axes=boxed,color=black): > c:=spacecurve(r(t),t=2..,axes=boxed,color=black): > display(c1,c2,c);

5 Let s move onto planes. From your text you know that like lines there are two main forms for the equation of a plane, linear form and vector form. We will start with linear form. Say we want to define a function to represent the plane z = x 2y + 2. We view z as a function of two variables and hence we will define it as the function f ( x, y) by > f:=(x,y)->*x-2*y+2; f := ( x, y ) x 2 y + 2 Now we can evaluate this function at any point ( y) and y coordinates of interest. For example, x, we wish simply by including the x > f(2,5); > f(,); > f(t,2); > f(4,7*s); -2 2 t s To graph the plane we use the plotd command. In the plotd command we put the formula to plot, the range of both x and y and any other options we want. For example, > plotd(f(x,y),x=-5..5,y=-5..5,axes=boxed); As with the other plotting commands in Maple we can graph several planes (or surfaces) together on the same set of axes by placing all of the desired equations into a list. For example, to graph z = x 2y + 1, z = 5x + 7y 2 and z = 4 x + y + 5 together we would use the following sequence of commands. > g:=(x,y)->*x-2*y+1; g := ( x, y ) x 2 y + 1 > h:=(x,y)->-5*x+7*y-2; h := ( x, y ) 5 x + 7 y 2 > k:=(x,y)->-4*x+y+5; k := ( x, y ) 4 x + y + 5 > plotd({g(x,y),h(x,y),k(x,y)}, x=-5..5,y=-5..5,axes=boxed);

6 The vector form of the equation of a plane can be written as ( r r ) normal vector to the plane, r is a point on the plane and plane that passes through the point = ( 2,, 1) r = n where n is the x, y, z =. So to define the r and is normal to n = 4,2, 7 we first define the necessary vectors and then use the dotprod command to define the equation. > r:=[2,,-1]; > r:=[x,y,z]; > n:=[4,2,7]; r := [ 2,, -1] r := [ x, y, z ] n := [ 4, 2, 7 ] > p:=dotprod(n,r-r)=; p := x + 2 y + 7 z = To plot the plane we can no longer use the plotd command since the plotd command is for plotting explicitly defined functions and since we are trying to plot an equation the function is defined implicitly. Hence, we use the implicitplotd command, giving it the expression to plot along with ranges in x, y and z and any other options we want. For example, > implicitplotd(p,x=-5..5,y=-5..5, z=-5..5,axes=boxed); The implicitplotd command comes in handy when we wish to plot vertical planes. Since a vertical plane is not a function the plotd command will not graph it, but the implicitplotd command will. For example, say we wanted to plot the above plane with the plane x = 2. All we would need to do is define the second plane and then plot them together. > p2:=x=2; p2 := x = 2 > implicitplotd({p,p2},x=-5..5, y=-5..5,z=-5..5,axes=boxed); Note that we can plot an explicitly defined plane, like our first example, using the implicitplotd command by making the expression into an equation and adding a range for z, as below. Due to Maple s graphing methods the image is a little more cluttered

7 when using the implicitplotd command, which is why you should use the plotd command whenever possible. > implicitplotd(z=f(x,y),x=-5..5,y=-5..5,z= , axes=boxed); Now that we know how to define and graph lines and planes let s look at the procedures needed to do some basic manipulations and solving. Say we wanted to find the intersection point between the lines r ( t ) = 2 + 2t,4, 7 + t and r ( t) = + t,1,12 5t 2 + 1, if one exists. A point of intersection would be found if there was a value of t for the first line that gave the same point as a value of t (possibly different) for the second line. Since these values are not necessarily the same we must use different variables for the parameters. Hence we will change the second line to r ( s) = + s,1 s,12 5s. Now these two lines have a point of intersection if there 2 + exists an s and a t such that all three of the following equations are satisfied t t = = = + s 1 s s There are many ways to get Maple to solve this system, we will use one that is as vector oriented as possible. First define the two lines, > r1:=t->[2+2*t,4-*t,7+t]; r1 := t [ t, 4 t, 7 + t ] > r2:=s->[s+,1-*s,12+5*s]; r2 := s [ s +, 1 s, s ]

8 Now if we use the standard solve command syntax we get an error because Maple does not know that we want to set each component equal to each other and then solve the resulting system. > solve(r1(t)=r2(s),{s,t}); Error, (in solve) invalid arguments To put the system in the correct format we need to extract the first component of the first line and set it equal to the first component of the second line and then do the same for the other two components. To extract a component from a vector we simply need to place [n] after the vector, where n is the component to be extracted. For example, > r1(t)[1]; > r1(t)[2]; > r1(t)[]; 2 t + 2 t + 4 t + 7 So the solve command we need is > solve({r1(t)[1]=r2(s)[1],r1(t)[2]=r2(s)[2], r1(t)[]=r2(s)[]},{s,t}); { t =, s = -1} Note that it returns the set of solutions. Checking these, > r1(); > r2(-1); [ 2, 4, 7 ] [ 2, 4, 7 ] we see that we do have a common point between the two lines. We can streamline the above solve command by using the seq function to generate the list of equations. Note the output of the following command. > seq(r1(t)[n]=r2(s)[n],n=1..); 2 t + 2 = s +, t + 4 = s + 1, t + 7 = 5 s + 12 It is a list of the three equations that we wish to solve simultaneously. So if we simply place this command in the solve command we will generate the needed list of equations.

9 > solve({seq(r1(t)[n]=r2(s)[n],n=1..)},{s,t}); { s = -1, t = } One nice feature of this last method is that it is easier to use if we are working with lines in higher dimensions. In these cases we simply need to increase the upper bound on n. It is also convenient to use in plot commands. For example, say we wanted to graph each of the three lines created from the equations above, to visually see if there is a solution to our system. > implicitplot({seq(r1(t)[n]= r2(s)[n],n=1..)},s=-.., t=-..); If we have two lines that do not intersect then we can use the implicitplot command to see that there is no common point of intersection or we can use the solve command. Using the implicitplot command on the following two lines > l1:=t->[2+2*t,4-*t,7+t]; l1 := t [ t, 4 t, 7 + t ] > l2:=s->[2+4*s,5-s,9+s]; l2 := s [ 4 s + 2, s + 5, s + 9 ] > implicitplot({seq(l1(t)[n]=l2(s)[n],n=1..)},s=-..,t=-..); shows that there is not common point of intersection of the three equations and hence there are no values for s and t that make the two three space lines intersect as well. If we use the solve command, > solve({seq(l1(t)[n]=l2(s)[n],n=1..)},{s,t});

10 we see that Maple does not output anything, hence there is no point of intersection. To find the intersection of three planes, if one exists, we simply place the plane equations in the solve command so that the three are set equal to each other, in pairs. For example, > solve({g(x,y)=h(x,y),h(x,y)=k(x,y)},{x,y}); 5 15 { y =, x = } 9 1 checking these verifies that this is indeed the point of intersection. > g(15/1,5/9); > h(15/1,5/9); > k(15/1,5/9); Finding the parametric equations to the line of intersection of two planes is just as simple. Place the two plane equations in the solve command, both set to z, and solve for x, y and z, as in the command below. > solve({z=g(x,y),z=h(x,y)},{x,y,z}); 9 y 1 11 y { x = +, y = y, z = + } Note that the second equation is y = y. Clearly a correct statement, but in this case it is telling us to let y be the parameter for the equations. Since we tend to use t for the parameter we will change it. Hence our equations are x = z = 8 y = t 11 or in vector form, r ( t) = 9 t t ,, t. Frequently, we wish to graph both planes and their lines of intersection. One way to do this is to define the plotd graph of the planes, define the spacecurve graph of the line and then paste them together with the display command, as below. > r:=t->[-/8+9/8*t,t,-1/8+11/8*t]; t t

11 r := t + 8 9,, 8 t t t > pls:=plotd({g(x,y),h(x,y)},x=-5..5,y=-5..5,axes=boxed): > lne:=spacecurve(r(t),t=-4..4,thickness=4,color=black): > display(pls,lne); Another type of intersection we frequently need to calculate is that between a line and plane. As with all of the other command sequences we mimic the calculations we would do by hand on Maple. Say we want to find the intersection between the line x = 1+ y = 2 4t z = t + and the plane g ( x, y) = x 2y + 1 definition for the function ( x, y) = x 2y + 1. The following commands define the line as v, the g was done above and then graphs the plane and line to visually verify that there is a point of intersection. > v:=t->[1+*t,2-4*t,+t]; v := t [ 1 + t, 2 4 t, t + ] > p:=plotd(g(x,y),x=-5..5,y=-5..5,axes=boxed): > l:=spacecurve(v(t),t=-1..1,thickness=4,color=black): > display(p,l);

12 If we did not have Maple at our disposal and needed to find the point of intersection we would substitute the x and y equations from the line into the plane equation, set it equal to the z equation from the line and solve the resulting equation for t. As before, we use the [n] syntax to extract the components of v. So > solve(v(t)[]=g(v(t)[1],v(t)[2]),t); 16 tells us that we have an intersection when t = 16. The actual point of intersection can be found simply by evaluating the line at t = 16. > v(/16); ,, Not that it saves us any typing, but we can use the seq command in the above solve command. As below, > solve(v(t)[]=g(seq(v(t)[n],n=1..2)),t); 16 Exercises: 1. Plot the following lines on the same set of axes with the same range for the parameter t, say to.

13 x = 1+ y = 2 4t x = 2 t y = 7 + 2t z = t + z = 4t 1 z = t 2. Plot the following lines on the same set of axes with the different ranges for the parameter t, say to, to 5 and 1 to 4 respectively. and x = 5 + t y = 7t x = 1+ y = 2 4t z = t + x = 2 t y = 7 + 2t z = 4t 1 and x = 5 + t y = 7t z = t. Plot the following planes on the same set of axes. z = x + y + 5 z = x + 2 y + 1 and z = 2x 7y 2 4. Plot the following planes on the same set of axes. Use plotd whenever possible. z = x + y + 5 x = 2 y + 1 and y = 7 5. Plot the following lines and planes on the same set of axes.. Make sure that the lines are made thick and make the colors of the lines red and green. x = 1+ y = 2 4t z = t + x = 5 + t y = 7t z = t z = x + 2 y +1 and z = 2x 7y 2 6. Find the line of intersection between the two planes z = x + y + 5 and z = 2x 7y 2 and then graph the planes and line on the same set of axes. Make sure that the line is made thick and make the color of the line red. 7. Find the line of intersection between the two planes z = x + y + 5 and x = 2 y + 1 and then graph the planes and line on the same set of axes. Make sure that the line is made thick and make the color of the line black. 8. Write down the process you would go through, without using Maple, if you wanted to find the distance between the two parallel planes z = 2x 7y 2 and z = 2 x 7y + 9. You do not need to do the calculations by hand. Now translate the process you have into a sequence of Maple commands and use Maple to solve this problem.

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

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

Classroom Tips and Techniques: The Student Precalculus Package - Commands and Tutors. Content of the Precalculus Subpackage

Classroom Tips and Techniques: The Student Precalculus Package - Commands and Tutors. Content of the Precalculus Subpackage Classroom Tips and Techniques: The Student Precalculus Package - Commands and Tutors Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft This article provides a systematic exposition

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

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

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

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

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

Quickstart for Desktop Version

Quickstart for Desktop Version Quickstart for Desktop Version What is GeoGebra? Dynamic Mathematics Software in one easy-to-use package For learning and teaching at all levels of education Joins interactive 2D and 3D geometry, algebra,

More information

Module1. x 1000. y 800.

Module1. x 1000. y 800. Module1 1 Welcome to the first module of the course. It is indeed an exciting event to share with you the subject that has lot to offer both from theoretical side and practical aspects. To begin with,

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

0 Introduction to Data Analysis Using an Excel Spreadsheet

0 Introduction to Data Analysis Using an Excel Spreadsheet Experiment 0 Introduction to Data Analysis Using an Excel Spreadsheet I. Purpose The purpose of this introductory lab is to teach you a few basic things about how to use an EXCEL 2010 spreadsheet to do

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

Maple Quick Start. Introduction. Talking to Maple. Using [ENTER] 3 (2.1)

Maple Quick Start. Introduction. Talking to Maple. Using [ENTER] 3 (2.1) Introduction Maple Quick Start In this introductory course, you will become familiar with and comfortable in the Maple environment. You will learn how to use context menus, task assistants, and palettes

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

1.5 Equations of Lines and Planes in 3-D

1.5 Equations of Lines and Planes in 3-D 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

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

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

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

The Graphical Method: An Example

The Graphical Method: An Example The Graphical Method: An Example Consider the following linear program: Maximize 4x 1 +3x 2 Subject to: 2x 1 +3x 2 6 (1) 3x 1 +2x 2 3 (2) 2x 2 5 (3) 2x 1 +x 2 4 (4) x 1, x 2 0, where, for ease of reference,

More information

MATH2210 Notebook 1 Fall Semester 2016/2017. 1 MATH2210 Notebook 1 3. 1.1 Solving Systems of Linear Equations... 3

MATH2210 Notebook 1 Fall Semester 2016/2017. 1 MATH2210 Notebook 1 3. 1.1 Solving Systems of Linear Equations... 3 MATH0 Notebook Fall Semester 06/07 prepared by Professor Jenny Baglivo c Copyright 009 07 by Jenny A. Baglivo. All Rights Reserved. Contents MATH0 Notebook 3. Solving Systems of Linear Equations........................

More information

TWO-DIMENSIONAL TRANSFORMATION

TWO-DIMENSIONAL TRANSFORMATION CHAPTER 2 TWO-DIMENSIONAL TRANSFORMATION 2.1 Introduction As stated earlier, Computer Aided Design consists of three components, namely, Design (Geometric Modeling), Analysis (FEA, etc), and Visualization

More information

Bicycle Math. presented to the Olivetti Club. Timothy E. Goldberg. March 30, 2010. Cornell University Ithaca, New York

Bicycle Math. presented to the Olivetti Club. Timothy E. Goldberg. March 30, 2010. Cornell University Ithaca, New York Bicycle Math presented to the Olivetti Club Timothy E. Goldberg Cornell University Ithaca, New York March 30, 2010 Abstract Some pretty interesting mathematics, especially geometry, arises naturally from

More information

Lecture 1: Systems of Linear Equations

Lecture 1: Systems of Linear Equations MTH Elementary Matrix Algebra Professor Chao Huang Department of Mathematics and Statistics Wright State University Lecture 1 Systems of Linear Equations ² Systems of two linear equations with two variables

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

DRAFT. New York State Testing Program Grade 8 Common Core Mathematics Test. Released Questions with Annotations

DRAFT. New York State Testing Program Grade 8 Common Core Mathematics Test. Released Questions with Annotations DRAFT New York State Testing Program Grade 8 Common Core Mathematics Test Released Questions with Annotations August 2014 Developed and published under contract with the New York State Education Department

More information

MA 323 Geometric Modelling Course Notes: Day 02 Model Construction Problem

MA 323 Geometric Modelling Course Notes: Day 02 Model Construction Problem MA 323 Geometric Modelling Course Notes: Day 02 Model Construction Problem David L. Finn November 30th, 2004 In the next few days, we will introduce some of the basic problems in geometric modelling, and

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

521493S Computer Graphics. Exercise 2 & course schedule change

521493S Computer Graphics. Exercise 2 & course schedule change 521493S Computer Graphics Exercise 2 & course schedule change Course Schedule Change Lecture from Wednesday 31th of March is moved to Tuesday 30th of March at 16-18 in TS128 Question 2.1 Given two nonparallel,

More information

Vectors 2. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996.

Vectors 2. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996. Vectors 2 The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996. Launch Mathematica. Type

More information

OPRE 6201 : 2. Simplex Method

OPRE 6201 : 2. Simplex Method OPRE 6201 : 2. Simplex Method 1 The Graphical Method: An Example Consider the following linear program: Max 4x 1 +3x 2 Subject to: 2x 1 +3x 2 6 (1) 3x 1 +2x 2 3 (2) 2x 2 5 (3) 2x 1 +x 2 4 (4) x 1, x 2

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

Mathematics Curriculum Guide Precalculus 2015-16. Page 1 of 12

Mathematics Curriculum Guide Precalculus 2015-16. Page 1 of 12 Mathematics Curriculum Guide Precalculus 2015-16 Page 1 of 12 Paramount Unified School District High School Math Curriculum Guides 2015 16 In 2015 16, PUSD will continue to implement the Standards by providing

More information

December 4, 2013 MATH 171 BASIC LINEAR ALGEBRA B. KITCHENS

December 4, 2013 MATH 171 BASIC LINEAR ALGEBRA B. KITCHENS December 4, 2013 MATH 171 BASIC LINEAR ALGEBRA B KITCHENS The equation 1 Lines in two-dimensional space (1) 2x y = 3 describes a line in two-dimensional space The coefficients of x and y in the equation

More information

with functions, expressions and equations which follow in units 3 and 4.

with functions, expressions and equations which follow in units 3 and 4. Grade 8 Overview View unit yearlong overview here The unit design was created in line with the areas of focus for grade 8 Mathematics as identified by the Common Core State Standards and the PARCC Model

More information

AMATH 352 Lecture 3 MATLAB Tutorial Starting MATLAB Entering Variables

AMATH 352 Lecture 3 MATLAB Tutorial Starting MATLAB Entering Variables AMATH 352 Lecture 3 MATLAB Tutorial MATLAB (short for MATrix LABoratory) is a very useful piece of software for numerical analysis. It provides an environment for computation and the visualization. Learning

More information

Performance. 13. Climbing Flight

Performance. 13. Climbing Flight Performance 13. Climbing Flight In order to increase altitude, we must add energy to the aircraft. We can do this by increasing the thrust or power available. If we do that, one of three things can happen:

More information

CATIA V5 Tutorials. Mechanism Design & Animation. Release 18. Nader G. Zamani. University of Windsor. Jonathan M. Weaver. University of Detroit Mercy

CATIA V5 Tutorials. Mechanism Design & Animation. Release 18. Nader G. Zamani. University of Windsor. Jonathan M. Weaver. University of Detroit Mercy CATIA V5 Tutorials Mechanism Design & Animation Release 18 Nader G. Zamani University of Windsor Jonathan M. Weaver University of Detroit Mercy SDC PUBLICATIONS Schroff Development Corporation www.schroff.com

More information

Plotting Lines in Mathematica

Plotting Lines in Mathematica Lines.nb 1 Plotting Lines in Mathematica Copright 199, 1997, 1 b James F. Hurle, Universit of Connecticut, Department of Mathematics, 196 Auditorium Road Unit 39, Storrs CT 669-39. All rights reserved.

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

For example, estimate the population of the United States as 3 times 10⁸ and the

For example, estimate the population of the United States as 3 times 10⁸ and the CCSS: Mathematics The Number System CCSS: Grade 8 8.NS.A. Know that there are numbers that are not rational, and approximate them by rational numbers. 8.NS.A.1. Understand informally that every number

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

Tutorial 3: Graphics and Exploratory Data Analysis in R Jason Pienaar and Tom Miller

Tutorial 3: Graphics and Exploratory Data Analysis in R Jason Pienaar and Tom Miller Tutorial 3: Graphics and Exploratory Data Analysis in R Jason Pienaar and Tom Miller Getting to know the data An important first step before performing any kind of statistical analysis is to familiarize

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

Beginner s Matlab Tutorial

Beginner s Matlab Tutorial Christopher Lum lum@u.washington.edu Introduction Beginner s Matlab Tutorial This document is designed to act as a tutorial for an individual who has had no prior experience with Matlab. For any questions

More information

The degree of a polynomial function is equal to the highest exponent found on the independent variables.

The degree of a polynomial function is equal to the highest exponent found on the independent variables. DETAILED SOLUTIONS AND CONCEPTS - POLYNOMIAL FUNCTIONS Prepared by Ingrid Stewart, Ph.D., College of Southern Nevada Please Send Questions and Comments to ingrid.stewart@csn.edu. Thank you! PLEASE NOTE

More information

Engineering Problem Solving and Excel. EGN 1006 Introduction to Engineering

Engineering Problem Solving and Excel. EGN 1006 Introduction to Engineering Engineering Problem Solving and Excel EGN 1006 Introduction to Engineering Mathematical Solution Procedures Commonly Used in Engineering Analysis Data Analysis Techniques (Statistics) Curve Fitting techniques

More information

Programming Languages & Tools

Programming Languages & Tools 4 Programming Languages & Tools Almost any programming language one is familiar with can be used for computational work (despite the fact that some people believe strongly that their own favorite programming

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

Section 1: How will you be tested? This section will give you information about the different types of examination papers that are available.

Section 1: How will you be tested? This section will give you information about the different types of examination papers that are available. REVISION CHECKLIST for IGCSE Mathematics 0580 A guide for students How to use this guide This guide describes what topics and skills you need to know for your IGCSE Mathematics examination. It will help

More information

CHOOSING A COLLEGE. Teacher s Guide Getting Started. Nathan N. Alexander Charlotte, NC

CHOOSING A COLLEGE. Teacher s Guide Getting Started. Nathan N. Alexander Charlotte, NC Teacher s Guide Getting Started Nathan N. Alexander Charlotte, NC Purpose In this two-day lesson, students determine their best-matched college. They use decision-making strategies based on their preferences

More information

Copyrighted Material. Chapter 1 DEGREE OF A CURVE

Copyrighted Material. Chapter 1 DEGREE OF A CURVE Chapter 1 DEGREE OF A CURVE Road Map The idea of degree is a fundamental concept, which will take us several chapters to explore in depth. We begin by explaining what an algebraic curve is, and offer two

More information

We can display an object on a monitor screen in three different computer-model forms: Wireframe model Surface Model Solid model

We can display an object on a monitor screen in three different computer-model forms: Wireframe model Surface Model Solid model CHAPTER 4 CURVES 4.1 Introduction In order to understand the significance of curves, we should look into the types of model representations that are used in geometric modeling. Curves play a very significant

More information

Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data

Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data Introduction In several upcoming labs, a primary goal will be to determine the mathematical relationship between two variable

More information

A Guide to Using Excel in Physics Lab

A Guide to Using Excel in Physics Lab A Guide to Using Excel in Physics Lab Excel has the potential to be a very useful program that will save you lots of time. Excel is especially useful for making repetitious calculations on large data sets.

More information

LINEAR INEQUALITIES. Mathematics is the art of saying many things in many different ways. MAXWELL

LINEAR INEQUALITIES. Mathematics is the art of saying many things in many different ways. MAXWELL Chapter 6 LINEAR INEQUALITIES 6.1 Introduction Mathematics is the art of saying many things in many different ways. MAXWELL In earlier classes, we have studied equations in one variable and two variables

More information

Figure 2.1: Center of mass of four points.

Figure 2.1: Center of mass of four points. Chapter 2 Bézier curves are named after their inventor, Dr. Pierre Bézier. Bézier was an engineer with the Renault car company and set out in the early 196 s to develop a curve formulation which would

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

Volumes of Revolution

Volumes of Revolution Mathematics Volumes of Revolution About this Lesson This lesson provides students with a physical method to visualize -dimensional solids and a specific procedure to sketch a solid of revolution. Students

More information

Investigating Area Under a Curve

Investigating Area Under a Curve Mathematics Investigating Area Under a Curve About this Lesson This lesson is an introduction to areas bounded by functions and the x-axis on a given interval. Since the functions in the beginning of the

More information

PLOTTING DATA AND INTERPRETING GRAPHS

PLOTTING DATA AND INTERPRETING GRAPHS PLOTTING DATA AND INTERPRETING GRAPHS Fundamentals of Graphing One of the most important sets of skills in science and mathematics is the ability to construct graphs and to interpret the information they

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

THE WHE TO PLAY. Teacher s Guide Getting Started. Shereen Khan & Fayad Ali Trinidad and Tobago

THE WHE TO PLAY. Teacher s Guide Getting Started. Shereen Khan & Fayad Ali Trinidad and Tobago Teacher s Guide Getting Started Shereen Khan & Fayad Ali Trinidad and Tobago Purpose In this two-day lesson, students develop different strategies to play a game in order to win. In particular, they will

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

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 Solving LPs: The Simplex Algorithm of George Dantzig

1 Solving LPs: The Simplex Algorithm of George Dantzig Solving LPs: The Simplex Algorithm of George Dantzig. Simplex Pivoting: Dictionary Format We illustrate a general solution procedure, called the simplex algorithm, by implementing it on a very simple example.

More information

Tennessee Department of Education. Task: Sally s Car Loan

Tennessee Department of Education. Task: Sally s Car Loan Tennessee Department of Education Task: Sally s Car Loan Sally bought a new car. Her total cost including all fees and taxes was $15,. She made a down payment of $43. She financed the remaining amount

More information

Introduction to Quadratic Functions

Introduction to Quadratic Functions Introduction to Quadratic Functions The St. Louis Gateway Arch was constructed from 1963 to 1965. It cost 13 million dollars to build..1 Up and Down or Down and Up Exploring Quadratic Functions...617.2

More information

Determine If An Equation Represents a Function

Determine If An Equation Represents a Function Question : What is a linear function? The term linear function consists of two parts: linear and function. To understand what these terms mean together, we must first understand what a function is. The

More information

WESTMORELAND COUNTY PUBLIC SCHOOLS 2011 2012 Integrated Instructional Pacing Guide and Checklist Computer Math

WESTMORELAND COUNTY PUBLIC SCHOOLS 2011 2012 Integrated Instructional Pacing Guide and Checklist Computer Math Textbook Correlation WESTMORELAND COUNTY PUBLIC SCHOOLS 2011 2012 Integrated Instructional Pacing Guide and Checklist Computer Math Following Directions Unit FIRST QUARTER AND SECOND QUARTER Logic Unit

More information

In mathematics, there are four attainment targets: using and applying mathematics; number and algebra; shape, space and measures, and handling data.

In mathematics, there are four attainment targets: using and applying mathematics; number and algebra; shape, space and measures, and handling data. MATHEMATICS: THE LEVEL DESCRIPTIONS In mathematics, there are four attainment targets: using and applying mathematics; number and algebra; shape, space and measures, and handling data. Attainment target

More information

15.3. Calculating centres of mass. Introduction. Prerequisites. Learning Outcomes. Learning Style

15.3. Calculating centres of mass. Introduction. Prerequisites. Learning Outcomes. Learning Style Calculating centres of mass 15.3 Introduction In this block we show how the idea of integration as the limit of a sum can be used to find the centre of mass of an object such as a thin plate, like a sheet

More information

Pennsylvania System of School Assessment

Pennsylvania System of School Assessment Pennsylvania System of School Assessment The Assessment Anchors, as defined by the Eligible Content, are organized into cohesive blueprints, each structured with a common labeling system that can be read

More information

Year 9 set 1 Mathematics notes, to accompany the 9H book.

Year 9 set 1 Mathematics notes, to accompany the 9H book. Part 1: Year 9 set 1 Mathematics notes, to accompany the 9H book. equations 1. (p.1), 1.6 (p. 44), 4.6 (p.196) sequences 3. (p.115) Pupils use the Elmwood Press Essential Maths book by David Raymer (9H

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

5 Systems of Equations

5 Systems of Equations Systems of Equations Concepts: Solutions to Systems of Equations-Graphically and Algebraically Solving Systems - Substitution Method Solving Systems - Elimination Method Using -Dimensional Graphs to Approximate

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

Chapter 9. Systems of Linear Equations

Chapter 9. Systems of Linear Equations Chapter 9. Systems of Linear Equations 9.1. Solve Systems of Linear Equations by Graphing KYOTE Standards: CR 21; CA 13 In this section we discuss how to solve systems of two linear equations in two variables

More information

South Carolina College- and Career-Ready (SCCCR) Algebra 1

South Carolina College- and Career-Ready (SCCCR) Algebra 1 South Carolina College- and Career-Ready (SCCCR) Algebra 1 South Carolina College- and Career-Ready Mathematical Process Standards The South Carolina College- and Career-Ready (SCCCR) Mathematical Process

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

MATH 132: CALCULUS II SYLLABUS

MATH 132: CALCULUS II SYLLABUS MATH 32: CALCULUS II SYLLABUS Prerequisites: Successful completion of Math 3 (or its equivalent elsewhere). Math 27 is normally not a sufficient prerequisite for Math 32. Required Text: Calculus: Early

More information

EdExcel Decision Mathematics 1

EdExcel Decision Mathematics 1 EdExcel Decision Mathematics 1 Linear Programming Section 1: Formulating and solving graphically Notes and Examples These notes contain subsections on: Formulating LP problems Solving LP problems Minimisation

More information

Survey, Statistics and Psychometrics Core Research Facility University of Nebraska-Lincoln. Log-Rank Test for More Than Two Groups

Survey, Statistics and Psychometrics Core Research Facility University of Nebraska-Lincoln. Log-Rank Test for More Than Two Groups Survey, Statistics and Psychometrics Core Research Facility University of Nebraska-Lincoln Log-Rank Test for More Than Two Groups Prepared by Harlan Sayles (SRAM) Revised by Julia Soulakova (Statistics)

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

The Fourth International DERIVE-TI92/89 Conference Liverpool, U.K., 12-15 July 2000. Derive 5: The Easiest... Just Got Better!

The Fourth International DERIVE-TI92/89 Conference Liverpool, U.K., 12-15 July 2000. Derive 5: The Easiest... Just Got Better! The Fourth International DERIVE-TI9/89 Conference Liverpool, U.K., -5 July 000 Derive 5: The Easiest... Just Got Better! Michel Beaudin École de technologie supérieure 00, rue Notre-Dame Ouest Montréal

More information

Georgia Standards of Excellence Curriculum Map. Mathematics. GSE 8 th Grade

Georgia Standards of Excellence Curriculum Map. Mathematics. GSE 8 th Grade Georgia Standards of Excellence Curriculum Map Mathematics GSE 8 th Grade These materials are for nonprofit educational purposes only. Any other use may constitute copyright infringement. GSE Eighth Grade

More information

H.Calculating Normal Vectors

H.Calculating Normal Vectors Appendix H H.Calculating Normal Vectors This appendix describes how to calculate normal vectors for surfaces. You need to define normals to use the OpenGL lighting facility, which is described in Chapter

More information

Lesson 10: Polynomials

Lesson 10: Polynomials Lesson 10: Polynomials restart; Factoring polynomials The Fundamental Theorem of Algebra says that a polynomial of degree n in one variable x (with coefficients that are complex numbers) can be written

More information

A Concrete Introduction. to the Abstract Concepts. of Integers and Algebra using Algebra Tiles

A Concrete Introduction. to the Abstract Concepts. of Integers and Algebra using Algebra Tiles A Concrete Introduction to the Abstract Concepts of Integers and Algebra using Algebra Tiles Table of Contents Introduction... 1 page Integers 1: Introduction to Integers... 3 2: Working with Algebra Tiles...

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

that satisfies (2). Then (3) ax 0 + by 0 + cz 0 = d.

that satisfies (2). Then (3) ax 0 + by 0 + cz 0 = d. Planes.nb 1 Plotting Planes in Mathematica Copright 199, 1997, 1 b James F. Hurle, Universit of Connecticut, Department of Mathematics, Unit 39, Storrs CT 669-39. All rights reserved. This notebook discusses

More information

Vector Spaces; the Space R n

Vector Spaces; the Space R n Vector Spaces; the Space R n Vector Spaces A vector space (over the real numbers) is a set V of mathematical entities, called vectors, U, V, W, etc, in which an addition operation + is defined and in which

More information

Plotting: Customizing the Graph

Plotting: Customizing the Graph Plotting: Customizing the Graph Data Plots: General Tips Making a Data Plot Active Within a graph layer, only one data plot can be active. A data plot must be set active before you can use the Data Selector

More information

Chapter 4 One Dimensional Kinematics

Chapter 4 One Dimensional Kinematics Chapter 4 One Dimensional Kinematics 41 Introduction 1 4 Position, Time Interval, Displacement 41 Position 4 Time Interval 43 Displacement 43 Velocity 3 431 Average Velocity 3 433 Instantaneous Velocity

More information

Intro to Excel spreadsheets

Intro to Excel spreadsheets Intro to Excel spreadsheets What are the objectives of this document? The objectives of document are: 1. Familiarize you with what a spreadsheet is, how it works, and what its capabilities are; 2. Using

More information

Review of Fundamental Mathematics

Review of Fundamental Mathematics Review of Fundamental Mathematics As explained in the Preface and in Chapter 1 of your textbook, managerial economics applies microeconomic theory to business decision making. The decision-making tools

More information

Algebra I Credit Recovery

Algebra I Credit Recovery Algebra I Credit Recovery COURSE DESCRIPTION: The purpose of this course is to allow the student to gain mastery in working with and evaluating mathematical expressions, equations, graphs, and other topics,

More information

Tutorial: 3D Pipe Junction Using Hexa Meshing

Tutorial: 3D Pipe Junction Using Hexa Meshing Tutorial: 3D Pipe Junction Using Hexa Meshing Introduction In this tutorial, you will generate a mesh for a three-dimensional pipe junction. After checking the quality of the first mesh, you will create

More information

Derive 5: The Easiest... Just Got Better!

Derive 5: The Easiest... Just Got Better! Liverpool John Moores University, 1-15 July 000 Derive 5: The Easiest... Just Got Better! Michel Beaudin École de Technologie Supérieure, Canada Email; mbeaudin@seg.etsmtl.ca 1. Introduction Engineering

More information

Orbital Dynamics with Maple (sll --- v1.0, February 2012)

Orbital Dynamics with Maple (sll --- v1.0, February 2012) Orbital Dynamics with Maple (sll --- v1.0, February 2012) Kepler s Laws of Orbital Motion Orbital theory is one of the great triumphs mathematical astronomy. The first understanding of orbits was published

More information