Introduction to Differential Equations

Size: px
Start display at page:

Download "Introduction to Differential Equations"

Transcription

1 > 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 Thursday Sept 29. The problems are labeled DiffEq #1, DiffEq #2, etc. ##################### Suppose y=f(x), where f(x) = x^2. You know how to calculate the derivative, dy/dx = f ' (x) = 2x. What if the question were reversed: Find a function y=f(x) for which dy/dx = 2x. This is an example of a differential equation, that is some equation involving a function and/or some of its derivatives. If someone says, "Solve the differential equation...", they are asking you to FIND a function y=f(x) that satisfies the given equation. Often when people set up mathematical model of "real world" situations, what they set up are differential equations. Example 1. "The acceleration of gravity is constant" is the statement that if some object is falling under the effect of gravity, and we use y=f(t) to denote the position at time t, then the second derivative f ''(t) is constant. The equation is > Diff(Diff(y,t),t)= - 32 ; > 2 t 2 y = -32 To "solve" this equation, we need to find a function y=f(x) that has the property that f ''(x) = -32. For example, the function y= 16 x^ x - 10 is a solution. Here is how you would check that: > y:=16*x^2 + 17*x - 10; y := 16 x x - 10 > dydx:=diff(y,x); dydx := 32 x + 17 > d2ydx2:=diff(dydx,x);

2 d2ydx2 := 32 You calculate the second derivative of y with respect to x, and observe that it really is 32. Example 2. Check that the function y = x^3 satisfies the differential equation dy/dx = 3 y/x. Solution: If y=x^3 then dy/dx = 3 x^2. On the other hand, 3 y/x = 3 x^3 / x = 3 x^2, which is what we found for dy/dx. In pretty Maple printing, this would be... > y:=x^3; y := x 3 > dydx:=diff(y,x); > ThreeYoverX:=3*y/x; > is(dydx=threeyoverx); dydx := 3 x 2 ThreeYoverX := 3 x 2 true ############################# HOMEWORK DiffEq #1 Verify that the function y=5x^3 satisfies the differential equation dydx = 3y/x. ############################# As you see from the above homework problem, a given differential equation may have more than one "solution". In fact, typically, a differential equation has infinitely many solutions. Example 3. Solve the differential equation dy/dx = 10. We seek a function y=f(x) such that dy/dx = 10. So we are looking for a function whose graph has constant slope. Any line of slope 10 will satisfy this equation. SO f(x) = 10x or f(x) = 10x + 3 or f(x) = 10x - 17 or f(x) = 10x - sqrt(73) are all solutions to the given differential equation. In fact, any function of the form f(x) = 10 x + C, where C is a constant, is a solution. It turns out there are no other solutions (need more calculus to prove that). We call y = 10x + 34 a "particular solution" of the differential equation dy/dx = 10, and y = 10x + C the "general solution".

3 Example 4. Find the general solution of the differential equation dy/dx = x. [NOTE: We have not yet developed the machinery to know when we have **all** possible solutions. So for now, the phrase "general solution" will just mean an infinite family of solutions corresponding to one or more constants that can be chosen arbitrarily.] Solution for Example 4: We want a function y=f(x) for which dy/dx = x. Since d(x^2)/dx = 2x, we see that y=(1/2) x^2 has the right property. But we also know that the derivative of a constant function is 0, so if we add any constant to (1/2) x^2, we won't change the derivative; it will still be "x". SO... One particular solution is y=(1/2) x^2 The general solution is y = (1/2) x^2 + C, where C is an arbitrary constant. ###################### HOMEWORK DiffEq2 Find one particular solution of the differential equation dy/dx = 3x. Find the general solution. ###################### HOMEWORK DiffEq 3 Find one particular solution of the differential equation dy/dx = 2x + 3. Find the general solution. ######################## HOMEWORK DiffEq 4 Find one particular solution of the differential equation dy/dx = x^2 + 5x. Find the general solution. ########################### Describing a falling object. Suppose we throw a ball straight upwards, with an initial speed of 9 0 ft/sec. When will it hit the ground? How high will it get?

