Section 1.3 Integration

Size: px
Start display at page:

Download "Section 1.3 Integration"

Transcription

1 Section 1.3 Integration Key terms: Integral Constant of integration Fundamental theorem of calculus First order DE One parameter family of solutions General solution Initial value problem Particular solution Motion of a ball

2 Integrations play an important role in determining a closed form (a formula) for the solution of first order DEs. What is the integral? There are several ways to answer. 1. Area under the graph of a function. The definite integral b f(x)dx is interpreted a as the area under the graph of the function f between x = a and x = b. It represents the area of the shaded region in 2. The antiderivative. This answer emphasizes the indefinite integral. If the function g is continuous, then The C refers to the arbitrary constant of integration. Thus the process of indefinite integration involves finding antiderivatives. Given a function g, we want to find a function f such that f ꞌ = g.

3 The connection between area and antiderivative is the Fundamental Theorem of Calculus. This says that if f ꞌ = g, then 3. Tables of integration formulas. Using such tables is handy, but it does not lead to any deep understanding of the integral. In our course it is finding antiderivatives and using tables (when needed) that is most important.

4 Solution of DEs by Integration. The solution of an important class of differential equations amounts to finding antiderivatives. A first-order differential equation can be written as y' = f(t,y) where the right-hand side is a function of the independent variable t and the unknown function y. Suppose that the right-hand side is a function only of t and does not depend on y. Then equation the previous equation becomes y' = f(t) In this case we see immediately that the solution is y(t) = f(t)dt

5 Example: Solve the DE y ꞌ = 2t. The solution is y(t) = t 2 + C. Graph several solution for different values of C MATLAB code: C =[-2:1:2]; t=[-2:0.01:2]; y=t.^2;figure, for jj=1:length(c), yy=y+c(jj);plot(t,yy),hold on, end,hold off, addaxes t 2 + C Not distributed with MATLAB C = C = 1 We say y(t) = t 2 + C is a one parameter family of solutions. They are defined on (-, ). WHY? C = 0 C = -1 This an example of a general solution. These curves are vertical translates of one another. -1 C = This is always the case for solution curves of a DE of the form y ꞌ = f (t).

6 The constant of integration allows us to put an extra condition on a solution. This is illustrated in the next example. Example: Find the solution of yꞌ(t) = tsin(t) that satisfies y(π/2) = 3. This is an example of an initial value problem (IVP). It requires a particular solution that satisfies the initial condition y(π/2) = 3. The general solution is given by y(t) = t sin(t) dt = sin(t) - t cos(t) + C So we have a one parameter family of solutions. These are defined for all t in (-, ). The initial condition y(π/2) = 3 is used to find a particular value of C. Use integration by parts or a table of integrals. y(π/2) = sin(π/2) - π/2cos(π/2) + C= 1 + C = 3, so C = 2 So the particular solution of the IVP is y(t) =sin(t) + tcos(t) + 2.

7 Solution of the IVP y(t) = sin(t) - t cos(t) + C Point (pi/2, 3) MATLAB code: C =[-1:1:3];t=[-pi:0.01:pi]; y=sin(t) - t.*cos(t); figure, for jj=1:length(c), yy=y+c(jj);plot(t,yy), hold on,end,hold off C = -1 The particular solution curve passes through the point (π/2, 3) Warning: the domain of the solution will not always be (-, ). Example: Solve IVP y ꞌ = 1/x, y(1) = 4. the general solution is y(x) = ln( x ) + C. To satisfy the initial condition the point (1, 4) must lie on the solution curve. Since y(x) is not defined at x = 0 either x < 0 or x > 0. Because of the initial condition x > 0. A bit of work shows C = 4 so the solution of the IVP is y(x) = ln(x) + 4, with x > 0.

8 Example: Motion of a ball. Previously we showed the DE is where x(t) is the height of the ball above the surface of the earth and g is the acceleration due to gravity. If we measure x in feet and time in seconds, g = 32 ft/s 2. Suppose a ball is thrown into the air with initial velocity v 0 = 20 ft/s. Assuming the ball is thrown from a height of x 0 = 6 feet, how long does it take for the ball to hit the ground? First we introduce the velocity to reduce the second-order equation to a system of two first-order equations: Solving the second equation by integration, we get Evaluating this at t = 0, we see that the constant of integration is C 1 = v(0) = v 0 = 20, the initial velocity. Hence, the velocity is v(t) = gt + v 0 = 32t + 20, and the first DE becomes Solving by integration, we get Once more we evaluate this at t = 0 using that C 2 = x(0) = x 0 = 6, the initial elevation of the ball. Hence, our final solution is Set x(t) = 0 and solve for t to find that t = 1.5 sec.

Antiderivatives and Indefinite Integrals

Antiderivatives and Indefinite Integrals Antiderivatives and Indefinite Integrals MATH 151 Calculus for Management J. Robert Buchanan Department of Mathematics Fall 2018 Objectives After completing this lesson we will be able to use the definition

More information

Please read for extra test points: Thanks for reviewing the notes you are indeed a true scholar!

Please read for extra test points: Thanks for reviewing the notes you are indeed a true scholar! Please read for extra test points: Thanks for reviewing the notes you are indeed a true scholar! See me any time B4 school tomorrow and mention to me that you have reviewed your integration notes and you

More information

