Mathematica for Calculus II (Version 9.0)

Size: px
Start display at page:

Download "Mathematica for Calculus II (Version 9.0)"

Transcription

1 Mathematica for Calculus II (Version 9.0) C. G. Melles Mathematics Department United States Naval Academy December 31, 013 Contents 1. Introduction. Volumes of revolution 3. Solving systems of equations 4. Partial fraction decomposition 5. Direction fields 6. Solutions of differential equations 7. Euler s Method 8. Maclaurin and Taylor series 9. Graphs in polar coordinates 10. Vectors 11. Graphing lines in 3-dimensional space 1. Graphing planes 1. Introduction Basic plotting, solutions of equations, lists and tables, defining and evaluating functions, limits, derivatives, and integrals are covered in the guide to Mathematica for Calculus I. This notebook covers additional topics which are useful in Calculus II.. Volumes of Revolution.1. Plot the surface generated by revolving the graph of e -x from x = 0 to x = 1 around the y-axis.

2 Mathematica for Calculus II Notebook 9_0.nb RevolutionPlot3D Exp x, x, 0, 1.. Plot the surface generated by revolving the graph of sin (x) from x = 0 to x = p around the x-axis. N Note: The arrow is Ø obtained by typing - and >. RevolutionPlot3D Sin x, x, 0, Pi, RevolutionAxis 1, 0, 0.3. Plot the solid obtained by revolving the region bounded by the graphs of y=sqrt[x] and y=x 4 around the x-axis. Show with the same scale on both axes. Color the top surface green and the bottom surface blue.

3 Mathematica for Calculus II Notebook 9_0.nb 3 RevolutionPlot3D Sqrt x, x^4, x, 0, 1, AspectRatio Automatic, RevolutionAxis 1, 0, 0, PlotStyle Green, Blue.4. Plot the same solid as in the previous example, but make the green surface partly transparent and remove the mesh.

4 4 Mathematica for Calculus II Notebook 9_0.nb RevolutionPlot3D Sqrt x, x^4, x, 0, 1, AspectRatio Automatic, RevolutionAxis 1, 0, 0, PlotStyle Opacity.6, Green, Blue, Mesh None.5. Plot the same solid again, but revolved only 3/4 way around the axis, to see a cross-section.

5 Mathematica for Calculus II Notebook 9_0.nb 5 RevolutionPlot3D Sqrt x, x^4, x, 0, 1,, Pi, Pi, AspectRatio Automatic, RevolutionAxis 1, 0, 0, PlotStyle Green, Blue, Mesh None 3. Solving systems of equations 3.1. Solve the system of equations a + b + c =, a + d = 4, a + c = 1, and b - d = 1. Notice the double == signs in the Mathematica command. Note that if the variables have been assigned values in a previous problem, you should first use the clear command to clear out previous values. Clear a, b, c, d Solve a b c &&a d 4&&a c 1&&b d 1, a, b, c, d a 1, b, c 1, d Solve a system of nonlinear equations. Solve a^ b^ &&b a^ 1 0, a, b a,b 3, a,b 3, a,b 3, a,b 3, a,b 0, a,b Find the real solutions of a system of nonlinear equations.

6 6 Mathematica for Calculus II Notebook 9_0.nb Solve a^ b^ &&b a^ 1 0, a, b, Reals a,b 0, a,b Numerically approximate the real solutions of a system of nonlinear equations. NSolve a^ b^ &&b a^ 1 0, a, b, Reals a , b 0, a , b Find the solutions with a variable restricted to an interval. NSolve a^ b^ &&b a^ 1 0&&0 a, a, b, Reals a , b 0 4. Partial fraction decomposition 4.1. Find the partial fraction decomposition of a rational function. Apart 3 x^ x 4 x^3 4x 1 x 1 x 4 x 5. Direction fields 5.1. Plot a direction field for the differential equation y =-x/y. Since Mathematica does not have a function to plot direction fields, we use the VectorPlot function to plot the vector field {1,-x/y}. We use the VectorScale options Tiny (size of vectors relative to bounding boxes), Automatic (aspect ratio), and None (all vectors the same length). We use VectorStyle Segment. VectorPlot 1, x y, x, 3, 3, y, 3, 3, VectorScale Tiny, Automatic, None, VectorStyle "Segment"

7 Mathematica for Calculus II Notebook 9_0.nb We plot another vector field, using options to obtain a more detailed picture. We give the plot a name, such as Field, for use below in section 6. Field VectorPlot 1, y 3 y, x, 0, 4, y, 0, 4, VectorPoints Fine, VectorScale 0.0, Automatic, None, VectorStyle "Segment" Solutions of differential equations 6.1. Solve a differential equation exactly. C[1] represents an unknown constant. DSolve y' x x y x, y x, x y x x C 1, y x x C Solve a differential equation with initial condition. DSolve y' x x y x, y 0, y x, x DSolve::bvnul : For some branches of the general solution, the given boundary conditions lead to an empty solution. à y x 4 x 6.3. Solve a differential equation and plot the solution. We save the result of the DSolve command with a name of our choice, such as Solution1. The ; at the end of the first command indicates not to display the result. The /. in the second command indicates that Solution1 is to be used for y[x].

8 8 Mathematica for Calculus II Notebook 9_0.nb Solution1 DSolve y' x y x 3 y x, y 0 0.1, y x, x ; Plot y x. Solution1, x, 0, 4 Solve::ifun : Inverse functions are being used by Solve, so some solutions may not be found; use Reduce for complete solution information. à Solve the same differential equation numerically and plot it. Solution NDSolve y' x y x 3 y x, y 0 0.1, y, x, 0, 4 ; Plot y x. Solution, x, 0, Find solutions of a differential equation for several initial conditions and plot them. We first construct a list of replacement rules for the initial conditions, which we give a name, such as c3list. We then solve the differential equation and give it a name, such as Solution3. Using /. we evaluate y[x] at these solutions and at each of the constants, to form a list of solutions, which we can then plot. c3list Table c3 c, c, 0,0.1,1,,3,4 ; Solution3 DSolve y' x y x 3 y x, y 0 c3, y x, x ; Solve::ifun : Inverse functions are being used by Solve, so some solutions may not be found; use Reduce for complete solution information. à Solutionlist3 y x. Solution3. c3list 0.3 3x 0, x, 3 3 x 3x, 6 3 x 1 3x, 3, 1 3 x 1 4 3x