4 This is a very hard problem if you try to include the friction due to air-resistance. (Think of the complicated trajectories that baseballs, tennis balls, golfballs, footballs take when thrown; the interaction with the air is significant. See the web page for an interesting discussion.) To simplify the problem (so we'll just get an approximate answer), we will assume the ball is small and smooth and that it moves without air-resistance. Let y(t) denote the height at time t. Newton (F = ma) tells us that the second derivative d2y/dt2 = -32 (feet/sec)/sec. Let's view the derivative dy/dt = v as a function itself and first find what that is. Since d(dy/dt) / dt = -32, we know that dy/dt might be -32 t. It might also be -32 t , or any function of the form -32t + C. How do we decide?? Look at what happens at time t = 0. We are told the initial upward velocity is 90 ft/sec. So at time t = 0, dy/dt = -32(0) + C = 90. Thus C = 90. The velocity dy/dt must be -32 t Now we want to solve the following differential equation: Find y=f(t) such that dy/dt = -32 t This is just like previous examples and homework problems. We know that y = -16 t^ t would work. So would y = -16 t^ t work. The general solution is y = -16 t^ t + K, where K is any constant. So how do we find K? Again, look at what happens at time t=0. At time t=0, the height y is K. In fact, the person who stated this problem did not give enough information. To know the height at all times ( i.e. to know the function y(t) ), we need to know the height at t=0, the initial height. Let's say that the ball was launched with an initial height of 5 feet. So y(0) = K = 5. We now have the particular solution to the original differential equation y ' ' = -32 that satisfies not only the differential equation, but also the given "initial conditions" saying y(0) = 5 and y ' (0 ) = 90. The solution is y= -16 t^ t + 5. Now we can answer all sorts of questions. Let's first graph the height function. > y:=-16*t^2+90*t+5; Look at what happens at time t=0. y := -16 t t + 5 > plot(y, t=-2..10, color=blue, thickness=3);

5 Having plotted this function for t=-2..10, we now realize that some of this time period is physically meaningless. We launched the ball at t=0, so the behavior of the function for t<0 is not part of our physical experiment. Similarly, once the graph reaches t=6, we have y<0; but the ball has hit the ground, so the motion is no longer described by our simple equation. Nevertheless, seeing a lot of the parabola is useful because it reminds us that our function y=f(t) is a familiar quadratic, where we know how to find the zeros and we know how to find where the maximum is attained. > solve(y=0,t); , > evalf(%); , Remember, the ball was launched from height 5 ft, that is y(0) = 5. At time t = approx 5.7 seconds, the ball hits the ground. To find how high it got, recall that the vertex of the parabola occurs midway between the roots. We see from the above solution that is at t=45/16. How high is the ball at that moment? > subs(t=45/16,y); > evalf(%); So the ball reaches a height of a little over feet.

6 ################# HOMEWORK DiffEq 5 A ball is thrown vertically from an initial height of 4 feet, with an initial upwards velocity of 60 ft/sec. When does the ball hit the ground? How high does it get?? [You may ignore air resistance.] #################### Simple Differential Equations Force Us to Study Exponential and Trigonometric Functions In the next chapter, we will study exponential functions. You studied functions such as cos(x), ln(x), 2^x, etc. in high school. One of the main reasons for people to study these kinds of functions is that "Nature" forces us to. The physical world talks to us in the language of differential equations, and we need exponential and trig functions to solve even the simplest differential equations. We saw one important example above, that of a body moving freely under the force of gravity. There, the solutions were just [quadratic] polynomials. But consider the following situations. ############### Exponential growth ############### The simplest model of unrestricted population growth is to say that the rate of growth is proportional to the current population. This is saying that at any given moment, some fixed percent of the population is reproducing. If P(t) is the population at time t, we state our assumptions about the growth rate as a differential equation, for example dp/dt =.02 P The function ^ t is the (approximate, I'm rounding off an irrational number) solution if we add the initial condition that P(0)=1. > P:=1.0202^t; > diff(p,t); P := t t ##################### Simple spring #################### Suppose you have some object at the end of a spring; you stretch out the spring and let go. Describe the motion of the object.

7 For a typical spring, the longer you stretch it, the harder it pulls back. The simplest model of this is to say that the force pulling back is proportional to the amount you stretch the spring. Springs also resist compression, and the simplest model is, again, that the force the spring exerts is proportional to how much you compress it away from its relaxed position. Let x(t) denote the displacement at time t (so x=0 is the neutral, rest position). Newton (again, F=mA), together with our assumption that force is proportional to displacement, say that the acceleration is proportional to the displacement, but in the opposite direction: x ' ' (t) = - k x(t), where k is some positive constant. Sines and cosines give us the solutions. > X:=A*cos(sqrt(k)*t) + B*sin(sqrt(k)*t); X := A cos( k t) + B sin( k t) > Vel:=diff(X,t); > Acc:=diff(Vel,t); Vel := -A sin( k t) k + B cos( k t) k Acc := -A cos( k t) k - B sin( k t) k Notice that X ' ' is just (-k) times X.

Chapter 8 ~ Quadratic Functions and Equations In this chapter you will study... You can use these skills...

Chapter 8 ~ Quadratic Functions and Equations In this chapter you will study... You can use these skills... Chapter 8 ~ Quadratic Functions and Equations In this chapter you will study... identifying and graphing quadratic functions transforming quadratic equations solving quadratic equations using factoring

More information

Section 2: Friction, Gravity, and Elastic Forces

Section 2: Friction, Gravity, and Elastic Forces Chapter 10, Section 2 Friction, Gravity, & Elastic Forces Section 2: Friction, Gravity, and Elastic Forces What factors determine the strength of the friction force between two surfaces? What factors affect

More information

Displacement and Total Distance Traveled

Displacement and Total Distance Traveled Displacement and Total Distance Traveled We have gone over these concepts before. Displacement: This is the distance a particle has moved within a certain time - To find this you simply subtract its position

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

6x 2 8x + 5 ) = 12x 8