Math 106 Answers to Exam 3a Fall 2015

Math 106 Answers to Exam 3a Fall 2015 Math 6 Answers to Exam 3a Fall 5.. Consider the curve given parametrically by x(t) = cos(t), y(t) = (t 3 ) 3, for t from π to π. (a) (6 points) Find all the points (x, y) where the graph has either a vertical

More information

Name Class. (a) (b) (c) 4 t4 3 C

Name Class. (a) (b) (c) 4 t4 3 C Chapter 4 Test Bank 77 Test Form A Chapter 4 Name Class Date Section. Evaluate the integral: t dt. t C (a) (b) 4 t4 C t C C t. Evaluate the integral: 5 sec x tan x dx. (a) 5 sec x tan x C (b) 5 sec x C

More information

Fall 2016 Math 2B Suggested Homework Problems Solutions

Fall 2016 Math 2B Suggested Homework Problems Solutions Fall 016 Math B Suggested Homework Problems Solutions Antiderivatives Exercise : For all x ], + [, the most general antiderivative of f is given by : ( x ( x F(x = + x + C = 1 x x + x + C. Exercise 4 :

More information

APPLICATIONS OF DIFFERENTIATION

APPLICATIONS OF DIFFERENTIATION 4 APPLICATIONS OF DIFFERENTIATION APPLICATIONS OF DIFFERENTIATION 4.9 Antiderivatives In this section, we will learn about: Antiderivatives and how they are useful in solving certain scientific problems.

More information

Antiderivatives. Definition A function, F, is said to be an antiderivative of a function, f, on an interval, I, if. F x f x for all x I.

Antiderivatives. Definition A function, F, is said to be an antiderivative of a function, f, on an interval, I, if. F x f x for all x I. Antiderivatives Definition A function, F, is said to be an antiderivative of a function, f, on an interval, I, if F x f x for all x I. Theorem If F is an antiderivative of f on I, then every function of

More information

Particle Motion. Typically, if a particle is moving along the x-axis at any time, t, x()

Particle Motion. Typically, if a particle is moving along the x-axis at any time, t, x() Typically, if a particle is moving along the x-axis at any time, t, x() t represents the position of the particle; along the y-axis, yt () is often used; along another straight line, st () is often used.

More information

2.12: Derivatives of Exp/Log (cont d) and 2.15: Antiderivatives and Initial Value Problems

2.12: Derivatives of Exp/Log (cont d) and 2.15: Antiderivatives and Initial Value Problems 2.12: Derivatives of Exp/Log (cont d) and 2.15: Antiderivatives and Initial Value Problems Mathematics 3 Lecture 14 Dartmouth College February 03, 2010 Derivatives of the Exponential and Logarithmic Functions

More information

Multiple Choice Solutions 1. E (2003 AB25) () xt t t t 2. A (2008 AB21/BC21) 3. B (2008 AB7) Using Fundamental Theorem of Calculus: 1

Multiple Choice Solutions 1. E (2003 AB25) () xt t t t 2. A (2008 AB21/BC21) 3. B (2008 AB7) Using Fundamental Theorem of Calculus: 1 Solutions We have intentionally included more material than can be covered in most Student Study Sessions to account for groups that are able to answer the questions at a faster rate. Use your own judgment,

More information

Session 3. Question Answers

Session 3. Question Answers Session 3 Question Answers Question 1 Enter the example code and test the program. Try changing the step size 0.01 and see if you get a better results. The code for the example %Using Euler's method to

More information

The acceleration of gravity is constant (near the surface of the earth). So, for falling objects:

The acceleration of gravity is constant (near the surface of the earth). So, for falling objects: 1. Become familiar with a definition of and terminology involved with differential equations Calculus - Santowski. Solve differential equations with and without initial conditions 3. Apply differential

More information

1 Antiderivatives graphically and numerically

1 Antiderivatives graphically and numerically Math B - Calculus by Hughes-Hallett, et al. Chapter 6 - Constructing antiderivatives Prepared by Jason Gaddis Antiderivatives graphically and numerically Definition.. The antiderivative of a function f

More information

Lecture Notes in Mathematics. Arkansas Tech University Department of Mathematics

Lecture Notes in Mathematics. Arkansas Tech University Department of Mathematics Lecture Notes in Mathematics Arkansas Tech University Department of Mathematics Introductory Notes in Ordinary Differential Equations for Physical Sciences and Engineering Marcel B. Finan c All Rights

More information

Particle Motion. Typically, if a particle is moving along the x-axis at any time, t, x()

Particle Motion. Typically, if a particle is moving along the x-axis at any time, t, x() Typically, if a particle is moving along the x-axis at any time, t, x() t represents the position of the particle; along the y-axis, yt () is often used; along another straight line, st () is often used.

More information

AP Calculus AB Unit 6 Packet Antiderivatives. Antiderivatives

AP Calculus AB Unit 6 Packet Antiderivatives. Antiderivatives Antiderivatives Name In mathematics, we use the inverse operation to undo a process. Let s imagine undoing following everyday processes. Process Locking your car Going to sleep Taking out your calculator

More information

AB CALCULUS SEMESTER A REVIEW Show all work on separate paper. (b) lim. lim. (f) x a. for each of the following functions: (b) y = 3x 4 x + 2

AB CALCULUS SEMESTER A REVIEW Show all work on separate paper. (b) lim. lim. (f) x a. for each of the following functions: (b) y = 3x 4 x + 2 AB CALCULUS Page 1 of 6 NAME DATE 1. Evaluate each it: AB CALCULUS Show all work on separate paper. x 3 x 9 x 5x + 6 x 0 5x 3sin x x 7 x 3 x 3 5x (d) 5x 3 x +1 x x 4 (e) x x 9 3x 4 6x (f) h 0 sin( π 6

More information

Mean Value Theorem. is continuous at every point of the closed interval,

Mean Value Theorem. is continuous at every point of the closed interval, Mean Value Theorem The Mean Value Theorem connects the average rate of change (slope of the secant between two points [a and b]) with the instantaneous rate of change (slope of tangent at some point c).

More information

AdvAlg6.4GraphingQuadratics.notebook. March 07, Newton s Formula h(t) = 1 gt 2 + v o t + h o 2. time. initial upward velocity

AdvAlg6.4GraphingQuadratics.notebook. March 07, Newton s Formula h(t) = 1 gt 2 + v o t + h o 2. time. initial upward velocity Notes Lesson 6 4 Applications of Quadratic Functions Newton s Formula h(t) = 1 gt 2 + v o t + h o 2 Height of object time Constant (accel. due to gravity) *32 ft/sec 2 *9.8 m/sec 2 **MEMORIZE THESE** initial

More information

Section 2.4 Linear Equations

Section 2.4 Linear Equations Section 2.4 Linear Equations Key Terms: Linear equation Homogeneous linear equation Nonhomogeneous (inhomogeneous) linear equation Integrating factor General solution Variation of parameters A first-order

More information

Antiderivatives. DEFINITION: A function F is called an antiderivative of f on an (open) interval I if F (x) = f(x) for all x in I EXAMPLES:

Antiderivatives. DEFINITION: A function F is called an antiderivative of f on an (open) interval I if F (x) = f(x) for all x in I EXAMPLES: Antiderivatives 00 Kiryl Tsishchanka DEFINITION: A function F is called an antiderivative of f on an (open) interval I if F (x) = f(x) for all x in I EXAMPLES:. If f(x) = x, then F(x) = 3 x3, since ( )

More information

Distance And Velocity

Distance And Velocity Unit #8 - The Integral Some problems and solutions selected or adapted from Hughes-Hallett Calculus. Distance And Velocity. The graph below shows the velocity, v, of an object (in meters/sec). Estimate

More information

Arkansas Council of Teachers of Mathematics 2013 State Contest Calculus Exam

Arkansas Council of Teachers of Mathematics 2013 State Contest Calculus Exam 0 State Contest Calculus Eam In each of the following choose the BEST answer and shade the corresponding letter on the Scantron Sheet. Answer all multiple choice questions before attempting the tie-breaker

More information

APPLICATIONS OF DERIVATIVES UNIT PROBLEM SETS

APPLICATIONS OF DERIVATIVES UNIT PROBLEM SETS APPLICATIONS OF DERIVATIVES UNIT PROBLEM SETS PROBLEM SET #1 Related Rates ***Calculators Allowed*** 1. An oil tanker spills oil that spreads in a circular pattern whose radius increases at the rate of

More information

First Order ODEs (cont). Modeling with First Order ODEs

First Order ODEs (cont). Modeling with First Order ODEs First Order ODEs (cont). Modeling with First Order ODEs September 11 15, 2017 Bernoulli s ODEs Yuliya Gorb Definition A first order ODE is called a Bernoulli s equation iff it is written in the form y

More information

MTH 252 Lab Supplement

MTH 252 Lab Supplement Fall 7 Pilot MTH 5 Lab Supplement Supplemental Material by Austina Fong Contents Antiderivatives... Trigonometric Substitution... Approimate Integrals Technology Lab (Optional)... 4 Error Bound Formulas...

More information

Integration. Antiderivatives and Indefinite Integration 3/9/2015. Copyright Cengage Learning. All rights reserved.

Integration. Antiderivatives and Indefinite Integration 3/9/2015. Copyright Cengage Learning. All rights reserved. Integration Copyright Cengage Learning. All rights reserved. Antiderivatives and Indefinite Integration Copyright Cengage Learning. All rights reserved. 1 Objectives Write the general solution of a differential

More information

Chapter 2 Differentiation. 2.1 Tangent Lines and Their Slopes. Calculus: A Complete Course, 8e Chapter 2: Differentiation

Chapter 2 Differentiation. 2.1 Tangent Lines and Their Slopes. Calculus: A Complete Course, 8e Chapter 2: Differentiation Chapter 2 Differentiation 2.1 Tangent Lines and Their Slopes 1) Find the slope of the tangent line to the curve y = 4x x 2 at the point (-1, 0). A) -1 2 C) 6 D) 2 1 E) -2 2) Find the equation of the tangent