9 Mathematica for Calculus II Notebook 9_0.nb 9 Plot Solutionlist3, x, 0, We solve the same problem with the numerical differential equation solver. We give the plot a name, such as SolutionPlot4. We use PlotStyle->Thick to make the plot clearer. c4list 0,0.1,1,,3,4 ; Solutions4 Table NDSolve y' x y x 3 y x, y 0 c4, y, x, 0, 4, c4, c4list ; SolutionPlot4 Plot y x. Solutions4, x, 0, 4, PlotStyle Thick We combine the direction field from 5. with the solution plot above.

10 10 Mathematica for Calculus II Notebook 9_0.nb Show Field, SolutionPlot Euler s methods 7.1. Apply Euler s method to the differential equation y =y(3-y), y(0)=0.1 with step size h=0. and 0 steps. Make a table of x and y values and call it EulerList1. Plot the values using ListPlot. Clear x, y ; x 0 0; y 0 0.1; h 0.; y i_ : y i y i 1 h y i 1 3 y i 1 x i_ : x i x i 1 h EulerList1 Table x i, y i, i, 0, 0 ;

11 Mathematica for Calculus II Notebook 9_0.nb 11 TableForm EulerList1, TableHeadings None, "x", "y" x y EulerGraph1 ListPlot EulerList

12 1 Mathematica for Calculus II Notebook 9_0.nb Show Field, EulerGraph Clear x, y 8. Maclaurin and Taylor series 8.1. Construct the Taylor polynomials of degrees 0 to 4 of a function at x=a and plot them, along with the original function. We will call the collections of polynomials TaylorTable1. f x_ : Exp x ; a ; T n_, x_ : Sum Derivative i f a x a ^i Factorial i, i, 0, n TaylorTable1 Table T n, x, n, 0, 4, x, x 1 x, x 1 x 1 6 x 3, x 1 x 1 6 x x 4

13 Mathematica for Calculus II Notebook 9_0.nb 13 Plot f x, TaylorTable1, x, 1, 4, PlotStyle Thick, Black, Red, Orange, Green, Cyan, Blue Graphs in polar coordinates 9.1. An 8-petal rose. PolarPlot Cos 4 t, t, 0, Pi, PlotStyle Red The intersection of a circle and a cardiod.

14 14 Mathematica for Calculus II Notebook 9_0.nb PolarPlot 3 Cos t, 1 Cos t, t, 0, Pi, PlotStyle Red, Blue Vectors Addition of vectors. 1,, 3 4, 0, 1 5,, 10.. Scalar multiplication. 10 1,, 3 10, 0, Magnitude of a vector. Norm 1,, Dot product. Dot 1,, 3, 5, 0, Cross product. Cross 1, 0, 1, 0, 1, 0 1, 0, Graphing lines in 3-dimensional space Graph a parametrized line.

15 Mathematica for Calculus II Notebook 9_0.nb 15 ParametricPlot3D 1 t, t, 1 t, t, 0, Show the graph of a parametrized line within a given size box. Label the axes. Color the line blue.

16 16 Mathematica for Calculus II Notebook 9_0.nb ParametricPlot3D 1 t, t, 1 t, t, 0, 1, PlotRange 0, 3, 0, 5,, 1, AxesLabel x, y, z, PlotStyle Thick, Blue 4 y 01 z x Show a line from a point P=(1,,3) to a point Q=(4,4,4). Label the points. Line1 ParametricPlot3D 1 t 1,, 3 t 4, 4, 4, t, 0, 1, PlotRange 0, 5, 0, 5, 0, 5, AxesLabel x, y, z, PlotStyle Thick, Blue ; PLabel Graphics3D Text " 1,,3 ", 1.4,,3 ; QLabel Graphics3D Text " 4,4,4 ", 4, 4, 4.3 ; PtGraph1 ListPointPlot3D 1,, 3, 4, 4, 4, PlotStyle PointSize Large ;

17 Mathematica for Calculus II Notebook 9_0.nb 17 Show Line1, PLabel, QLabel, PtGraph1 y 4 0 4,4,4 4 1,,3 z 0 0 x 4 1. Graphing planes 1.1. Plot the plane z=x+y+3 for 0 x 3 and 0 y. Plot3D x y 3, x, 0, 3, y, 0,, AxesLabel x, y, z 1.. Plot the portion of the plane through the point (1,,0) with normal vector (,1,3) such that 0 x 4, 0 y 4, and 0 z 4.

18 18 Mathematica for Calculus II Notebook 9_0.nb ContourPlot3D x 1 y 3z 0, x, 0, 4, y, 0, 4, z, 0, 4, AxesLabel x, y, z 1.3. Plot the triangle determined by the points P=(1,,3), Q=(4,4,4), and R=(1,3,5). First we find two vectors in the plane. Then we parametrize the plane in terms of these vectors and the point P as {x,y,z}={1,,3}+sv+tw. We take the portion for which 0 s 1, 0 t 1, and s+t 1. v 4, 4, 4 1,, 3 w 1, 3, 5 1,, 3 3,, 1 0, 1, Triangle1 ParametricPlot3D 1,, 3 s v t w, s, 0, 1, t, 0, 1, RegionFunction Function x, y, z, s, t, s t 1, PlotStyle Blue ; PLabel Graphics3D Text " 1,,3 ", 1.4,,3 ; QLabel Graphics3D Text " 4,4,4 ", 4, 4, 4.3 ; RLabel Graphics3D Text " 1,3,5 ", 1.3, 3, 5. ; PtGraph ListPointPlot3D 1,, 3, 4, 4, 4, 1, 3, 5, PlotStyle PointSize Large ;