6x 2 8x + 5 ) = 12x 8 Example. If f(x) = x 3 4x + 5x + 1, then f (x) = 6x 8x + 5 Observation: f (x) is also a differentiable function... d dx ( f (x) ) = d dx ( 6x 8x + 5 ) = 1x 8 The derivative of f (x) is called the second

More information

NO CREDIT DO NOT USE IT

NO CREDIT DO NOT USE IT 1. Liela is standing on the opponents 40 yard line. She throws a pass toward the goal line. The ball is 2 meters above the ground when she lets go. It follows a parabolic path, reaching its highest point,

More information

Unforced Mechanical Vibrations

Unforced Mechanical Vibrations Unforced Mechanical Vibrations Today we begin to consider applications of second order ordinary differential equations. 1. Spring-Mass Systems 2. Unforced Systems: Damped Motion 1 Spring-Mass Systems We

More information

Resonance and response

Resonance and response Chapter 2 Resonance and response Last updated September 20, 2008 In this section of the course we begin with a very simple system a mass hanging from a spring and see how some remarkable ideas emerge.

More information

Note: The zero function f(x) = 0 is a polynomial function. It has no degree and no leading coefficient. Sep 15 2:51 PM

Note: The zero function f(x) = 0 is a polynomial function. It has no degree and no leading coefficient. Sep 15 2:51 PM 2.1 Linear and Quadratic Name: Functions and Modeling Objective: Students will be able to recognize and graph linear and quadratic functions, and use these functions to model situations and solve problems.

More information

Chapter Four Notes N P U2C4