More information

Goal: Approximate the area under a curve using the Rectangular Approximation Method (RAM) RECTANGULAR APPROXIMATION METHODS

Goal: Approximate the area under a curve using the Rectangular Approximation Method (RAM) RECTANGULAR APPROXIMATION METHODS AP Calculus 5. Areas and Distances Goal: Approximate the area under a curve using the Rectangular Approximation Method (RAM) Exercise : Calculate the area between the x-axis and the graph of y = 3 2x.

More information

MATH 1271 Monday, 21 November 2018

MATH 1271 Monday, 21 November 2018 MATH 1271 Monday, 21 November 218 Today: Section 5.4 - Indefinite Integrals and the Theorem Homework: 5-17 odd, 21-45 odd, 51-63 odd, 67, 71 1/13 Def Total displacement is the integral of the velocity

More information

Section 7.2 Euler s Method

Section 7.2 Euler s Method Section 7.2 Euler s Method Key terms Scalar first order IVP (one step method) Euler s Method Derivation Error analysis Computational procedure Difference equation Slope field or Direction field Error Euler's

More information

Math 1431 DAY 14. Be considerate of others in class. Respect your friends and do not distract anyone during the lecture.

Math 1431 DAY 14. Be considerate of others in class. Respect your friends and do not distract anyone during the lecture. Math 1431 DAY 14 BUBBLE IN PS ID VERY CAREFULLY! If you make a bubbling mistake, your scantron will not be saved in the system and you will not get credit for it even if you turned it in. Be considerate