19 Mathematica for Calculus II Notebook 9_0.nb 19 Show Triangle1, PLabel, QLabel, RLabel, PtGraph Clear v, w

Chapter 11 Parametric Equations, Polar Curves, and Conic Sections

Chapter 11 Parametric Equations, Polar Curves, and Conic Sections Chapter 11 Parametric Equations, Polar Curves, and Conic Sections ü 11.1 Parametric Equations Students should read Sections 11.1-11. of Rogawski's Calculus [1] for a detailed discussion of the material

More information

Introduction to Mathematica and Graphing in 3-Space

Introduction to Mathematica and Graphing in 3-Space 1 Mathematica is a powerful tool that can be used to carry out computations and construct graphs and images to help deepen our understanding of mathematical concepts. This document will serve as a living

More information

Calculus of Vector-Valued Functions

Calculus of Vector-Valued Functions Chapter 3 Calculus of Vector-Valued Functions Useful Tip: If you are reading the electronic version of this publication formatted as a Mathematica Notebook, then it is possible to view 3-D plots generated

More information

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

Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section. Chapter 3 Differentiation ü 3.1 The Derivative Students should read Sections 3.1-3.5 of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section. ü 3.1.1 Slope of Tangent

More information

Math 253 Homework due Wednesday, March 9 SOLUTIONS