Chapter Four Notes N P U2C4 Chapter Four Notes N P U2C4 Name Period Section 4.3: Quadratic Functions and Their Properties Recall from Chapter Three as well as advanced algebra that a quadratic function (or square function, as it

More information

Lecture 6.1 Work and Energy During previous lectures we have considered many examples, which can be solved using Newtonian approach, in particular,

Lecture 6.1 Work and Energy During previous lectures we have considered many examples, which can be solved using Newtonian approach, in particular, Lecture 6. Work and Energy During previous lectures we have considered many examples, which can be solved using Newtonian approach, in particular, Newton's second law. However, this is not always the most

More information

Chapter 2. Motion in One Dimension. AIT AP Physics C

Chapter 2. Motion in One Dimension. AIT AP Physics C Chapter 2 Motion in One Dimension Kinematics Describes motion while ignoring the agents that caused the motion For now, will consider motion in one dimension Along a straight line Will use the particle

More information

PHYSICS 107. Lecture 5 Newton s Laws of Motion

PHYSICS 107. Lecture 5 Newton s Laws of Motion PHYSICS 107 Lecture 5 Newton s Laws of Motion First Law We saw that the type of motion which was most difficult for Aristotle to explain was horizontal motion of nonliving objects, particularly after they've

More information

PHYS 111 HOMEWORK #5

PHYS 111 HOMEWORK #5 PHYS 111 HOMEWORK #5 Due : 9 Sept. 016 This is a homework set about projectile motion, so we will be using the equations of motion throughout. Therefore, I will collect all those equations here at the

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

Ms. Peralta s IM3 HW 5.4. HW 5.4 Solving Quadratic Equations. Solve the following exercises. Use factoring and/or the quadratic formula.

Ms. Peralta s IM3 HW 5.4. HW 5.4 Solving Quadratic Equations. Solve the following exercises. Use factoring and/or the quadratic formula. HW 5.4 HW 5.4 Solving Quadratic Equations Name: Solve the following exercises. Use factoring and/or the quadratic formula. 1. 2. 3. 4. HW 5.4 5. 6. 4x 2 20x + 25 = 36 7. 8. HW 5.4 9. 10. 11. 75x 2 30x

More information

Predicting the future with Newton s Second Law

Predicting the future with Newton s Second Law Predicting the future with Newton s Second Law To represent the motion of an object (ignoring rotations for now), we need three functions x(t), y(t), and z(t), which describe the spatial coordinates of

More information

1 Science/Physics. 2 Motion. GS 104, Exam Review

1 Science/Physics. 2 Motion. GS 104, Exam Review 1 Science/Physics 1. Homework #1 questions: Look over units of measure questions and solutions. 2. Name a subfield within science 3. Name a subfield within physics 4. 10 3 m = meter? (Prefix) 5. 10 9 m

More information

9/7/11. Which of the following is not a vector? Physics 101 Tuesday 9/6/11 Class 4

9/7/11. Which of the following is not a vector? Physics 101 Tuesday 9/6/11 Class 4 Reading Quiz Which of the following is not a vector? Physics 101 Tuesday 9/6/11 Class 4 Chapter 3 Sections 3.1 3.4 Free fall Components of a Vector Adding and Subtracting Vectors Unit Vectors A: speed

More information

MOMENTUM, IMPULSE & MOMENTS

MOMENTUM, IMPULSE & MOMENTS the Further Mathematics network www.fmnetwork.org.uk V 07 1 3 REVISION SHEET MECHANICS 1 MOMENTUM, IMPULSE & MOMENTS The main ideas are AQA Momentum If an object of mass m has velocity v, then the momentum

More information

Newtonian mechanics: kinematics and dynamics Kinematics: mathematical description of motion (Ch 2, Ch 3) Dynamics: how forces affect motion (Ch 4)

Newtonian mechanics: kinematics and dynamics Kinematics: mathematical description of motion (Ch 2, Ch 3) Dynamics: how forces affect motion (Ch 4) July-15-14 10:39 AM Chapter 2 Kinematics in One Dimension Newtonian mechanics: kinematics and dynamics Kinematics: mathematical description of motion (Ch 2, Ch 3) Dynamics: how forces affect motion (Ch

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

GALILEAN RELATIVITY. Projectile motion. The Principle of Relativity

GALILEAN RELATIVITY. Projectile motion. The Principle of Relativity GALILEAN RELATIVITY Projectile motion The Principle of Relativity When we think of the term relativity, the person who comes immediately to mind is of course Einstein. Galileo actually understood what

More information

Chapter 7: Trigonometric Equations and Identities

Chapter 7: Trigonometric Equations and Identities Chapter 7: Trigonometric Equations and Identities In the last two chapters we have used basic definitions and relationships to simplify trigonometric expressions and equations. In this chapter we will

More information

spring mass equilibrium position +v max

spring mass equilibrium position +v max Lecture 20 Oscillations (Chapter 11) Review of Simple Harmonic Motion Parameters Graphical Representation of SHM Review of mass-spring pendulum periods Let s review Simple Harmonic Motion. Recall we used

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

Motion Along a Straight Line

Motion Along a Straight Line Chapter 2 Motion Along a Straight Line PowerPoint Lectures for University Physics, Twelfth Edition Hugh D. Young and Roger A. Freedman Lectures by James Pazun Copyright 2008 Pearson Education Inc., publishing

More information

MAT135 Review for Test 4 Dugopolski Sections 7.5, 7.6, 8.1, 8.2, 8.3, 8.4

MAT135 Review for Test 4 Dugopolski Sections 7.5, 7.6, 8.1, 8.2, 8.3, 8.4 Sections 7.5, 7.6, 8.1, 8., 8., 8.4 1. Use the discriminant to determine the number and type(s) of solutions for 4x 8x 4 0. One real solution B. One complex solution Two real solutions Two complex solutions.

More information

AP Physics C Summer Homework. Questions labeled in [brackets] are required only for students who have completed AP Calculus AB

AP Physics C Summer Homework. Questions labeled in [brackets] are required only for students who have completed AP Calculus AB 1. AP Physics C Summer Homework NAME: Questions labeled in [brackets] are required only for students who have completed AP Calculus AB 2. Fill in the radian conversion of each angle and the trigonometric

More information

Section 1.4 Tangents and Velocity

Section 1.4 Tangents and Velocity Math 132 Tangents and Velocity Section 1.4 Section 1.4 Tangents and Velocity Tangent Lines A tangent line to a curve is a line that just touches the curve. In terms of a circle, the definition is very

More information

Physics 8 Friday, September 29, 2017

Physics 8 Friday, September 29, 2017 Physics 8 Friday, September 29, 2017 Turn in HW #4 today or Monday. No HW problems next week. Finish reading Ch10 for Monday. The next few chapters (10,11,12) are the most difficult material in the course.

More information

Algebra Quadratics Applications HW#54

Algebra Quadratics Applications HW#54 Algebra Quadratics Applications HW#54 1: A science class designed a ball launcher and tested it by shooting a tennis ball up and off the top of a 15-story building. They determined that the motion of the

More information

Chapter 3: Vectors and Projectile Motion

Chapter 3: Vectors and Projectile Motion Chapter 3: Vectors and Projectile Motion Vectors and Scalars You might remember from math class the term vector. We define a vector as something with both magnitude and direction. For example, 15 meters/second

More information

Kinematics and Dynamics

Kinematics and Dynamics AP PHYS 1 Test Review Kinematics and Dynamics Name: Other Useful Site: http://www.aplusphysics.com/ap1/ap1- supp.html 2015-16 AP Physics: Kinematics Study Guide The study guide will help you review all

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

Physics Chapter 3 Notes. Section 3-1: Introduction to Vectors (pages 80-83)

Physics Chapter 3 Notes. Section 3-1: Introduction to Vectors (pages 80-83) Physics Chapter 3 Notes Section 3-1: Introduction to Vectors (pages 80-83) We can use vectors to indicate both the magnitude of a quantity, and the direction. Vectors are often used in 2- dimensional problems.

More information

Chapter 2 Derivatives

Chapter 2 Derivatives Contents Chapter 2 Derivatives Motivation to Chapter 2 2 1 Derivatives and Rates of Change 3 1.1 VIDEO - Definitions................................................... 3 1.2 VIDEO - Examples and Applications

More information

Ch 3.7: Mechanical & Electrical Vibrations

Ch 3.7: Mechanical & Electrical Vibrations Ch 3.7: Mechanical & Electrical Vibrations Two important areas of application for second order linear equations with constant coefficients are in modeling mechanical and electrical oscillations. We will

More information

MITOCW MITRES18_005S10_DiffEqnsMotion_300k_512kb-mp4

MITOCW MITRES18_005S10_DiffEqnsMotion_300k_512kb-mp4 MITOCW MITRES18_005S10_DiffEqnsMotion_300k_512kb-mp4 PROFESSOR: OK, this lecture, this day, is differential equations day. I just feel even though these are not on the BC exams, that we've got everything

More information

Topic: Force PHYSICS 231

Topic: Force PHYSICS 231 Topic: Force PHYSICS 231 Current Assignments Homework Set 2 due this Thursday, Jan 27, 11 pm Reading for next week: Chapters 10.1-6,10.10,8.3 2/1/11 Physics 231 Spring 2011 2 Key Concepts: Force Free body

More information

Chapter 3: Derivatives

Chapter 3: Derivatives Name: Date: Period: AP Calc AB Mr. Mellina Chapter 3: Derivatives Sections: v 2.4 Rates of Change & Tangent Lines v 3.1 Derivative of a Function v 3.2 Differentiability v 3.3 Rules for Differentiation

More information

Daily Update. Dondi Ellis. January 27, 2015

Daily Update. Dondi Ellis. January 27, 2015 Daily Update Dondi Ellis January 27, 2015 CLASS 1: Introduction and Section 1.1 REMINDERS: Assignment: Read sections 1.1 and 1.2, and Student Guide (online). Buy a TI-84 or other graphing calculator satisfying

More information

Figure 1: Doing work on a block by pushing it across the floor.

Figure 1: Doing work on a block by pushing it across the floor. Work Let s imagine I have a block which I m pushing across the floor, shown in Figure 1. If I m moving the block at constant velocity, then I know that I have to apply a force to compensate the effects

More information

1.4 Techniques of Integration

1.4 Techniques of Integration .4 Techniques of Integration Recall the following strategy for evaluating definite integrals, which arose from the Fundamental Theorem of Calculus (see Section.3). To calculate b a f(x) dx. Find a function

More information

James T. Shipman Jerry D. Wilson Charles A. Higgins, Jr. Omar Torres. Chapter 2 Motion Cengage Learning

James T. Shipman Jerry D. Wilson Charles A. Higgins, Jr. Omar Torres. Chapter 2 Motion Cengage Learning James T. Shipman Jerry D. Wilson Charles A. Higgins, Jr. Omar Torres Chapter 2 Motion Defining Motion Motion is a continuous change in position can be described by measuring the rate of change of position

More information

Physics 0174(CHS) Exam #1 Academic Year NAME

Physics 0174(CHS) Exam #1 Academic Year NAME . Physics 0174(CHS) Exam #1 Academic Year 2015-2016 NAME This exam consists of 6 pages in addition to this page; please check to see that you have all of them. Be sure to show clearly how you arrive at

More information

Kinematics in Two Dimensions; Vectors

Kinematics in Two Dimensions; Vectors Kinematics in Two Dimensions; Vectors Vectors & Scalars!! Scalars They are specified only by a number and units and have no direction associated with them, such as time, mass, and temperature.!! Vectors

More information

MATH 1040 Objectives List

MATH 1040 Objectives List MATH 1040 Objectives List Textbook: Calculus, Early Transcendentals, 7th edition, James Stewart Students should expect test questions that require synthesis of these objectives. Unit 1 WebAssign problems

More information

New Material Section 1: Functions and Geometry occurring in engineering

New Material Section 1: Functions and Geometry occurring in engineering New Material Section 1: Functions and Geometry occurring in engineering 1. Plotting Functions: Using appropriate software to plot the graph of a function Linear f(x) = mx+c Quadratic f(x) = Px +Qx+R Cubic

More information

Oscillations! (Today: Springs)

Oscillations! (Today: Springs) Oscillations! (Today: Springs) Extra Practice: 5.34, 5.35, C13.1, C13.3, C13.11, 13.1, 13.3, 13.5, 13.9, 13.11, 13.17, 13.19, 13.21, 13.23, 13.25, 13.27, 13.31 Test #3 is this Wednesday! April 12, 7-10pm,

More information

MATH 320, WEEK 2: Slope Fields, Uniqueness of Solutions, Initial Value Problems, Separable Equations

MATH 320, WEEK 2: Slope Fields, Uniqueness of Solutions, Initial Value Problems, Separable Equations MATH 320, WEEK 2: Slope Fields, Uniqueness of Solutions, Initial Value Problems, Separable Equations 1 Slope Fields We have seen what a differential equation is (relationship with a function and its derivatives),

More information

12/06/2010. Chapter 2 Describing Motion: Kinematics in One Dimension. 2-1 Reference Frames and Displacement. 2-1 Reference Frames and Displacement

12/06/2010. Chapter 2 Describing Motion: Kinematics in One Dimension. 2-1 Reference Frames and Displacement. 2-1 Reference Frames and Displacement Chapter 2 Describing Motion: Kinematics in One Dimension 2-1 Reference Frames and Displacement Any measurement of position, distance, or speed must be made with respect to a reference frame. For example,

More information

Position, Velocity, Acceleration

Position, Velocity, Acceleration 191 CHAPTER 7 Position, Velocity, Acceleration When we talk of acceleration we think of how quickly the velocity is changing. For example, when a stone is dropped its acceleration (due to gravity) is approximately

More information

Unit 1: Mechanical Equilibrium

Unit 1: Mechanical Equilibrium Unit 1: Mechanical Equilibrium Chapter: Two Mechanical Equilibrium Big Idea / Key Concepts Student Outcomes 2.1: Force 2.2: Mechanical Equilibrium 2.3: Support Force 2.4: Equilibrium for Moving Objects

More information

Motion Part 2: Uniform Linear Motion

Motion Part 2: Uniform Linear Motion Motion Part 2: Uniform Linear Motion Last modified: 13/03/2018 Links Motion Quantities Uniform Velocity in One Dimension Uniform Acceleration in One Dimension Notation Extra Equations Uniform Acceleration

More information

Free-Body Diagrams: Introduction

Free-Body Diagrams: Introduction Free-Body Diagrams: Introduction Learning Goal: To learn to draw free-body diagrams for various real-life situations. Imagine that you are given a description of a real-life situation and are asked to

More information

equations that I should use? As you see the examples, you will end up with a system of equations that you have to solve

equations that I should use? As you see the examples, you will end up with a system of equations that you have to solve Preface The common question is Which is the equation that I should use?. I think I will rephrase the question as Which are the equations that I should use? As you see the examples, you will end up with

More information

(c) Find the equation of the degree 3 polynomial that has the same y-value, slope, curvature, and third derivative as ln(x + 1) at x = 0.

(c) Find the equation of the degree 3 polynomial that has the same y-value, slope, curvature, and third derivative as ln(x + 1) at x = 0. Chapter 7 Challenge problems Example. (a) Find the equation of the tangent line for ln(x + ) at x = 0. (b) Find the equation of the parabola that is tangent to ln(x + ) at x = 0 (i.e. the parabola has

More information

Lecture PowerPoints. Chapter 2 Physics for Scientists and Engineers, with Modern Physics, 4 th Edition Giancoli

Lecture PowerPoints. Chapter 2 Physics for Scientists and Engineers, with Modern Physics, 4 th Edition Giancoli Lecture PowerPoints Chapter 2 Physics for Scientists and Engineers, with Modern Physics, 4 th Edition Giancoli 2009 Pearson Education, Inc. This work is protected by United States copyright laws and is

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

3.2 Projectile Motion

3.2 Projectile Motion Motion in 2-D: Last class we were analyzing the distance in two-dimensional motion and revisited the concept of vectors, and unit-vector notation. We had our receiver run up the field then slant Northwest.

More information

One of the powerful themes in trigonometry is that the entire subject emanates from a very simple idea: locating a point on the unit circle.

One of the powerful themes in trigonometry is that the entire subject emanates from a very simple idea: locating a point on the unit circle. 2.24 Tanz and the Reciprocals Derivatives of Other Trigonometric Functions One of the powerful themes in trigonometry is that the entire subject emanates from a very simple idea: locating a point on the

More information

Unit 6: Quadratics. Contents

Unit 6: Quadratics. Contents Unit 6: Quadratics Contents Animated gif Program...6-3 Setting Bounds...6-9 Exploring Quadratic Equations...6-17 Finding Zeros by Factoring...6-3 Finding Zeros Using the Quadratic Formula...6-41 Modeling:

More information

Chapter 7: Trigonometric Equations and Identities

Chapter 7: Trigonometric Equations and Identities Chapter 7: Trigonometric Equations and Identities In the last two chapters we have used basic definitions and relationships to simplify trigonometric expressions and equations. In this chapter we will

More information

Calculus with business applications, Lehigh U, Lecture 01 notes Summer

Calculus with business applications, Lehigh U, Lecture 01 notes Summer Calculus with business applications, Lehigh U, Lecture 01 notes Summer 2012 1 Functions 1. A company sells 100 widgets at a price of $20. Sales increase by 5 widgets for each $1 decrease in price. Write

More information

Class 11 Physics NCERT Exemplar Solutions Motion in a Straight Line

Class 11 Physics NCERT Exemplar Solutions Motion in a Straight Line Class 11 Physics NCERT Exemplar Solutions Motion in a Straight Line Multiple Choice Questions Single Correct Answer Type Q1. Among the four graphs shown in the figure, there is only one graph for which

More information

Physics 8 Wednesday, September 30, 2015

Physics 8 Wednesday, September 30, 2015 Physics 8 Wednesday, September 30, 2015 You ve recently read Chapter 8 ( force ), Chapter 9 ( work ), and Chapter 10 ( motion in a plane ). In the coming weeks, class/hw will fall a bit behind the reading.

More information

Version PREVIEW Semester 1 Review Slade (22222) 1

Version PREVIEW Semester 1 Review Slade (22222) 1 Version PREVIEW Semester 1 Review Slade () 1 This print-out should have 48 questions. Multiple-choice questions may continue on the next column or page find all choices before answering. Holt SF 0Rev 10A

More information

11. Some applications of second order differential

11. Some applications of second order differential October 3, 2011 11-1 11. Some applications of second order differential equations The first application we consider is the motion of a mass on a spring. Consider an object of mass m on a spring suspended

More information

Calculus Honors and Introduction to Calculus

Calculus Honors and Introduction to Calculus Calculus Honors and Introduction to Calculus Name: This summer packet is for students entering Calculus Honors or Introduction to Calculus in the Fall of 015. The material represents concepts and skills

More information

test corrections graphing calculator factoring test

test corrections graphing calculator factoring test Warm-Up 1. Please turn in your test corrections to the inbox 2. You need your graphing calculator for today s lesson 3. If you need to take your factoring test, please come talk to Ms. Barger before class

More information

When we throw a ball :

When we throw a ball : PROJECTILE MOTION When we throw a ball : There is a constant velocity horizontal motion And there is an accelerated vertical motion These components act independently of each other PROJECTILE MOTION A

More information

Topic 2 Revision questions Paper

Topic 2 Revision questions Paper Topic 2 Revision questions Paper 1 3.1.2018 1. [1 mark] The graph shows the variation of the acceleration a of an object with time t. What is the change in speed of the object shown by the graph? A. 0.5

More information

PRACTICE FINAL , FALL What will NOT be on the final

PRACTICE FINAL , FALL What will NOT be on the final PRACTICE FINAL - 1010-004, FALL 2013 If you are completing this practice final for bonus points, please use separate sheets of paper to do your work and circle your answers. Turn in all work you did to

More information

Slopes, Derivatives, and Tangents. Matt Riley, Kyle Mitchell, Jacob Shaw, Patrick Lane

Slopes, Derivatives, and Tangents. Matt Riley, Kyle Mitchell, Jacob Shaw, Patrick Lane Slopes, Derivatives, and Tangents Matt Riley, Kyle Mitchell, Jacob Shaw, Patrick Lane S Introduction Definition of a tangent line: The tangent line at a point on a curve is a straight line that just touches

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

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

Lab 4: Gauss Gun Conservation of Energy

Lab 4: Gauss Gun Conservation of Energy Lab 4: Gauss Gun Conservation of Energy Before coming to Lab Read the lab handout Complete the pre-lab assignment and hand in at the beginning of your lab section. The pre-lab is written into this weeks

More information

For those of you who are taking Calculus AB concurrently with AP Physics, I have developed a

For those of you who are taking Calculus AB concurrently with AP Physics, I have developed a AP Physics C: Mechanics Greetings, For those of you who are taking Calculus AB concurrently with AP Physics, I have developed a brief introduction to Calculus that gives you an operational knowledge of

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

3.4 Solving Quadratic Equations by Completing

3.4 Solving Quadratic Equations by Completing .4. Solving Quadratic Equations by Completing the Square www.ck1.org.4 Solving Quadratic Equations by Completing the Square Learning objectives Complete the square of a quadratic expression. Solve quadratic

More information

Problem Solving. Undergraduate Physics

Problem Solving. Undergraduate Physics in Undergraduate Physics In this brief chapter, we will learn (or possibly review) several techniques for successful problem solving in undergraduate physics courses Slide 1 Procedure for The following

More information

Newton s Laws of Motion

Newton s Laws of Motion Newton s Laws of Motion Background If you are driving your car at a constant speed when you put it in neutral and turn off the engine, it does not maintain a constant speed. If you stop pushing an object

More information

Vectors and Kinematics Notes 1 Review

Vectors and Kinematics Notes 1 Review Velocity is defined as the change in displacement with respect to time. Vectors and Kinematics Notes 1 Review Note that this formula is only valid for finding constant velocity or average velocity. Also,

More information

Physics Unit 4:Work & Energy Name:

Physics Unit 4:Work & Energy Name: Name: Review and Preview We have come a long way in our study of mechanics. We started with the concepts of displacement and time, and built up to the more complex quantities of velocity and acceleration.

More information

Chapter 3: Derivatives and Graphing

Chapter 3: Derivatives and Graphing Chapter 3: Derivatives and Graphing 127 Chapter 3 Overview: Derivatives and Graphs There are two main contexts for derivatives: graphing and motion. In this chapter, we will consider the graphical applications

More information

A Library of Functions

A Library of Functions LibraryofFunctions.nb 1 A Library of Functions Any study of calculus must start with the study of functions. Functions are fundamental to mathematics. In its everyday use the word function conveys to us

More information

MAXIMUM AND MINIMUM 2

MAXIMUM AND MINIMUM 2 POINT OF INFLECTION MAXIMUM AND MINIMUM Example 1 This looks rather simple: x 3 To find the stationary points: = 3x So is zero when x = 0 There is one stationary point, the point (0, 0). Is it a maximum

More information

ALGEBRA II: A. Survey of Functions. Jeff Shriner

ALGEBRA II: A. Survey of Functions. Jeff Shriner ALGEBRA II: A Survey of Functions Jeff Shriner J S Created for University of Colorado PCDP, Summer 2014 1 C O N T E N T S 0 0.1: pre-requisite review 5 0 0.2: functions 7 0 0.3: inverse functions 11 0

More information

UC Irvine FOCUS! 5 E Lesson Plan

UC Irvine FOCUS! 5 E Lesson Plan UC Irvine FOCUS! 5 E Lesson Plan Title: Stomp Rockets Grade Level and Course: Pre-Algebra, Geometry, Grade 8 Physical Science, Grades 9-12 Physics (extension) - Trigonometry Materials: 1 stomp rocket per

More information

(a) On the diagram above, draw an arrow showing the direction of velocity of the projectile at point A.

(a) On the diagram above, draw an arrow showing the direction of velocity of the projectile at point A. QUESTION 1 The path of a projectile in a uniform gravitational field is shown in the diagram below. When the projectile reaches its maximum height, at point A, its speed v is 8.0 m s -1. Assume g = 10

More information

3.4 Solving Quadratic Equations by Completing

3.4 Solving Quadratic Equations by Completing www.ck1.org Chapter 3. Quadratic Equations and Quadratic Functions 3.4 Solving Quadratic Equations by Completing the Square Learning objectives Complete the square of a quadratic expression. Solve quadratic

More information

Classical mechanics: Newton s laws of motion

Classical mechanics: Newton s laws of motion Classical mechanics: Newton s laws of motion Homework next week will be due on Thursday next week You will soon be receiving student evaluations Occam s razor Given two competing and equally successful

More information

Name: Instructor: Exam 3 Solutions. Multiple Choice. 3x + 2 x ) 3x 3 + 2x 2 + 5x + 2 3x 3 3x 2x 2 + 2x + 2 2x 2 2 2x.

Name: Instructor: Exam 3 Solutions. Multiple Choice. 3x + 2 x ) 3x 3 + 2x 2 + 5x + 2 3x 3 3x 2x 2 + 2x + 2 2x 2 2 2x. . Exam 3 Solutions Multiple Choice.(6 pts.) Find the equation of the slant asymptote to the function We have so the slant asymptote is y = 3x +. f(x) = 3x3 + x + 5x + x + 3x + x + ) 3x 3 + x + 5x + 3x

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