More information

The Fundamental Theorem of Calculus: Suppose f continuous on [a, b]. 1.) If G(x) = x. f(t)dt = F (b) F (a) where F is any antiderivative

The Fundamental Theorem of Calculus: Suppose f continuous on [a, b]. 1.) If G(x) = x. f(t)dt = F (b) F (a) where F is any antiderivative 1 Calulus pre-requisites you must know. Derivative = slope of tangent line = rate. Integral = area between curve and x-axis (where area can be negative). The Fundamental Theorem of Calculus: Suppose f

More information

Math 142 (Summer 2018) Business Calculus 6.1 Notes

Math 142 (Summer 2018) Business Calculus 6.1 Notes Math 142 (Summer 2018) Business Calculus 6.1 Notes Antiderivatives Why? So far in the course we have studied derivatives. Differentiation is the process of going from a function f to its derivative f.

More information

3.4 The Chain Rule. F (x) = f (g(x))g (x) Alternate way of thinking about it: If y = f(u) and u = g(x) where both are differentiable functions, then

3.4 The Chain Rule. F (x) = f (g(x))g (x) Alternate way of thinking about it: If y = f(u) and u = g(x) where both are differentiable functions, then 3.4 The Chain Rule To find the derivative of a function that is the composition of two functions for which we already know the derivatives, we can use the Chain Rule. The Chain Rule: Suppose F (x) = f(g(x)).

More information

Math 308 Exam I Practice Problems

Math 308 Exam I Practice Problems Math 308 Exam I Practice Problems This review should not be used as your sole source of preparation for the exam. You should also re-work all examples given in lecture and all suggested homework problems..

More information

Math 1431 DAY 14. Be considerate of others in class. Respect your friends and do not distract anyone during the lecture.

Math 1431 DAY 14. Be considerate of others in class. Respect your friends and do not distract anyone during the lecture. Math 1431 DAY 14 BUBBLE IN PS ID VERY CAREFULLY! If you make a bubbling mistake, your scantron will not be saved in the system and you will not get credit for it even if you turned it in. Be considerate

More information

= π + sin π = π + 0 = π, so the object is moving at a speed of π feet per second after π seconds. (c) How far does it go in π seconds?

= π + sin π = π + 0 = π, so the object is moving at a speed of π feet per second after π seconds. (c) How far does it go in π seconds? Mathematics 115 Professor Alan H. Stein April 18, 005 SOLUTIONS 1. Define what is meant by an antiderivative or indefinite integral of a function f(x). Solution: An antiderivative or indefinite integral

More information

Daily Lessons and Assessments for AP* Calculus AB, A Complete Course Page 584 Mark Sparks 2012

Daily Lessons and Assessments for AP* Calculus AB, A Complete Course Page 584 Mark Sparks 2012 The Second Fundamental Theorem of Calculus Functions Defined by Integrals Given the functions, f(t), below, use F( ) f ( t) dt to find F() and F () in terms of.. f(t) = 4t t. f(t) = cos t Given the functions,

More information

AP Calculus. Particle Motion. Student Handout

AP Calculus. Particle Motion. Student Handout AP Calculus Particle Motion Student Handout 016-017 EDITION Use the following link or scan the QR code to complete the evaluation for the Study Session https://www.surveymonkey.com/r/s_sss Copyright 016

More information

Section 2.1 Differential Equation and Solutions

Section 2.1 Differential Equation and Solutions Section 2.1 Differential Equation and Solutions Key Terms: Ordinary Differential Equation (ODE) Independent Variable Order of a DE Partial Differential Equation (PDE) Normal Form Solution General Solution

More information

Chapter 6: The Definite Integral

Chapter 6: The Definite Integral Name: Date: Period: AP Calc AB Mr. Mellina Chapter 6: The Definite Integral v v Sections: v 6.1 Estimating with Finite Sums v 6.5 Trapezoidal Rule v 6.2 Definite Integrals 6.3 Definite Integrals and Antiderivatives

More information

0, such that. all. for all. 0, there exists. Name: Continuity. Limits and. calculus. the definitionn. satisfying. limit. However, is the limit of its