Math 253 Homework due Wednesday, March 9 SOLUTIONS Math 53 Homework due Wednesday, March 9 SOLUTIONS 1. Do Section 8.8, problems 11,, 15, 17 (these problems have to do with Taylor s Inequality, and they are very similar to what we did on the last homework.

More information

Lecture 22 Appendix B (More on Legendre Polynomials and Associated Legendre functions)

Lecture 22 Appendix B (More on Legendre Polynomials and Associated Legendre functions) Lecture Appendix B (More on Legendre Polynomials and Associated Legendre functions) Ex.7: Let's use Mathematica to solve the equation and then verify orthogonality. First In[]:= Out[]= DSolve y'' x n^y

More information

Volume: The Disk Method. Using the integral to find volume.

Volume: The Disk Method. Using the integral to find volume. Volume: The Disk Method Using the integral to find volume. If a region in a plane is revolved about a line, the resulting solid is a solid of revolution and the line is called the axis of revolution. y

More information

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

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

More information

Concepts of Approximate Error: Approximate Error, Absolute Approximate Error, Relative Approximate Error, and Absolute Relative Approximate Error

Concepts of Approximate Error: Approximate Error, Absolute Approximate Error, Relative Approximate Error, and Absolute Relative Approximate Error Concepts of Approximate Error: Approximate Error, Absolute Approximate Error, Relative Approximate Error, and Absolute Relative Approximate Error Sean Rodby, Luke Snyder, Autar Kaw University of South

More information

Mathematica for Rogawski's Calculus

Mathematica for Rogawski's Calculus Mathematica for Rogawski's Calculus 2nd Edition 2010 Based on Mathematica Version 7 Abdul Hassen, Gary Itzkowitz, Hieu D. Nguyen, Jay Schiffman W. H. Freeman and Company New York Copyright 2010 Table of

More information

MATHEMATICA MANUAL FUNDAMENTALS OF DIFFERENTIAL EQUATIONS EIGHTH EDITION DIFFERENTIAL EQUATIONS AND BOUNDARY VALUE PROBLEMS SIXTH EDITION

MATHEMATICA MANUAL FUNDAMENTALS OF DIFFERENTIAL EQUATIONS EIGHTH EDITION DIFFERENTIAL EQUATIONS AND BOUNDARY VALUE PROBLEMS SIXTH EDITION MATHEMATICA MANUAL FUNDAMENTALS OF DIFFERENTIAL EQUATIONS EIGHTH EDITION FUNDAMENTALS OF DIFFERENTIAL EQUATIONS AND BOUNDARY VALUE PROBLEMS SIXTH EDITION R. Kent Nagle Thomas Polaski Winthrop University

More information

The Ramsey model - linearization, backward integration, relaxation (complete)

The Ramsey model - linearization, backward integration, relaxation (complete) The Ramsey model - linearization, backward integration, relaxation (complete) (Quantitative Dynamic Macroeconomics, Lecture Notes, Thomas Steger, University of Leipzig) Ramsey Model: linearized version

More information

Chapter Exercise 7. Exercise 8. VectorPlot[{-x, -y}, {x, -2, 2}, {y, -2, 2}]

Chapter Exercise 7. Exercise 8. VectorPlot[{-x, -y}, {x, -2, 2}, {y, -2, 2}] Chapter 5. Exercise 7 VectorPlot[{x, }, {x, -, }, {y, -, }] - - - - Exercise 8 VectorPlot[{-x, -y}, {x, -, }, {y, -, }] - - - - ch5-hw-solutions.nb Exercise VectorPlot[{y, -x}, {x, -, }, {y, -, }] - -

More information

Mathematica Project, Math21b Spring 2008

Mathematica Project, Math21b Spring 2008 Mathematica Project, Math21b Spring 2008 Oliver Knill, Harvard University, Spring 2008 Support Welcome to the Mathematica computer project! In case problems with this assignment, please email Oliver at

More information

Name: Class: Math 7B Date:

Name: Class: Math 7B Date: 1. Match the given differential equations to their families of solutions. 2. Match the given differential equations and the graphs of their solutions. PAGE 1 3. Match the differential equation with its

More information

3.2. The Ramsey model - linearization, backward integration, relaxation (complete)

3.2. The Ramsey model - linearization, backward integration, relaxation (complete) 3.. The Ramsey model - linearization, backward integration, relaxation (complete) (Quantitative Dynamic Macroeconomics, Lecture Notes, Thomas Steger, University of Leipzig, winter term /3) Ramsey Model:

More information

The Mathematics 4 course in Wolfram Mathematica

The Mathematics 4 course in Wolfram Mathematica Czech Technical University in Prague Faculty of Nuclear Sciences and Physical Engineering Department of Mathematics The Mathematics 4 course in Wolfram Mathematica Bachelor s Degree Project Author: Eva

More information

December 18, 2017 Section W Nandyalam

December 18, 2017 Section W Nandyalam Mathematica Gift #11 Problem Complete the following 15 exercises in a Mathematica notebook. You should write the problem in a text cell and show your work below the question. Questions Question 1 Compute

More information

Calculus BC: Section I

Calculus BC: Section I Calculus BC: Section I Section I consists of 45 multiple-choice questions. Part A contains 28 questions and does not allow the use of a calculator. Part B contains 17 questions and requires a graphing

More information

A Poor Example of a Project - But Gives Some Direction

A Poor Example of a Project - But Gives Some Direction A Poor Example of a Project - But Gives Some Direction Bill Knowlton Materials Science & Engineering Electrical & Computer Engineering Boise State Unversity The idea behind this example is two-fold: 1.

More information

APPM 1360 Final Exam Fall 2013

APPM 1360 Final Exam Fall 2013 APPM 6 Final Exam Fall On the front of our bluebook, please write: a grading ke, our name, student ID, and section and instructor. This exam is worth 5 points and has 9 questions. Show all work! Answers

More information

Learning Objectives for Math 166

Learning Objectives for Math 166 Learning Objectives for Math 166 Chapter 6 Applications of Definite Integrals Section 6.1: Volumes Using Cross-Sections Draw and label both 2-dimensional perspectives and 3-dimensional sketches of the

More information

Introductions to InverseErfc

Introductions to InverseErfc Introductions to InverseErfc Introduction to the probability integrals and inverses General The probability integral (error function) erf has a long history beginning with the articles of A. de Moivre

More information

The Solow model - analytical solution, linearization, shooting, relaxation (complete)

The Solow model - analytical solution, linearization, shooting, relaxation (complete) The Solow model - analytical solution, linearization, shooting, relaxation (complete) (Quantitative Dynamic Macroeconomics, Lecture Notes, Thomas Steger, University of Leipzig). Solow model: analytical

More information

Eigen decomposition for 3D stress tensor

Eigen decomposition for 3D stress tensor Eigen decomposition for 3D stress tensor by Vince Cronin Begun September 13, 2010; last revised September 23, 2015 Unfinished Dra ; Subject to Revision Introduction If we have a cubic free body that is

More information

Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1

Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1 Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1 Questions Example Differentiate the function y = ae v + b v + c v 2. Example Differentiate the function y = A + B x

More information

Physics 229& 100 Homework #1 Name: Nasser Abbasi

Physics 229& 100 Homework #1 Name: Nasser Abbasi Physics 229& 100 Homework #1 Name: Nasser Abbasi (converted to 6.0) 1. Practice in transcribing expressions into Mathematica syntax a) Find the determinant of this matrix: In[94]:= a = {{1, 2, 3, 4}, {1,

More information

Math 153 Calculus III Notes

Math 153 Calculus III Notes Math 153 Calculus III Notes 10.1 Parametric Functions A parametric function is a where x and y are described by a function in terms of the parameter t: Example 1 (x, y) = {x(t), y(t)}, or x = f(t); y =

More information

[t] 2-2 G M + v 2 R G M

[t] 2-2 G M + v 2 R G M This notebook demonstrates some of the behavior of the ODEs you'll be studying during Project 5, on trajectories of rockets in a changing gravitational field. In recitation, we ll find that the differential

More information

Chapter 8: Polar Coordinates and Vectors

Chapter 8: Polar Coordinates and Vectors Chapter 8: Polar Coordinates and Vectors 8.1 Polar Coordinates This is another way (in addition to the x-y system) of specifying the position of a point in the plane. We give the distance r of the point

More information

D. Correct! This is the correct answer. It is found by dy/dx = (dy/dt)/(dx/dt).

D. Correct! This is the correct answer. It is found by dy/dx = (dy/dt)/(dx/dt). Calculus II - Problem Solving Drill 4: Calculus for Parametric Equations Question No. of 0 Instructions: () Read the problem and answer choices carefully () Work the problems on paper as. Find dy/dx where

More information

Purdue University Study Guide for MA Credit Exam

Purdue University Study Guide for MA Credit Exam Purdue University Study Guide for MA 60 Credit Exam Students who pass the credit exam will gain credit in MA60. The credit exam is a twohour long exam with 5 multiple choice questions. No books or notes

More information

TOPIC 3. Taylor polynomials. Mathematica code. Here is some basic mathematica code for plotting functions.

TOPIC 3. Taylor polynomials. Mathematica code. Here is some basic mathematica code for plotting functions. TOPIC 3 Taylor polynomials Main ideas. Linear approximating functions: Review Approximating polynomials Key formulas: P n (x) =a 0 + a (x x )+ + a n (x x ) n P n (x + x) =a 0 + a ( x)+ + a n ( x) n where

More information

Scholarship 2015 Calculus

Scholarship 2015 Calculus 93202Q 932022 S Scholarship 2015 Calculus 2.00 p.m. Tuesday 17 November 2015 Time allowed: Three hours Total marks: 40 QUESTION BOOKLET There are five questions in this booklet. Answer ALL FIVE questions,

More information

Department of Mathematical and Statistical Sciences University of Alberta

Department of Mathematical and Statistical Sciences University of Alberta MATH 214 (R1) Winter 2008 Intermediate Calculus I Solutions to Problem Set #8 Completion Date: Friday March 14, 2008 Department of Mathematical and Statistical Sciences University of Alberta Question 1.

More information

Physics 235 Chapter 4. Chapter 4 Non-Linear Oscillations and Chaos

Physics 235 Chapter 4. Chapter 4 Non-Linear Oscillations and Chaos Chapter 4 Non-Linear Oscillations and Chaos Non-Linear Differential Equations Up to now we have considered differential equations with terms that are proportional to the acceleration, the velocity, and

More information

Power, Taylor, & Maclaurin Series Page 1

Power, Taylor, & Maclaurin Series Page 1 Power, Taylor, & Maclaurin Series Page 1 Directions: Solve the following problems using the available space for scratchwork. Indicate your answers on the front page. Do not spend too much time on any one

More information

MATH 150 Pre-Calculus

MATH 150 Pre-Calculus MATH 150 Pre-Calculus Fall, 2014, WEEK 3 JoungDong Kim Week 3: 2B, 3A Chapter 2B. Solving Inequalities a < b a is less than b a b a is less than or equal to b a > b a is greater than b a b a is greater

More information

Notes Chapter 5 Systems of Linear Equations. Section Number and Topic 5.1 Solve Systems by Graphing

Notes Chapter 5 Systems of Linear Equations. Section Number and Topic 5.1 Solve Systems by Graphing Notes Chapter 5 Systems of Linear Equations Section Number and Topic 5.1 Solve Systems by Graphing Standards REI.3.6 REI.4.11 CED.1.2 MAFS.912.N-Q.1.2 MAFS. 912.A- SSE.1.1 MAFS. 912.A- CED.1.2 CED.1.3

More information

Maximums and Minimums of Functions of Two Variables

Maximums and Minimums of Functions of Two Variables Maximums and Minimums of Functions of Two Variables Introduction and Goals: The goal of this lab is to become familiar with the Maple commands necessary to find maxima and minima of surfaces over a region.

More information

259 Lecture 27: Numerical Computation

259 Lecture 27: Numerical Computation 259 Lecture 27: Numerical Computation Note: To type a command in a Mathematica notebook, use the mouse to move the cursor until it is horizontal, click the left mouse button, and type the command. To enter

More information

MATH Final Review

MATH Final Review MATH 1592 - Final Review 1 Chapter 7 1.1 Main Topics 1. Integration techniques: Fitting integrands to basic rules on page 485. Integration by parts, Theorem 7.1 on page 488. Guidelines for trigonometric

More information

MAT137 Calculus! Lecture 48

MAT137 Calculus! Lecture 48 official website http://uoft.me/mat137 MAT137 Calculus! Lecture 48 Today: Taylor Series Applications Next: Final Exams Important Taylor Series and their Radii of Convergence 1 1 x = e x = n=0 n=0 x n n!

More information

Introduction to Mathematica

Introduction to Mathematica Introduction to Mathematica Seth F. Oppenheimer The purpose of this handout is to familiarize you with Mathematica. The Mathematics and Statistics Department computer lab is on the fourth floor of Allen

More information

16.2 Line Integrals. location should be approximately 0 01 V(2 1) = 0 01 h4 3i = h i, so the particle should be approximately at the

16.2 Line Integrals. location should be approximately 0 01 V(2 1) = 0 01 h4 3i = h i, so the particle should be approximately at the SECTION 6. LINE INTEGRALS 35 9. ( ) = + ( ) =i +j. Thus, each vector ( ) has the same direction and twice the length of the position vector of the point ( ), so the vectors all point directly away from

More information

MSE 310/ECE 340. Instructor: Bill Knowlton. Initialize data Clear somedata, someplot. Place data in list somedata

MSE 310/ECE 340. Instructor: Bill Knowlton. Initialize data Clear somedata, someplot. Place data in list somedata MSE 3/ECE 340 Instructor: Bill Knowlton Examples of Plotting Functions ü Example 1: Using the command ListPlot[ ] to plot data in a scatter plot In[1]:= Initialize data Clear somedata someplot Place data

More information

HW - Chapter 10 - Parametric Equations and Polar Coordinates

HW - Chapter 10 - Parametric Equations and Polar Coordinates Berkeley City College Due: HW - Chapter 0 - Parametric Equations and Polar Coordinates Name Parametric equations and a parameter interval for the motion of a particle in the xy-plane are given. Identify

More information

Physicist's Introduction to Mathematica

Physicist's Introduction to Mathematica Physicist's Introduction to Mathematica Physics 200 Physics 50 Lab Revised for V6.0 Fall Semester 2000 Spring Semester 2006 Summer 2007 Nicholas Wheeler John Boccio John Boccio REED COLLEGE Swarthmore

More information

Mathematical Modeling Project in Mathematica Cynthia Wenz MA 354

Mathematical Modeling Project in Mathematica Cynthia Wenz MA 354 clw.ma 1 Mathematical Modeling Project in Mathematica Cynthia Wenz MA 354 Introduction and Problem Statement When a parachute jump is made from an airplane, the first part of the descent is made in free

More information

Review session Midterm 1

Review session Midterm 1 AS.110.109: Calculus II (Eng) Review session Midterm 1 Yi Wang, Johns Hopkins University Fall 2018 7.1: Integration by parts Basic integration method: u-sub, integration table Integration By Parts formula

More information

Notes on Radian Measure

Notes on Radian Measure MAT 170 Pre-Calculus Notes on Radian Measure Radian Angles Terri L. Miller Spring 009 revised April 17, 009 1. Radian Measure Recall that a unit circle is the circle centered at the origin with a radius

More information

This practice exam is intended to help you prepare for the final exam for MTH 142 Calculus II.

This practice exam is intended to help you prepare for the final exam for MTH 142 Calculus II. MTH 142 Practice Exam Chapters 9-11 Calculus II With Analytic Geometry Fall 2011 - University of Rhode Island This practice exam is intended to help you prepare for the final exam for MTH 142 Calculus

More information

A Mathematica Companion for Differential Equations

A Mathematica Companion for Differential Equations iii A Mathematica Companion for Differential Equations Selwyn Hollis PRENTICE HALL, Upper Saddle River, NJ 07458 iv v Contents Preface viii 0. An Introduction to Mathematica 0.1 Getting Started 1 0.2 Functions

More information

Chapter 9: Systems of Equations and Inequalities

Chapter 9: Systems of Equations and Inequalities Chapter 9: Systems of Equations and Inequalities 9. Systems of Equations Solve the system of equations below. By this we mean, find pair(s) of numbers (x, y) (if possible) that satisfy both equations.

More information

Saxon Calculus Scope and Sequence

Saxon Calculus Scope and Sequence hmhco.com Saxon Calculus Scope and Sequence Foundations Real Numbers Identify the subsets of the real numbers Identify the order properties of the real numbers Identify the properties of the real number

More information

Phase Portraits of Nonlinear Differential Equations

Phase Portraits of Nonlinear Differential Equations ODE4-net.nb Phase Portraits of Nonlinear Differential Equations Nonlinear Differential Equations: x' = f (x, y) (1) Consider the system where f and g are functions of two y' = g(x, y) () variables x and

More information

Quantum Mechanics using Matrix Methods

Quantum Mechanics using Matrix Methods Quantum Mechanics using Matrix Methods Introduction and the simple harmonic oscillator In this notebook we study some problems in quantum mechanics using matrix methods. We know that we can solve quantum

More information

Showing the shooting method in detail for n = 0

Showing the shooting method in detail for n = 0 11.2.7 Finding Eigenvalues by the Shooting Method The shooting method is a means to compute eigenvalues of a boundary problem defined by a onedimensional differential equation and boundary conditions fixed

More information

5.1 Second order linear differential equations, and vector space theory connections.

5.1 Second order linear differential equations, and vector space theory connections. Math 2250-004 Wed Mar 1 5.1 Second order linear differential equations, and vector space theory connections. Definition: A vector space is a collection of objects together with and "addition" operation

More information

It s Your Turn Problems I. Functions, Graphs, and Limits 1. Here s the graph of the function f on the interval [ 4,4]

It s Your Turn Problems I. Functions, Graphs, and Limits 1. Here s the graph of the function f on the interval [ 4,4] It s Your Turn Problems I. Functions, Graphs, and Limits. Here s the graph of the function f on the interval [ 4,4] f ( ) =.. It has a vertical asymptote at =, a) What are the critical numbers of f? b)