Concepts in Physics. Friday, October 16th

Concepts in Physics. Friday, October 16th 1206 - Concepts in Physics Friday, October 16th Notes Assignment #4 due Wednesday, October 21 st in class (no later than noon) There are still assignments #1 and #2 in my office to be picked up... If you

More information

DIFFERENTIATION AND INTEGRATION PART 1. Mr C s IB Standard Notes

DIFFERENTIATION AND INTEGRATION PART 1. Mr C s IB Standard Notes DIFFERENTIATION AND INTEGRATION PART 1 Mr C s IB Standard Notes In this PDF you can find the following: 1. Notation 2. Keywords Make sure you read through everything and the try examples for yourself before

More information

Chapter 3 Acceleration

Chapter 3 Acceleration Chapter 3 Acceleration Slide 3-1 Chapter 3: Acceleration Chapter Goal: To extend the description of motion in one dimension to include changes in velocity. This type of motion is called acceleration. Slide

More information

The Princeton Review AP Calculus BC Practice Test 2

The Princeton Review AP Calculus BC Practice Test 2 0 The Princeton Review AP Calculus BC Practice Test CALCULUS BC SECTION I, Part A Time 55 Minutes Number of questions 8 A CALCULATOR MAY NOT BE USED ON THIS PART OF THE EXAMINATION Directions: Solve each

More information

Physics 8 Wednesday, September 27, 2017

Physics 8 Wednesday, September 27, 2017 Physics 8 Wednesday, September 27, 2017 Remember HW #4 due this Friday (but Monday is OK, if you prefer). It covers Chapters 7 (interactions) and 8 (force). No HW problems next week. Homework study/help

More information