0, such that. all. for all. 0, there exists. Name: Continuity. Limits and. calculus. the definitionn. satisfying. limit. However, is the limit of its L Marizzaa A Bailey Multivariable andd Vector Calculus Name: Limits and Continuity Limits and Continuity We have previously defined limit in for single variable functions, but how do we generalize this

More information

Later in this chapter, we are going to use vector functions to describe the motion of planets and other objects through space.

Later in this chapter, we are going to use vector functions to describe the motion of planets and other objects through space. 10 VECTOR FUNCTIONS VECTOR FUNCTIONS Later in this chapter, we are going to use vector functions to describe the motion of planets and other objects through space. Here, we prepare the way by developing

More information

Mathematical Models. MATH 365 Ordinary Differential Equations. J. Robert Buchanan. Spring Department of Mathematics

Mathematical Models. MATH 365 Ordinary Differential Equations. J. Robert Buchanan. Spring Department of Mathematics Mathematical Models MATH 365 Ordinary Differential Equations J. Robert Buchanan Department of Mathematics Spring 2018 Ordinary Differential Equations The topic of ordinary differential equations (ODEs)

More information

Mathematical Models. MATH 365 Ordinary Differential Equations. J. Robert Buchanan. Fall Department of Mathematics

Mathematical Models. MATH 365 Ordinary Differential Equations. J. Robert Buchanan. Fall Department of Mathematics Mathematical Models MATH 365 Ordinary Differential Equations J. Robert Buchanan Department of Mathematics Fall 2018 Ordinary Differential Equations The topic of ordinary differential equations (ODEs) is

More information

Questions from Larson Chapter 4 Topics. 5. Evaluate

Questions from Larson Chapter 4 Topics. 5. Evaluate Math. Questions from Larson Chapter 4 Topics I. Antiderivatives. Evaluate the following integrals. (a) x dx (4x 7) dx (x )(x + x ) dx x. A projectile is launched vertically with an initial velocity of

More information

MA 125 CALCULUS I SPRING 2007 April 27, 2007 FINAL EXAM. Name (Print last name first):... Student ID Number (last four digits):...

MA 125 CALCULUS I SPRING 2007 April 27, 2007 FINAL EXAM. Name (Print last name first):... Student ID Number (last four digits):... CALCULUS I, FINAL EXAM 1 MA 125 CALCULUS I SPRING 2007 April 27, 2007 FINAL EXAM Name (Print last name first):............................................. Student ID Number (last four digits):........................

More information

Integration. 5.1 Antiderivatives and Indefinite Integration. Suppose that f(x) = 5x 4. Can we find a function F (x) whose derivative is f(x)?

Integration. 5.1 Antiderivatives and Indefinite Integration. Suppose that f(x) = 5x 4. Can we find a function F (x) whose derivative is f(x)? 5 Integration 5. Antiderivatives and Indefinite Integration Suppose that f() = 5 4. Can we find a function F () whose derivative is f()? Definition. A function F is an antiderivative of f on an interval

More information

2r 2 e rx 5re rx +3e rx = 0. That is,

2r 2 e rx 5re rx +3e rx = 0. That is, Math 4, Exam 1, Solution, Spring 013 Write everything on the blank paper provided. You should KEEP this piece of paper. If possible: turn the problems in order (use as much paper as necessary), use only

More information

AP CALCULUS AB 2007 SCORING GUIDELINES (Form B)

AP CALCULUS AB 2007 SCORING GUIDELINES (Form B) AP CALCULUS AB 27 SCORING GUIDELINES (Form B) Question 2 A particle moves along the x-axis so that its velocity v at time 2 t is given by vt () = sin ( t ). The graph of v is shown above for t 5 π. The

More information

Section 6.5 Impulse Functions

Section 6.5 Impulse Functions Section 6.5 Impulse Functions Key terms/ideas: Unit impulse function (technically a generalized function or distribution ) Dirac delta function Laplace transform of the Dirac delta function IVPs with forcing

More information

HOMEWORK 3 MA1132: ADVANCED CALCULUS, HILARY 2017

HOMEWORK 3 MA1132: ADVANCED CALCULUS, HILARY 2017 HOMEWORK MA112: ADVANCED CALCULUS, HILARY 2017 (1) A particle moves along a curve in R with position function given by r(t) = (e t, t 2 + 1, t). Find the velocity v(t), the acceleration a(t), the speed

More information

The Definite Integral. Day 6 Motion Problems Strategies for Finding Total Area

The Definite Integral. Day 6 Motion Problems Strategies for Finding Total Area The Definite Integral Day 6 Motion Problems Strategies for Finding Total Area ARRIVAL---HW Questions Working in PODS Additional Practice Packet p. 13 and 14 Make good use of your time! Practice makes perfect!

More information

Sections 4.9: Antiderivatives

Sections 4.9: Antiderivatives Sections 4.9: Antiderivatives For the last few sections, we have been developing the notion of the derivative and determining rules which allow us to differentiate all different types of functions. In

More information

lim 2 x lim lim sin 3 (9) l)

lim 2 x lim lim sin 3 (9) l) MAC FINAL EXAM REVIEW. Find each of the following its if it eists, a) ( 5). (7) b). c). ( 5 ) d). () (/) e) (/) f) (-) sin g) () h) 5 5 5. DNE i) (/) j) (-/) 7 8 k) m) ( ) (9) l) n) sin sin( ) 7 o) DNE