More information

Math 308 Week 8 Solutions

Math 308 Week 8 Solutions Math 38 Week 8 Solutions There is a solution manual to Chapter 4 online: www.pearsoncustom.com/tamu math/. This online solutions manual contains solutions to some of the suggested problems. Here are solutions

More information

Class 4: More Pendulum results

Class 4: More Pendulum results Class 4: More Pendulum results The pendulum is a mechanical problem with a long and interesting history, from Galileo s first ansatz that the period was independent of the amplitude based on watching priests

More information

MATH Max-min Theory Fall 2016

MATH Max-min Theory Fall 2016 MATH 20550 Max-min Theory Fall 2016 1. Definitions and main theorems Max-min theory starts with a function f of a vector variable x and a subset D of the domain of f. So far when we have worked with functions

More information

MA 162 FINAL EXAM PRACTICE PROBLEMS Spring Find the angle between the vectors v = 2i + 2j + k and w = 2i + 2j k. C.

MA 162 FINAL EXAM PRACTICE PROBLEMS Spring Find the angle between the vectors v = 2i + 2j + k and w = 2i + 2j k. C. MA 6 FINAL EXAM PRACTICE PROBLEMS Spring. Find the angle between the vectors v = i + j + k and w = i + j k. cos 8 cos 5 cos D. cos 7 E. cos. Find a such that u = i j + ak and v = i + j + k are perpendicular.

More information

374: Solving Homogeneous Linear Differential Equations with Constant Coefficients

374: Solving Homogeneous Linear Differential Equations with Constant Coefficients 374: Solving Homogeneous Linear Differential Equations with Constant Coefficients Enter this Clear command to make sure all variables we may use are cleared out of memory. In[1]:= Clearx, y, c1, c2, c3,

More information

TEACHER NOTES FOR YEAR 12 SPECIALIST MATHEMATICS

TEACHER NOTES FOR YEAR 12 SPECIALIST MATHEMATICS TEACHER NOTES FOR YEAR 12 SPECIALIST MATHEMATICS 21 November 2016 CHAPTER 1: MATHEMATICAL INDUCTION A The process of induction Topic 1 B The principle of mathematical Sub-topic 1.1 induction Induction

More information

Lesson 09 Methods of integrating ordinary differential equations

Lesson 09 Methods of integrating ordinary differential equations Lesson 09 Methods of integrating ordinary differential equations Suppose we do not have the commands from Mathematica, what can we do? http://numericalmethods.eng.usf.edu/ Euler s Method Euler s method

More information

Trigonometry Self-study: Reading: Red Bostock and Chandler p , p , p

Trigonometry Self-study: Reading: Red Bostock and Chandler p , p , p Trigonometry Self-study: Reading: Red Bostock Chler p137-151, p157-234, p244-254 Trigonometric functions be familiar with the six trigonometric functions, i.e. sine, cosine, tangent, cosecant, secant,

More information

BROWN UNIVERSITY MATH 0350 MIDTERM 19 OCTOBER 2017 INSTRUCTOR: SAMUEL S. WATSON

BROWN UNIVERSITY MATH 0350 MIDTERM 19 OCTOBER 2017 INSTRUCTOR: SAMUEL S. WATSON BROWN UNIVERSITY MATH 0350 MIDTERM 19 OCTOBER 2017 INSTRUCTOR: SAMUEL S. WATSON Name: Problem 1 In this problem, we will use vectors to show that an angle formed by connecting a point on a circle to two

More information

Detailed objectives are given in each of the sections listed below. 1. Cartesian Space Coordinates. 2. Displacements, Forces, Velocities and Vectors

Detailed objectives are given in each of the sections listed below. 1. Cartesian Space Coordinates. 2. Displacements, Forces, Velocities and Vectors Unit 1 Vectors In this unit, we introduce vectors, vector operations, and equations of lines and planes. Note: Unit 1 is based on Chapter 12 of the textbook, Salas and Hille s Calculus: Several Variables,

More information

5.2 LENGTHS OF CURVES & AREAS OF SURFACES OF REVOLUTION