More information

Solutions Definition 2: a solution

Solutions Definition 2: a solution Solutions As was stated before, one of the goals in this course is to solve, or find solutions of differential equations. In the next definition we consider the concept of a solution of an ordinary differential

More information

MATH 32A: MIDTERM 1 REVIEW. 1. Vectors. v v = 1 22

MATH 32A: MIDTERM 1 REVIEW. 1. Vectors. v v = 1 22 MATH 3A: MIDTERM 1 REVIEW JOE HUGHES 1. Let v = 3,, 3. a. Find e v. Solution: v = 9 + 4 + 9 =, so 1. Vectors e v = 1 v v = 1 3,, 3 b. Find the vectors parallel to v which lie on the sphere of radius two

More information

Math 115 Practice for Exam 3

Math 115 Practice for Exam 3 Math Practice for Exam Generated December, Name: SOLUTIONS Instructor: Section Number:. This exam has 6 questions. Note that the problems are not of equal difficulty, so you may want to skip over and return

More information

To study the motion of an object under the influence

To study the motion of an object under the influence L A B 3 FALLING OBJECTS First and Second Derivatives To study the motion of an object under the influence of gravity, we need equipment to track the motion of the object. We can use calculus to analyze

More information

Section , #5. Let Q be the amount of salt in oz in the tank. The scenario can be modeled by a differential equation.

Section , #5. Let Q be the amount of salt in oz in the tank. The scenario can be modeled by a differential equation. Section.3.5.3, #5. Let Q be the amount of salt in oz in the tank. The scenario can be modeled by a differential equation dq = 1 4 (1 + sin(t) ) + Q, Q(0) = 50. (1) 100 (a) The differential equation given

More information