5.2 LENGTHS OF CURVES & AREAS OF SURFACES OF REVOLUTION 5.2 Arc Length & Surface Area Contemporary Calculus 1 5.2 LENGTHS OF CURVES & AREAS OF SURFACES OF REVOLUTION This section introduces two additional geometric applications of integration: finding the length

More information

Chapter 2. Coulomb s Law

Chapter 2. Coulomb s Law Chapter. Coulomb s Law PHY 4, Fall 7 Coulomb' s Law for point charges. Coulomb' s Law, coordinate-free Coulomb s Law is usuall stated first without reference to coordinate sstem: The force (vector) on

More information

Lectures in Differential Equations

Lectures in Differential Equations Lectures in Differential Equations David M. McClendon Department of Mathematics Ferris State University last revised December 2016 1 Contents Contents 2 1 First-order linear equations 4 1.1 What is a differential

More information

A Summary of Contour Integration

A Summary of Contour Integration A Summary of Contour Integration vs 0., 5//08 ' Niels Walet, University of Manchester In this document I will summarise some very simple results of contour integration. The Basics The key word linked to

More information

Harbor Creek School District

Harbor Creek School District Unit 1 Days 1-9 Evaluate one-sided two-sided limits, given the graph of a function. Limits, Evaluate limits using tables calculators. Continuity Evaluate limits using direct substitution. Differentiability

More information

FINAL EXAM CALCULUS 2. Name PRACTICE EXAM

FINAL EXAM CALCULUS 2. Name PRACTICE EXAM FINAL EXAM CALCULUS 2 MATH 2300 FALL 208 Name PRACTICE EXAM Please answer all of the questions, and show your work. You must explain your answers to get credit. You will be graded on the clarity of your

More information

Precalculus. Precalculus Higher Mathematics Courses 85

Precalculus. Precalculus Higher Mathematics Courses 85 Precalculus Precalculus combines the trigonometric, geometric, and algebraic techniques needed to prepare students for the study of calculus, and strengthens students conceptual understanding of problems

More information

COMPUTATIONAL EXPLORATIONS IN MAGNETRON SPUTTERING

COMPUTATIONAL EXPLORATIONS IN MAGNETRON SPUTTERING COMPUTATIONAL EXPLORATIONS IN MAGNETRON SPUTTERING E. J. McInerney Basic Numerics Press 4. ELECTRON MOTION With the groundwork laid in the last two chapters, we can now simulate the motion of electrons

More information

AP CALCULUS B/C GRADE 12. THE EWING PUBLIC SCHOOLS 1331 Lower Ferry Road Ewing, NJ Angelina Aiello

AP CALCULUS B/C GRADE 12. THE EWING PUBLIC SCHOOLS 1331 Lower Ferry Road Ewing, NJ Angelina Aiello AP CALCULUS B/C GRADE 12 THE EWING PUBLIC SCHOOLS 1331 Lower Ferry Road Ewing, NJ 08618 BOE Approval Date: 3/26/07 Written by: Don Wahlers Angelina Aiello Raymond Broach Superintendent Section 7.4 Lengths

More information

12.1 Taylor Polynomials In Two-Dimensions: Nonlinear Approximations of F(x,y) Polynomials in Two-Variables. Taylor Polynomials and Approximations.

12.1 Taylor Polynomials In Two-Dimensions: Nonlinear Approximations of F(x,y) Polynomials in Two-Variables. Taylor Polynomials and Approximations. Week 12 Lecture Overheads Math2080 Week 12 Page 1 12.1 Taylor Polynomials In Two-Dimensions: Nonlinear Approximations of F(x,y) Polynomials in Two-Variables. Taylor Polynomials and Approximations. 12.2

More information

y = x 3 and y = 2x 2 x. 2x 2 x = x 3 x 3 2x 2 + x = 0 x(x 2 2x + 1) = 0 x(x 1) 2 = 0 x = 0 and x = (x 3 (2x 2 x)) dx

y = x 3 and y = 2x 2 x. 2x 2 x = x 3 x 3 2x 2 + x = 0 x(x 2 2x + 1) = 0 x(x 1) 2 = 0 x = 0 and x = (x 3 (2x 2 x)) dx Millersville University Name Answer Key Mathematics Department MATH 2, Calculus II, Final Examination May 4, 2, 8:AM-:AM Please answer the following questions. Your answers will be evaluated on their correctness,

More information

chapter 12 MORE MATRIX ALGEBRA 12.1 Systems of Linear Equations GOALS

chapter 12 MORE MATRIX ALGEBRA 12.1 Systems of Linear Equations GOALS chapter MORE MATRIX ALGEBRA GOALS In Chapter we studied matrix operations and the algebra of sets and logic. We also made note of the strong resemblance of matrix algebra to elementary algebra. The reader

More information

Vector Calculus. Lecture Notes

Vector Calculus. Lecture Notes Vector Calculus Lecture Notes Adolfo J. Rumbos c Draft date November 23, 211 2 Contents 1 Motivation for the course 5 2 Euclidean Space 7 2.1 Definition of n Dimensional Euclidean Space........... 7 2.2

More information

Power Series. x n. Using the ratio test. n n + 1. x n+1 n 3. = lim x. lim n + 1. = 1 < x < 1. Then r = 1 and I = ( 1, 1) ( 1) n 1 x n.

Power Series. x n. Using the ratio test. n n + 1. x n+1 n 3. = lim x. lim n + 1. = 1 < x < 1. Then r = 1 and I = ( 1, 1) ( 1) n 1 x n. .8 Power Series. n x n x n n Using the ratio test. lim x n+ n n + lim x n n + so r and I (, ). By the ratio test. n Then r and I (, ). n x < ( ) n x n < x < n lim x n+ n (n + ) x n lim xn n (n + ) x

More information

Topic 1: Fractional and Negative Exponents x x Topic 2: Domain. 2x 9 2x y x 2 5x y logg 2x 12