Example (#1) Example (#1) Example (#2) Example (#2) dv dt

Example (#1) Example (#1) Example (#2) Example (#2) dv dt 1. Become familiar with a definition of and terminology involved with differential equations Calculus - Santowski. Solve differential equations with and without initial conditions 3. Apply differential

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

Homework Solutions: , plus Substitutions

Homework Solutions: , plus Substitutions Homework Solutions: 2.-2.2, plus Substitutions Section 2. I have not included any drawings/direction fields. We can see them using Maple or by hand, so we ll be focusing on getting the analytic solutions

More information

(2) Let f(x) = 5x. (3) Say f (x) and f (x) have the following graphs. Sketch a graph of f(x). The graph of f (x) is: 3x 5

(2) Let f(x) = 5x. (3) Say f (x) and f (x) have the following graphs. Sketch a graph of f(x). The graph of f (x) is: 3x 5 The following review sheet is intended to help you study. It does not contain every type of problem you may see. It does not reflect the distribution of problems on the actual midterm. It probably has

More information

Purdue University Study Guide for MA Credit Exam

Purdue University Study Guide for MA Credit Exam Purdue University Study Guide for MA 16010 Credit Exam Students who pass the credit exam will gain credit in MA16010. The credit exam is a two-hour long exam with multiple choice questions. No books or

More information

Math 111 Calculus I Fall 2005 Practice Problems For Final December 5, 2005

Math 111 Calculus I Fall 2005 Practice Problems For Final December 5, 2005 Math 111 Calculus I Fall 2005 Practice Problems For Final December 5, 2005 As always, the standard disclaimers apply In particular, I make no claims that all the material which will be on the exam is represented

More information

Physics 101 Discussion Week 3 Explanation (2011)

Physics 101 Discussion Week 3 Explanation (2011) Physics 101 Discussion Week 3 Explanation (2011) D3-1. Velocity and Acceleration A. 1: average velocity. Q1. What is the definition of the average velocity v? Let r(t) be the total displacement vector

More information

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

AP Calculus Testbank (Chapter 6) (Mr. Surowski) AP Calculus Testbank (Chapter 6) (Mr. Surowski) Part I. Multiple-Choice Questions 1. Suppose that f is an odd differentiable function. Then (A) f(1); (B) f (1) (C) f(1) f( 1) (D) 0 (E). 1 1 xf (x) =. The

More information

Polytechnic Institute of NYU MA 2132 Final Practice Answers Fall 2012

Polytechnic Institute of NYU MA 2132 Final Practice Answers Fall 2012 Polytechnic Institute of NYU MA Final Practice Answers Fall Studying from past or sample exams is NOT recommended. If you do, it should be only AFTER you know how to do all of the homework and worksheet

More information

1. (a) (4 points) Four students see this function: f(t) = 7 4t. Which student has written the derivative correctly? Circle the student s name.

1. (a) (4 points) Four students see this function: f(t) = 7 4t. Which student has written the derivative correctly? Circle the student s name. Math 170 - Spring 016 - Common Exam 1 Name: Part 1: Short Answer The first five (5) pages are short answer. You don t need to show work. Partial credit will be rare. When appropriate answers must include

More information

(i) find the points where f(x) is discontinuous, and classify each point of discontinuity.

(i) find the points where f(x) is discontinuous, and classify each point of discontinuity. Math Final Eam - Practice Problems. A function f is graphed below. f() 5 4 8 7 5 4 4 5 7 8 4 5 (a) Find f(0), f( ), f(), and f(4) Find the domain and range of f (c) Find the intervals where f () is positive

More information

Differential equations

Differential equations Differential equations Math 27 Spring 2008 In-term exam February 5th. Solutions This exam contains fourteen problems numbered through 4. Problems 3 are multiple choice problems, which each count 6% of

More information

1. The accumulated net change function or area-so-far function

1. The accumulated net change function or area-so-far function Name: Section: Names of collaborators: Main Points: 1. The accumulated net change function ( area-so-far function) 2. Connection to antiderivative functions: the Fundamental Theorem of Calculus 3. Evaluating

More information

Math 2250 Final Exam Practice Problem Solutions. f(x) = ln x x. 1 x. lim. lim. x x = lim. = lim 2

Math 2250 Final Exam Practice Problem Solutions. f(x) = ln x x. 1 x. lim. lim. x x = lim. = lim 2 Math 5 Final Eam Practice Problem Solutions. What are the domain and range of the function f() = ln? Answer: is only defined for, and ln is only defined for >. Hence, the domain of the function is >. Notice

More information

Introduction to Differential Equations

Introduction to Differential Equations > 22M:16 Fall 05 J. Simon ##################### Introduction to Differential Equations NOTE: This handout is a supplement to your text. There are several homework problems, part of the HW that is due on

More information

IB Math SL Year 2 Name Date Lesson 10-4: Displacement, Velocity, Acceleration Revisited

IB Math SL Year 2 Name Date Lesson 10-4: Displacement, Velocity, Acceleration Revisited Name Date Lesson 10-4: Displacement, Velocity, Acceleration Revisited Learning Goals: How do you apply integrals to real-world scenarios? Recall: Linear Motion When an object is moving, a ball in the air

More information

Practice problems from old exams for math 132 William H. Meeks III

Practice problems from old exams for math 132 William H. Meeks III Practice problems from old exams for math 32 William H. Meeks III Disclaimer: Your instructor covers far more materials that we can possibly fit into a four/five questions exams. These practice tests are

More information

Winter 2016 Practice Midterm 1 Time Limit: Minutes Exam Preparer: MATH 10B Teaching Assistants

Winter 2016 Practice Midterm 1 Time Limit: Minutes Exam Preparer: MATH 10B Teaching Assistants Math 10B Name: Winter 2016 Practice Midterm 1 Time Limit: Minutes Exam Preparer: MATH 10B Teaching Assistants This practice exam contains 4 pages (including this cover page) and 14 questions. Total of

More information

(1 2t), y(1) = 2 y. dy dt = t. e t y, y(0) = 1. dr, r(1) = 2 (r = r(θ)) y = t(t2 + 1) 4y 3, y(0) = 1. 2t y + t 2 y, y(0) = 2. 2t 1 + 2y, y(2) = 0

(1 2t), y(1) = 2 y. dy dt = t. e t y, y(0) = 1. dr, r(1) = 2 (r = r(θ)) y = t(t2 + 1) 4y 3, y(0) = 1. 2t y + t 2 y, y(0) = 2. 2t 1 + 2y, y(2) = 0 MATH 307 Due: Problem 1 Text: 2.2.9-20 Solve the following initial value problems (this problem should mainly be a review of MATH 125). 1. y = (1 2t)y 2, y(0) = 1/6 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12.

More information

3 = arccos. A a and b are parallel, B a and b are perpendicular, C a and b are normalized, or D this is always true.

3 = arccos. A a and b are parallel, B a and b are perpendicular, C a and b are normalized, or D this is always true. Math 210-101 Test #1 Sept. 16 th, 2016 Name: Answer Key Be sure to show your work! 1. (20 points) Vector Basics: Let v = 1, 2,, w = 1, 2, 2, and u = 2, 1, 1. (a) Find the area of a parallelogram spanned

More information

Solving Differential Equations: First Steps

Solving Differential Equations: First Steps 30 ORDINARY DIFFERENTIAL EQUATIONS 3 Solving Differential Equations Solving Differential Equations: First Steps Now we start answering the question which is the theme of this book given a differential

More information

Day 5 Notes: The Fundamental Theorem of Calculus, Particle Motion, and Average Value

Day 5 Notes: The Fundamental Theorem of Calculus, Particle Motion, and Average Value AP Calculus Unit 6 Basic Integration & Applications Day 5 Notes: The Fundamental Theorem of Calculus, Particle Motion, and Average Value b (1) v( t) dt p( b) p( a), where v(t) represents the velocity and

More information

Introduction to Differential Equations

Introduction to Differential Equations Math0 Lecture # Introduction to Differential Equations Basic definitions Definition : (What is a DE?) A differential equation (DE) is an equation that involves some of the derivatives (or differentials)

More information

2 If ax + bx + c = 0, then x = b) What are the x-intercepts of the graph or the real roots of f(x)? Round to 4 decimal places.

2 If ax + bx + c = 0, then x = b) What are the x-intercepts of the graph or the real roots of f(x)? Round to 4 decimal places. Quadratic Formula - Key Background: So far in this course we have solved quadratic equations by the square root method and the factoring method. Each of these methods has its strengths and limitations.

More information

CHAPTER 1. First-Order Differential Equations and Their Applications. 1.1 Introduction to Ordinary Differential Equations

CHAPTER 1. First-Order Differential Equations and Their Applications. 1.1 Introduction to Ordinary Differential Equations CHAPTER 1 First-Order Differential Equations and Their Applications 1.1 Introduction to Ordinary Differential Equations Differential equations are found in many areas of mathematics, science, and engineering.

More information

Vector Geometry Final Exam Review

Vector Geometry Final Exam Review Vector Geometry Final Exam Review Problem 1. Find the center and the radius for the sphere x + 4x 3 + y + z 4y 3 that the center and the radius of a sphere z 7 = 0. Note: Recall x + ax + y + by + z = d

More information

Sec 4.1 Limits, Informally. When we calculated f (x), we first started with the difference quotient. f(x + h) f(x) h

Sec 4.1 Limits, Informally. When we calculated f (x), we first started with the difference quotient. f(x + h) f(x) h 1 Sec 4.1 Limits, Informally When we calculated f (x), we first started with the difference quotient f(x + h) f(x) h and made h small. In other words, f (x) is the number f(x+h) f(x) approaches as h gets

More information

n=0 ( 1)n /(n + 1) converges, but not

n=0 ( 1)n /(n + 1) converges, but not Math 07H Topics for the third exam (and beyond) (Technically, everything covered on the first two exams plus...) Absolute convergence and alternating series A series a n converges absolutely if a n converges.

More information

4.9 Anti-derivatives. Definition. An anti-derivative of a function f is a function F such that F (x) = f (x) for all x.

4.9 Anti-derivatives. Definition. An anti-derivative of a function f is a function F such that F (x) = f (x) for all x. 4.9 Anti-derivatives Anti-differentiation is exactly what it sounds like: the opposite of differentiation. That is, given a function f, can we find a function F whose derivative is f. Definition. An anti-derivative

More information

Final Exam Review Sheet Solutions

Final Exam Review Sheet Solutions Final Exam Review Sheet Solutions. Find the derivatives of the following functions: a) f x x 3 tan x 3. f ' x x 3 tan x 3 x 3 sec x 3 3 x. Product rule and chain rule used. b) g x x 6 5 x ln x. g ' x 6

More information

Integral Curve (generic name for a member of the collection of known as the general solution)

Integral Curve (generic name for a member of the collection of known as the general solution) Section 1.2 Solutions of Some Differential Equations Key Terms/Ideas: Phase Line (This topic is not in this section of the book.) Classification of Equilibrium Solutions: Source, Sink, Node SPECIAL CASE:

More information

Basic Differential Equations

Basic Differential Equations Unit #15 - Differential Equations Some problems and solutions selected or adapted from Hughes-Hallett Calculus. Basic Differential Equations 1. Show that y = x + sin(x) π satisfies the initial value problem

More information

Laplace Transform Problems

Laplace Transform Problems AP Calculus BC Name: Laplace Transformation Day 3 2 January 206 Laplace Transform Problems Example problems using the Laplace Transform.. Solve the differential equation y! y = e t, with the initial value

More information

March 5, 2009 Name The problems count as marked. The total number of points available is 131. Throughout this test, show your work.

March 5, 2009 Name The problems count as marked. The total number of points available is 131. Throughout this test, show your work. March 5, 2009 Name The problems count as marked. The total number of points available is 131. Throughout this test, show your work. 1. (12 points) Consider the cubic curve f(x) = 2x 3 + 3x + 2. (a) What

More information

Solutions to Homework 1, Introduction to Differential Equations, 3450: , Dr. Montero, Spring y(x) = ce 2x + e x

Solutions to Homework 1, Introduction to Differential Equations, 3450: , Dr. Montero, Spring y(x) = ce 2x + e x Solutions to Homewor 1, Introduction to Differential Equations, 3450:335-003, Dr. Montero, Spring 2009 problem 2. The problem says that the function yx = ce 2x + e x solves the ODE y + 2y = e x, and ass

More information

UC Berkeley Math 10B, Spring 2015: Midterm 2 Prof. Sturmfels, April 9, SOLUTIONS

UC Berkeley Math 10B, Spring 2015: Midterm 2 Prof. Sturmfels, April 9, SOLUTIONS UC Berkeley Math 10B, Spring 2015: Midterm 2 Prof. Sturmfels, April 9, SOLUTIONS 1. (5 points) You are a pollster for the 2016 presidential elections. You ask 0 random people whether they would vote for

More information

Note: Unless otherwise specified, the domain of a function f is assumed to be the set of all real numbers x for which f (x) is a real number.

Note: Unless otherwise specified, the domain of a function f is assumed to be the set of all real numbers x for which f (x) is a real number. 997 AP Calculus BC: Section I, Part A 5 Minutes No Calculator Note: Unless otherwise specified, the domain of a function f is assumed to be the set of all real numbers for which f () is a real number..

More information

v ( t ) = 5t 8, 0 t 3

v ( t ) = 5t 8, 0 t 3 Use the Fundamental Theorem of Calculus to evaluate the integral. 27 d 8 2 Use the Fundamental Theorem of Calculus to evaluate the integral. 6 cos d 6 The area of the region that lies to the right of the

More information

Chapter 5: Integrals

Chapter 5: Integrals Chapter 5: Integrals Section 5.3 The Fundamental Theorem of Calculus Sec. 5.3: The Fundamental Theorem of Calculus Fundamental Theorem of Calculus: Sec. 5.3: The Fundamental Theorem of Calculus Fundamental

More information