Topic 1: Fractional and Negative Exponents x x Topic 2: Domain. 2x 9 2x y x 2 5x y logg 2x 12 AP Calculus BC Summer Packet Name INSTRUCTIONS: Where applicable, put your solutions in interval notation. Do not use any calculator (ecept on Topics 5:#5 & :#6). Please do all work on separate paper and

More information

AP Calculus Testbank (Chapter 9) (Mr. Surowski)

AP Calculus Testbank (Chapter 9) (Mr. Surowski) AP Calculus Testbank (Chapter 9) (Mr. Surowski) Part I. Multiple-Choice Questions n 1 1. The series will converge, provided that n 1+p + n + 1 (A) p > 1 (B) p > 2 (C) p >.5 (D) p 0 2. The series

More information

Two parallel line charges with ± Charge.

Two parallel line charges with ± Charge. Two parallel line charges with ± Charge. PROBLEM: Consider two infinitely long line charges parallel to each other and the z axis, passing through the x-y plane at Points { a,0,0} and {+a,0,0} (e.g., separated

More information

CALCULUS 3 DR JASON SAMUELS LECTURE NOTES Table of Contents: 4 Sequences and Series 4 Sequences 8 Series 8 Intro 9 Tests for Convergence 9 n-th term

CALCULUS 3 DR JASON SAMUELS LECTURE NOTES Table of Contents: 4 Sequences and Series 4 Sequences 8 Series 8 Intro 9 Tests for Convergence 9 n-th term 1 CALCULUS 3 DR JASON SAMUELS LECTURE NOTES Table of Contents: 4 Sequences and Series 4 Sequences 8 Series 8 Intro 9 Tests for Convergence 9 n-th term test 10 Integral test 12 Direct Comparison test (DCT)

More information

Vectors, Lists, Matrices. A z. O A y. A x. Vectors and Lists

Vectors, Lists, Matrices. A z. O A y. A x. Vectors and Lists Vectors, Lists, Matrices Vectors and Lists Physical definition of vector is an arrow having length and direction. Many physical quantities are vectors, such as position r, velocity v, angular momentum

More information

Math 113 Final Exam Practice

Math 113 Final Exam Practice Math Final Exam Practice The Final Exam is comprehensive. You should refer to prior reviews when studying material in chapters 6, 7, 8, and.-9. This review will cover.0- and chapter 0. This sheet has three

More information

Created by T. Madas LINE INTEGRALS. Created by T. Madas

Created by T. Madas LINE INTEGRALS. Created by T. Madas LINE INTEGRALS LINE INTEGRALS IN 2 DIMENSIONAL CARTESIAN COORDINATES Question 1 Evaluate the integral ( x + 2y) dx, C where C is the path along the curve with equation y 2 = x + 1, from ( ) 0,1 to ( )

More information

Calculus II Study Guide Fall 2015 Instructor: Barry McQuarrie Page 1 of 8

Calculus II Study Guide Fall 2015 Instructor: Barry McQuarrie Page 1 of 8 Calculus II Study Guide Fall 205 Instructor: Barry McQuarrie Page of 8 You should be expanding this study guide as you see fit with details and worked examples. With this extra layer of detail you will

More information

Inner Product Spaces 6.1 Length and Dot Product in R n

Inner Product Spaces 6.1 Length and Dot Product in R n Inner Product Spaces 6.1 Length and Dot Product in R n Summer 2017 Goals We imitate the concept of length and angle between two vectors in R 2, R 3 to define the same in the n space R n. Main topics are:

More information

Math 144 Activity #7 Trigonometric Identities

Math 144 Activity #7 Trigonometric Identities 144 p 1 Math 144 Activity #7 Trigonometric Identities What is a trigonometric identity? Trigonometric identities are equalities that involve trigonometric functions that are true for every single value

More information

Math 107 Fall 2007 Course Update and Cumulative Homework List

Math 107 Fall 2007 Course Update and Cumulative Homework List Math 107 Fall 2007 Course Update and Cumulative Homework List Date: 8/27 Sections: 5.4 Log: Review of course policies. The mean value theorem for definite integrals. The fundamental theorem of calculus,

More information

Exam 3. MA 114 Exam 3 Fall Multiple Choice Questions. 1. Find the average value of the function f (x) = 2 sin x sin 2x on 0 x π. C. 0 D. 4 E.

Exam 3. MA 114 Exam 3 Fall Multiple Choice Questions. 1. Find the average value of the function f (x) = 2 sin x sin 2x on 0 x π. C. 0 D. 4 E. Exam 3 Multiple Choice Questions 1. Find the average value of the function f (x) = sin x sin x on x π. A. π 5 π C. E. 5. Find the volume of the solid S whose base is the disk bounded by the circle x +

More information

1. Taylor Polynomials of Degree 1: Linear Approximation. Reread Example 1.

1. Taylor Polynomials of Degree 1: Linear Approximation. Reread Example 1. Math 114, Taylor Polynomials (Section 10.1) Name: Section: Read Section 10.1, focusing on pages 58-59. Take notes in your notebook, making sure to include words and phrases in italics and formulas in blue

More information

Math 181, Exam 2, Study Guide 2 Problem 1 Solution. 1 + dx. 1 + (cos x)2 dx. 1 + cos2 xdx. = π ( 1 + cos π 2

Math 181, Exam 2, Study Guide 2 Problem 1 Solution. 1 + dx. 1 + (cos x)2 dx. 1 + cos2 xdx. = π ( 1 + cos π 2 Math 8, Exam, Study Guide Problem Solution. Use the trapezoid rule with n to estimate the arc-length of the curve y sin x between x and x π. Solution: The arclength is: L b a π π + ( ) dy + (cos x) + cos

More information

8.2 APPLICATIONS TO GEOMETRY

8.2 APPLICATIONS TO GEOMETRY 8.2 APPLICATIONS TO GEOMETRY In Section 8.1, we calculated volumes using slicing and definite integrals. In this section, we use the same method to calculate the volumes of more complicated regions as

More information

Method of Solution by Separation

Method of Solution by Separation Method of Solution by Separation Example of Solution by Separation () Solve the initial value problem y @td = -------- + y 3 t By inspection, we can see that the differential equation is separable. t=

More information