Rectilinear Motion. Velocity

Size: px
Start display at page:

Download "Rectilinear Motion. Velocity"

Transcription

1 Rectilinear Motion Motion along a line Needed three things. Zero. Positive 3. Units This was our coordinate system Motion was a vector since it had magnitude and direction Average velocity Instantaneous velocity Velocity v avg v s = = t s t s lim = t 0 t = s t ds dt = s& Work backwards s = vdt Slope of position graph = velocity Area under velocity graph = change in position

2 Average acceleration Instantaneous acceleration Acceleration a a avg v v = = t t v lim = t 0 t = dv dt v t = v& = && s Work backwards v = adt Slope of velocity graph = acceleration Area under acceleration graph = change in velocity 3 Example From Lec 3- Differentiate Position (ft) Time (sec) s = 3 6t t v = t 3t a = 6t What if we have discrete data instead? Integrate Velocity (ft/sec) Acceleration (ft/sec/sec) Time (sec) Time (sec) 4

3 New Example During one of the EF 0 lectures, we set up a radar gun and recorded the horizontal (left and right) velocity of Dr. Raman. The first measurements are shown at right. Screen Podium 0 0 ft 0 ft Radar Gun Dr. Raman's Velocity Time Velocity Sec ft/sec We want to create the s-t, v-t, and a-t diagrams using Matlab. 5 Enter time - velocity data. "Hardwire" the data. Set up s-t, v-t, and a-t plots in vertical order. Use subplots. Put in title and axis labels. Plot the time - velocity data. Set axis limits. Determine the time - position data. Figure out to numerically integrate (trapezoids sound good). Determine the time - acceleration data. Figure out to numerically differentiate. Curve fit all three plots. Saw this in PS -7. Our Plan 6

4 trapz Trapezoidal numerical integration Z = trapz(y) Z = trapz(x,y) Z = trapz(y) computes an approximation of the integral of Y via the trapezoidal method (with unit spacing). To compute the integral for spacing other than one, multiply Z by the spacing increment. If Y is a vector, trapz(y) is the integral of Y. If Y is a matrix,trapz(y) is a row vector with the integral over each column. Z = trapz(x,y) computes the integral of Y with respect to X using trapezoidal integration. 7 cumtrapz Cumulative trapezoidal numerical integration Z = cumtrapz(y) Z = cumtrapz(x,y) Z = cumtrapz(y) computes an approximation of the cumulative integral of Y via the trapezoidal method with unit spacing. To compute the integral with other than unit spacing, multiply Z by the spacing increment. For vectors, cumtrapz(y) is a vector containing the cumulative integral of Y. For matrices, cumtrapz(y) is a matrix the same size as Y with the cumulative integral over each column. Z = cumtrapz(x,y) computes the cumulative integral of Y with respect to X 8 using trapezoidal integration. X and Y must be vectors of the same length,

5 diff Differences and approximate derivatives Y = diff(x) Y = diff(x,n) Y = diff(x) calculates differences between adjacent elements of X. If X is a vector, then diff(x) returns a vector, one element shorter than X, of differences between adjacent elements: [X()-X() X(3)-X()... X(n)-X(n-)] If X is a matrix, then diff(x) returns a matrix of row differences: [X(:m,:)-X(:m-,:)] Y = diff(x,n) applies diff recursively n times, resulting in the nth difference. Thus, diff(x,) is the same as diff(diff(x)). The quantity diff(y)./ diff(x) is an approximate derivative. 9 polyder Polynomial derivative k = polyder(p) k = polyder(a,b) [q,d] = polyder(b,a) The polyder function calculates the derivative of polynomials, polynomial products, and polynomial quotients. The operands a, b, and p are vectors whose elements are the coefficients of a polynomial in descending powers. k = polyder(p) returns the derivative of the polynomial p. k = polyder(a,b) returns the derivative of the product of the polynomials a and b. [q,d] = polyder(b,a) returns the numerator q and denominator d of the derivative of the polynomial quotient b/a. 0

6 polyint Integrate polynomial analytically polyint(p,k) polyint(p) polyint(p,k) returns a polynomial representing the integral of polynomial p, using a scalar constant of integration k. polyint(p) assumes a constant of integration k=0. quad, quad8 Numerically evaluate integral, adaptive Simpson quadrature Note The quad8 function, which implemented a higher order method, is obsolete. The quadl function is its recommended replacement. q = quad(fun,a,b) q = quad(fun,a,b,tol) Quadrature is a numerical method used to find the area under the graph of a function, that is, to compute a definite integral. q = quad(fun,a,b) approximates the integral of function fun from a to b to within an error of 0-6 using recursive adaptive Simpson quadrature. fun accepts a vector x and returns a vector y, the function fun evaluated at each element of x. q = quad(fun,a,b,tol) uses an absolute error tolerance tol instead of the default which is.0e-6. The function quadl may be more efficient with high accuracies and smooth integrands.

7 Summary - Discrete Data Integration - find area under curve. trapz and cumtrapz - trapezoid rule. Integration "smoothes" errors in the data. Use to go from acceleration to velocity. Use to go from velocity to position. How do we handle s 0 = 0 and/or v 0 = 0? Differentiation. Use the diff command. : diff(y)./ diff(x) differentiation "amplifies" errors in the data. Use to go from position to velocity. Use to go from velocity to acceleration. We "lose" information. Why? 3 Summary - Polynomials Use to curve fit discrete data. Use polyfit and polyval. Curve fitting also "smoothes" errors in the data. Integration - find area under curve. polyint - integrates the coefficients. Use to go from acceleration to velocity. Use to go from velocity to position. Again, how do we handle s 0 = 0 and/or v 0 = 0? Differentiation. polyder - differentiates the coefficients. Use to go from position to velocity. Use to go from velocity to acceleration. 4

Week 10 TENTATIVE SCHEDULE NUMERICAL APPROXIMATION LECTURE # 10

Week 10 TENTATIVE SCHEDULE NUMERICAL APPROXIMATION LECTURE # 10 TENTATIVE SCHEDULE INTRODUCTION TO SCIENTIFIC & ENG. COMPUTING BIL 108E, CRN 44448 Week.9_ Polynomials Examples Week.10_ Application of curve fitting : Approximation & Inregration Dr. Feyzi HAZNEDAROĞLU

More information

Lecture 8: Calculus and Differential Equations

Lecture 8: Calculus and Differential Equations Lecture 8: Calculus and Differential Equations Dr. Mohammed Hawa Electrical Engineering Department University of Jordan EE201: Computer Applications. See Textbook Chapter 9. Numerical Methods MATLAB provides

More information

Lecture 8: Calculus and Differential Equations

Lecture 8: Calculus and Differential Equations Lecture 8: Calculus and Differential Equations Dr. Mohammed Hawa Electrical Engineering Department University of Jordan EE21: Computer Applications. See Textbook Chapter 9. Numerical Methods MATLAB provides

More information

CEE 271: Applied Mechanics II, Dynamics Lecture 1: Ch.12, Sec.1-3h

CEE 271: Applied Mechanics II, Dynamics Lecture 1: Ch.12, Sec.1-3h 1 / 30 CEE 271: Applied Mechanics II, Dynamics Lecture 1: Ch.12, Sec.1-3h Prof. Albert S. Kim Civil and Environmental Engineering, University of Hawaii at Manoa Tuesday, August 21, 2012 2 / 30 INTRODUCTION

More information

Math Review. Daniel B. Rowe, Ph.D. Professor Department of Mathematics, Statistics, and Computer Science. Copyright 2018 by D.B.

Math Review. Daniel B. Rowe, Ph.D. Professor Department of Mathematics, Statistics, and Computer Science. Copyright 2018 by D.B. Math Review Daniel B. Rowe, Ph.D. Professor Department of Mathematics, Statistics, and Computer Science Copyright 2018 by 1 Outline Differentiation Definition Analytic Approach Numerical Approach Integration

More information

Numerical Integration of Functions

Numerical Integration of Functions Numerical Integration of Functions Berlin Chen Department of Computer Science & Information Engineering National Taiwan Normal University Reference: 1. Applied Numerical Methods with MATLAB for Engineers,

More information

VELOCITY. If you have a graph of position and you take the derivative, what would the derivative represent? Position. Time

VELOCITY. If you have a graph of position and you take the derivative, what would the derivative represent? Position. Time VELOCITY If you have a graph of position and you take the derivative, what would the derivative represent? Position Time Average rate of Change What is the average rate of change of temperature over the

More information

Introduction to MATLAB

Introduction to MATLAB Introduction to MATLAB Violeta Ivanova, Ph.D. Educational Technology Consultant MIT Academic Computing violeta@mit.edu http://web.mit.edu/violeta/www/iap2006 Topics MATLAB Interface and Basics Linear Algebra

More information

Applied Linear Algebra in Geoscience Using MATLAB

Applied Linear Algebra in Geoscience Using MATLAB Applied Linear Algebra in Geoscience Using MATLAB Contents Getting Started Creating Arrays Mathematical Operations with Arrays Using Script Files and Managing Data Two-Dimensional Plots Programming in

More information

3. Array and Matrix Operations

3. Array and Matrix Operations 3. Array and Matrix Operations Almost anything you learned about in your linear algebra classmatlab has a command to do. Here is a brief summary of the most useful ones for physics. In MATLAB matrices

More information

Name: Date: Honors Physics

Name: Date: Honors Physics Name: Date: Honors Physics Worksheet on Position, Velocity, and Acceleration Graphs when acceleration is constant Suppose you have an object that moves with a constant acceleration. Your task is to create

More information

Companion. Jeffrey E. Jones

Companion. Jeffrey E. Jones MATLAB7 Companion 1O11OO1O1O1OOOO1O1OO1111O1O1OO 1O1O1OO1OO1O11OOO1O111O1O1O1O1 O11O1O1O11O1O1O1O1OO1O11O1O1O1 O1O1O1111O11O1O1OO1O1O1O1OOOOO O1111O1O1O1O1O1O1OO1OO1OO1OOO1 O1O11111O1O1O1O1O Jeffrey E.

More information

Chapter 3 Derivatives

Chapter 3 Derivatives Chapter Derivatives Section 1 Derivative of a Function What you ll learn about The meaning of differentiable Different ways of denoting the derivative of a function Graphing y = f (x) given the graph of

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

Table 1 Motion Total Distance Covered Motion A Motion B

Table 1 Motion Total Distance Covered Motion A Motion B And thus, since God is the First Mover, simply, it is by His motion that everything seeks to be likened to God in its own way. Summa Theologica, IIa:Q109,A6 Time (sec) Table 1 Motion Total Distance Covered

More information

Numerical integration

Numerical integration Numerical integration Responsible teacher: Anatoliy Malyarenko November 8, 003 Contents of the lecture: Black Scholes model. The trapezoidal rule. Simpson s rule. Error handling in MATLAB. Error analysis.

More information

1 Introduction & Objective

1 Introduction & Objective Signal Processing First Lab 13: Numerical Evaluation of Fourier Series Pre-Lab and Warm-Up: You should read at least the Pre-Lab and Warm-up sections of this lab assignment and go over all exercises in

More information

Math 1526 Excel Lab 2 Summer 2012

Math 1526 Excel Lab 2 Summer 2012 Math 1526 Excel Lab 2 Summer 2012 Riemann Sums, Trapezoidal Rule and Simpson's Rule: In this lab you will learn how to recover information from rate of change data. For instance, if you have data for marginal

More information

PowerPoints organized by Dr. Michael R. Gustafson II, Duke University

PowerPoints organized by Dr. Michael R. Gustafson II, Duke University Part 5 Chapter 19 Numerical Differentiation PowerPoints organized by Dr. Michael R. Gustafson II, Duke University All images copyright The McGraw-Hill Companies, Inc. Permission required for reproduction

More information

http://geocities.com/kenahn7/ Today in this class Chap.2, Sec.1-7 Motion along a straight line 1. Position and displacement 2. 3. Acceleration Example: Motion with a constant acceleration Position and

More information

Chap. 19: Numerical Differentiation

Chap. 19: Numerical Differentiation Chap. 19: Numerical Differentiation Differentiation Definition of difference: y x f x x i x f x i As x is approaching zero, the difference becomes a derivative: dy dx lim x 0 f x i x f x i x 2 High-Accuracy

More information

MATLAB BASICS. Instructor: Prof. Shahrouk Ahmadi. TA: Kartik Bulusu

MATLAB BASICS. Instructor: Prof. Shahrouk Ahmadi. TA: Kartik Bulusu MATLAB BASICS Instructor: Prof. Shahrouk Ahmadi 1. What are M-files TA: Kartik Bulusu M-files are files that contain a collection of MATLAB commands or are used to define new MATLAB functions. For the

More information

Chapter 5: Limits and Derivatives

Chapter 5: Limits and Derivatives Chapter 5: Limits and Derivatives Chapter 5 Overview: Introduction to Limits and Derivatives In a later chapter, maximum and minimum points of a curve will be found both by calculator and algebraically.

More information

AB 1: Find lim. x a.

AB 1: Find lim. x a. AB 1: Find lim x a f ( x) AB 1 Answer: Step 1: Find f ( a). If you get a zero in the denominator, Step 2: Factor numerator and denominator of f ( x). Do any cancellations and go back to Step 1. If you

More information

Chapter 2 Overview: Introduction to Limits and Derivatives

Chapter 2 Overview: Introduction to Limits and Derivatives Chapter 2 Overview: Introduction to Limits and Derivatives In a later chapter, maximum and minimum points of a curve will be found both by calculator and algebraically. While the algebra of this process

More information

Definition of Derivative

Definition of Derivative Definition of Derivative The derivative of the function f with respect to the variable x is the function ( ) fʹ x whose value at xis ( x) fʹ = lim provided the limit exists. h 0 ( + ) ( ) f x h f x h Slide

More information

LIMITS AND DERIVATIVES

LIMITS AND DERIVATIVES 2 LIMITS AND DERIVATIVES LIMITS AND DERIVATIVES 1. Equation In Section 2.7, we considered the derivative of a function f at a fixed number a: f '( a) lim h 0 f ( a h) f ( a) h In this section, we change

More information

Numerical Integration

Numerical Integration Numerical Integration Sanzheng Qiao Department of Computing and Software McMaster University February, 2014 Outline 1 Introduction 2 Rectangle Rule 3 Trapezoid Rule 4 Error Estimates 5 Simpson s Rule 6

More information

Lab 2: Static Response, Cantilevered Beam

Lab 2: Static Response, Cantilevered Beam Contents 1 Lab 2: Static Response, Cantilevered Beam 3 1.1 Objectives.......................................... 3 1.2 Scalars, Vectors and Matrices (Allen Downey)...................... 3 1.2.1 Attribution.....................................

More information

PowerPoints organized by Dr. Michael R. Gustafson II, Duke University

PowerPoints organized by Dr. Michael R. Gustafson II, Duke University Part 5 Chapter 21 Numerical Differentiation PowerPoints organized by Dr. Michael R. Gustafson II, Duke University 1 All images copyright The McGraw-Hill Companies, Inc. Permission required for reproduction

More information

2.2 Average vs. Instantaneous Description

2.2 Average vs. Instantaneous Description 2 KINEMATICS 2.2 Average vs. Instantaneous Description Name: 2.2 Average vs. Instantaneous Description 2.2.1 Average vs. Instantaneous Velocity In the previous activity, you figured out that you can calculate

More information

Binomials defined, 13 division by, FOIL method and, 22 multiplying binomial by trinomial,

Binomials defined, 13 division by, FOIL method and, 22 multiplying binomial by trinomial, 5639_Holtfrerich_Index 6/2/05 11:45 AM Page I-1 Index Absolute value defined, 46 functions and, 126 59 Absolute value equations, solutions, 46 49 Absolute value inequalities, solutions, 263 267 Acceleration,

More information

3.1 Day 1: The Derivative of a Function

3.1 Day 1: The Derivative of a Function A P Calculus 3.1 Day 1: The Derivative of a Function I CAN DEFINE A DERIVATIVE AND UNDERSTAND ITS NOTATION. Last chapter we learned to find the slope of a tangent line to a point on a graph by using a

More information

Numerical Integration and Numerical Differentiation. Hsiao-Lung Chan Dept Electrical Engineering Chang Gung University, Taiwan

Numerical Integration and Numerical Differentiation. Hsiao-Lung Chan Dept Electrical Engineering Chang Gung University, Taiwan Numerical Integration and Numerical Differentiation Hsiao-Lung Chan Dept Electrical Engineering Chang Gung University, Taiwan chanhl@mail.cgu.edu.tw Integration 2 Mean for discrete and continuous data

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

Leaving Cert Differentiation

Leaving Cert Differentiation Leaving Cert Differentiation Types of Differentiation 1. From First Principles 2. Using the Rules From First Principles You will be told when to use this, the question will say differentiate with respect

More information

Topic 2-2: Derivatives of Vector Functions. Textbook: Section 13.2, 13.4

Topic 2-2: Derivatives of Vector Functions. Textbook: Section 13.2, 13.4 Topic 2-2: Derivatives of Vector Functions Textbook: Section 13.2, 13.4 Warm-Up: Parametrization of Circles Each of the following vector functions describe the position of an object traveling around the

More information

Project 3: Least-Squares Curve Fitting

Project 3: Least-Squares Curve Fitting ECE 309 Project #3 Page i Project 3: Least-Squares Curve Fitting Read the entire instructions for the project before you begin. Pay special attention to what you are asked to turn in (see pp. 6-7), including

More information

Unit IV Derivatives 20 Hours Finish by Christmas

Unit IV Derivatives 20 Hours Finish by Christmas Unit IV Derivatives 20 Hours Finish by Christmas Calculus There two main streams of Calculus: Differentiation Integration Differentiation is used to find the rate of change of variables relative to one

More information

Unit IV Derivatives 20 Hours Finish by Christmas

Unit IV Derivatives 20 Hours Finish by Christmas Unit IV Derivatives 20 Hours Finish by Christmas Calculus There two main streams of Calculus: Differentiation Integration Differentiation is used to find the rate of change of variables relative to one

More information

2.2 The derivative as a Function

2.2 The derivative as a Function 2.2 The derivative as a Function Recall: The derivative of a function f at a fixed number a: f a f a+h f(a) = lim h 0 h Definition (Derivative of f) For any number x, the derivative of f is f x f x+h f(x)

More information

PowerPoints organized by Dr. Michael R. Gustafson II, Duke University

PowerPoints organized by Dr. Michael R. Gustafson II, Duke University Part 5 Chapter 17 Numerical Integration Formulas PowerPoints organized by Dr. Michael R. Gustafson II, Duke University All images copyright The McGraw-Hill Companies, Inc. Permission required for reproduction

More information

Anna D Aloise May 2, 2017 INTD 302: Final Project. Demonstrate an Understanding of the Fundamental Concepts of Calculus

Anna D Aloise May 2, 2017 INTD 302: Final Project. Demonstrate an Understanding of the Fundamental Concepts of Calculus Anna D Aloise May 2, 2017 INTD 302: Final Project Demonstrate an Understanding of the Fundamental Concepts of Calculus Analyzing the concept of limit numerically, algebraically, graphically, and in writing.

More information

Numerical integration and differentiation. Unit IV. Numerical Integration and Differentiation. Plan of attack. Numerical integration.

Numerical integration and differentiation. Unit IV. Numerical Integration and Differentiation. Plan of attack. Numerical integration. Unit IV Numerical Integration and Differentiation Numerical integration and differentiation quadrature classical formulas for equally spaced nodes improper integrals Gaussian quadrature and orthogonal

More information

Derivative and Integral: Some Concepts for Geodesy

Derivative and Integral: Some Concepts for Geodesy Derivative and Integral: Some Concepts for Geodesy James R. Clynch, 2003 I. Rates of Change (Derivatives) and Integrals There are many places in physics where the rates of change occur. This is the derivative

More information

Numerical Integra/on

Numerical Integra/on Numerical Integra/on The Trapezoidal Rule is a technique to approximate the definite integral where For 1 st order: f(a) f(b) a b Error Es/mate of Trapezoidal Rule Truncation error: From Newton-Gregory

More information

Principal Components Analysis

Principal Components Analysis 1 of 8 11/07/2007 2:09 PM Statistics Toolbox Principal Components Analysis One of the difficulties inherent in multivariate statistics is the problem of visualizing data that has many variables. In MATLAB,

More information

Consistency and Convergence

Consistency and Convergence Jim Lambers MAT 77 Fall Semester 010-11 Lecture 0 Notes These notes correspond to Sections 1.3, 1.4 and 1.5 in the text. Consistency and Convergence We have learned that the numerical solution obtained

More information

( ) for t 0. Rectilinear motion CW. ( ) = t sin t ( Calculator)

( ) for t 0. Rectilinear motion CW. ( ) = t sin t ( Calculator) Rectilinear motion CW 1997 ( Calculator) 1) A particle moves along the x-axis so that its velocity at any time t is given by v(t) = 3t 2 2t 1. The position x(t) is 5 for t = 2. a) Write a polynomial expression

More information

7.6 The Inverse of a Square Matrix

7.6 The Inverse of a Square Matrix 7.6 The Inverse of a Square Matrix Copyright Cengage Learning. All rights reserved. What You Should Learn Verify that two matrices are inverses of each other. Use Gauss-Jordan elimination to find inverses

More information

AP Calculus Review Assignment Answer Sheet 1. Name: Date: Per. Harton Spring Break Packet 2015

AP Calculus Review Assignment Answer Sheet 1. Name: Date: Per. Harton Spring Break Packet 2015 AP Calculus Review Assignment Answer Sheet 1 Name: Date: Per. Harton Spring Break Packet 015 This is an AP Calc Review packet. As we get closer to the eam, it is time to start reviewing old concepts. Use

More information

MA 137 Calculus 1 with Life Science Applications The Chain Rule and Higher Derivatives (Section 4.4)

MA 137 Calculus 1 with Life Science Applications The Chain Rule and Higher Derivatives (Section 4.4) MA 137 Calculus 1 with Life Science Applications and (Section 4.4) Alberto Corso alberto.corso@uky.edu Department of Mathematics University of Kentucky March 2, 2016 1/15 Theorem Rules of Differentiation

More information

DIFFERENTIATION RULES

DIFFERENTIATION RULES 3 DIFFERENTIATION RULES DIFFERENTIATION RULES Before starting this section, you might need to review the trigonometric functions. DIFFERENTIATION RULES In particular, it is important to remember that,

More information

3. On the grid below, sketch and label graphs of the following functions: y = sin x, y = cos x, and y = sin(x π/2). π/2 π 3π/2 2π 5π/2

3. On the grid below, sketch and label graphs of the following functions: y = sin x, y = cos x, and y = sin(x π/2). π/2 π 3π/2 2π 5π/2 AP Physics C Calculus C.1 Name Trigonometric Functions 1. Consider the right triangle to the right. In terms of a, b, and c, write the expressions for the following: c a sin θ = cos θ = tan θ =. Using

More information

CM2202: Scientific Computing and Multimedia Applications Lab Class Week 5. School of Computer Science & Informatics

CM2202: Scientific Computing and Multimedia Applications Lab Class Week 5. School of Computer Science & Informatics CM2202: Scientific Computing and Multimedia Applications Lab Class Week 5 School of Computer Science & Informatics Vector operators Definition (Vector Addition, Subtraction and Scalar Multiplication in

More information

Motion in Three Dimensions

Motion in Three Dimensions Motion in Three Dimensions We ve learned about the relationship between position, velocity and acceleration in one dimension Now we need to extend those ideas to the three-dimensional world In the 1-D

More information

3 Applications of Derivatives Instantaneous Rates of Change Optimization Related Rates... 13

3 Applications of Derivatives Instantaneous Rates of Change Optimization Related Rates... 13 Contents Limits Derivatives 3. Difference Quotients......................................... 3. Average Rate of Change...................................... 4.3 Derivative Rules...........................................

More information

Practice Final Exam Solutions

Practice Final Exam Solutions Important Notice: To prepare for the final exam, study past exams and practice exams, and homeworks, quizzes, and worksheets, not just this practice final. A topic not being on the practice final does

More information

2.4 Rates of Change and Tangent Lines Pages 87-93

2.4 Rates of Change and Tangent Lines Pages 87-93 2.4 Rates of Change and Tangent Lines Pages 87-93 Average rate of change the amount of change divided by the time it takes. EXAMPLE 1 Finding Average Rate of Change Page 87 Find the average rate of change

More information

Topic Subtopics Essential Knowledge (EK)

Topic Subtopics Essential Knowledge (EK) Unit/ Unit 1 Limits [BEAN] 1.1 Limits Graphically Define a limit (y value a function approaches) One sided limits. Easy if it s continuous. Tricky if there s a discontinuity. EK 1.1A1: Given a function,

More information

Physics 1110: Mechanics

Physics 1110: Mechanics Physics 1110: Mechanics Announcements: CAPA set available in bins. Lectures can be found at the Course Calendar link. Written homework #1 (on website) due at beginning of recitation. The Moving Man simulation

More information

Homework 5 - Solutions

Homework 5 - Solutions Spring Math 54 Homework 5 - Solutions BF 3.4.4. d. The spline interpolation routine below produces the following coefficients: i a i b i c i d i -..869948.75637848.656598 -.5.9589.487644.9847639.887.9863.34456976.489747

More information

Calculus I Sample Exam #01

Calculus I Sample Exam #01 Calculus I Sample Exam #01 1. Sketch the graph of the function and define the domain and range. 1 a) f( x) 3 b) g( x) x 1 x c) hx ( ) x x 1 5x6 d) jx ( ) x x x 3 6 . Evaluate the following. a) 5 sin 6

More information

INTRODUCTION & RECTILINEAR KINEMATICS: CONTINUOUS MOTION

INTRODUCTION & RECTILINEAR KINEMATICS: CONTINUOUS MOTION INTRODUCTION & RECTILINEAR KINEMATICS: CONTINUOUS MOTION (Sections 12.1-12.2) Today s Objectives: Students will be able to find the kinematic quantities (position, displacement, velocity, and acceleration)

More information

Numerical Methods School of Mechanical Engineering Chung-Ang University

Numerical Methods School of Mechanical Engineering Chung-Ang University Part 5 Chapter 19 Numerical Differentiation Prof. Hae-Jin Choi hjchoi@cau.ac.kr 1 Chapter Objectives l Understanding the application of high-accuracy numerical differentiation formulas for equispaced data.

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

Homework and Computer Problems for Math*2130 (W17).

Homework and Computer Problems for Math*2130 (W17). Homework and Computer Problems for Math*2130 (W17). MARCUS R. GARVIE 1 December 21, 2016 1 Department of Mathematics & Statistics, University of Guelph NOTES: These questions are a bare minimum. You should

More information

MATHEMATICS Lecture. 4 Chapter.8 TECHNIQUES OF INTEGRATION By Dr. Mohammed Ramidh

MATHEMATICS Lecture. 4 Chapter.8 TECHNIQUES OF INTEGRATION By Dr. Mohammed Ramidh MATHEMATICS Lecture. 4 Chapter.8 TECHNIQUES OF INTEGRATION By TECHNIQUES OF INTEGRATION OVERVIEW The Fundamental Theorem connects antiderivatives and the definite integral. Evaluating the indefinite integral,

More information

To find an approximate value of the integral, the idea is to replace, on each subinterval

To find an approximate value of the integral, the idea is to replace, on each subinterval Module 6 : Definition of Integral Lecture 18 : Approximating Integral : Trapezoidal Rule [Section 181] Objectives In this section you will learn the following : Mid point and the Trapezoidal methods for

More information

Chapter 1. Functions and Graphs. 1.5 More on Slope

Chapter 1. Functions and Graphs. 1.5 More on Slope Chapter 1 Functions and Graphs 1.5 More on Slope 1/21 Chapter 1 Homework 1.5 p200 2, 4, 6, 8, 12, 14, 16, 18, 22, 24, 26, 29, 30, 32, 46, 48 2/21 Chapter 1 Objectives Find slopes and equations of parallel

More information

18.01 Final Answers. 1. (1a) By the product rule, (x 3 e x ) = 3x 2 e x + x 3 e x = e x (3x 2 + x 3 ). (1b) If f(x) = sin(2x), then

18.01 Final Answers. 1. (1a) By the product rule, (x 3 e x ) = 3x 2 e x + x 3 e x = e x (3x 2 + x 3 ). (1b) If f(x) = sin(2x), then 8. Final Answers. (a) By the product rule, ( e ) = e + e = e ( + ). (b) If f() = sin(), then f (7) () = 8 cos() since: f () () = cos() f () () = 4 sin() f () () = 8 cos() f (4) () = 6 sin() f (5) () =

More information

UNIT 3: DERIVATIVES STUDY GUIDE

UNIT 3: DERIVATIVES STUDY GUIDE Calculus I UNIT 3: Derivatives REVIEW Name: Date: UNIT 3: DERIVATIVES STUDY GUIDE Section 1: Section 2: Limit Definition (Derivative as the Slope of the Tangent Line) Calculating Rates of Change (Average

More information

n = 4: 0 2( ) (4 0) ( t 2.67%) 8

n = 4: 0 2( ) (4 0) ( t 2.67%) 8 1 CHAPTER 19 19.1 A table of integrals can be consulted to determine 1 tanh dx ln cosh ax a Therefore, t gm gc gm gc d gm m gc d tanh t dt ln cosh t c d m cd gcd m d ln cosh gc d t ln cosh() m Since cosh()

More information

2016 HSC Mathematics Marking Guidelines

2016 HSC Mathematics Marking Guidelines 06 HSC Mathematics Marking Guidelines Section I Multiple-choice Answer Key Question Answer B C 3 B 4 A 5 B 6 A 7 A 8 D 9 C 0 D Section II Question (a) Provides correct sketch Identifies radius, or equivalent

More information

Review. The derivative of y = f(x) has four levels of meaning: Physical: If y is a quantity depending on x, the derivative dy

Review. The derivative of y = f(x) has four levels of meaning: Physical: If y is a quantity depending on x, the derivative dy Math 132 Area and Distance Stewart 4.1/I Review. The derivative of y = f(x) has four levels of meaning: Physical: If y is a quantity depending on x, the derivative dy dx x=a is the rate of change of y

More information

Sections 2.7, 2.8 Rates of Change Part III Rates of Change in the Natural and Social Sciences

Sections 2.7, 2.8 Rates of Change Part III Rates of Change in the Natural and Social Sciences Math 180 wwwtimetodarecom Sections 7, 8 Rates of Change Part III Rates of Change in the Natural and Social Sciences Physics s If s= f ( t) is the position function of a particle that is moving in a straight

More information

Chapter 2. Motion along a Straight Line

Chapter 2. Motion along a Straight Line Chapter 2 Motion along a Straight Line 1 2.1 Motion Everything in the universe, from atoms to galaxies, is in motion. A first step to study motion is to consider simplified cases. In this chapter we study

More information

Project One: C Bump functions

Project One: C Bump functions Project One: C Bump functions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 2, 2018 Outline 1 2 The Project Let s recall what the

More information

MA6452 STATISTICS AND NUMERICAL METHODS UNIT IV NUMERICAL DIFFERENTIATION AND INTEGRATION

MA6452 STATISTICS AND NUMERICAL METHODS UNIT IV NUMERICAL DIFFERENTIATION AND INTEGRATION MA6452 STATISTICS AND NUMERICAL METHODS UNIT IV NUMERICAL DIFFERENTIATION AND INTEGRATION By Ms. K. Vijayalakshmi Assistant Professor Department of Applied Mathematics SVCE NUMERICAL DIFFERENCE: 1.NEWTON

More information

Answer Key 1973 BC 1969 BC 24. A 14. A 24. C 25. A 26. C 27. C 28. D 29. C 30. D 31. C 13. C 12. D 12. E 3. A 32. B 27. E 34. C 14. D 25. B 26.

Answer Key 1973 BC 1969 BC 24. A 14. A 24. C 25. A 26. C 27. C 28. D 29. C 30. D 31. C 13. C 12. D 12. E 3. A 32. B 27. E 34. C 14. D 25. B 26. Answer Key 969 BC 97 BC. C. E. B. D 5. E 6. B 7. D 8. C 9. D. A. B. E. C. D 5. B 6. B 7. B 8. E 9. C. A. B. E. D. C 5. A 6. C 7. C 8. D 9. C. D. C. B. A. D 5. A 6. B 7. D 8. A 9. D. E. D. B. E. E 5. E.

More information

Find the slope of the curve at the given point P and an equation of the tangent line at P. 1) y = x2 + 11x - 15, P(1, -3)

Find the slope of the curve at the given point P and an equation of the tangent line at P. 1) y = x2 + 11x - 15, P(1, -3) Final Exam Review AP Calculus AB Find the slope of the curve at the given point P and an equation of the tangent line at P. 1) y = x2 + 11x - 15, P(1, -3) Use the graph to evaluate the limit. 2) lim x

More information

AP Calculus BC Scope & Sequence

AP Calculus BC Scope & Sequence AP Calculus BC Scope & Sequence Grading Period Unit Title Learning Targets Throughout the School Year First Grading Period *Apply mathematics to problems in everyday life *Use a problem-solving model that

More information

Distance vs. Displacement, Speed vs. Velocity, Acceleration, Free-fall, Average vs. Instantaneous quantities, Motion diagrams, Motion graphs,

Distance vs. Displacement, Speed vs. Velocity, Acceleration, Free-fall, Average vs. Instantaneous quantities, Motion diagrams, Motion graphs, Distance vs. Displacement, Speed vs. Velocity, Acceleration, Free-fall, Average vs. Instantaneous quantities, Motion diagrams, Motion graphs, Kinematic formulas. A Distance Tells how far an object is from

More information

DIFFERENTIATION RULES

DIFFERENTIATION RULES 3 DIFFERENTIATION RULES DIFFERENTIATION RULES 3.2 The Product and Quotient Rules In this section, we will learn about: Formulas that enable us to differentiate new functions formed from old functions by

More information

DIFFERENTIATION RULES

DIFFERENTIATION RULES 3 DIFFERENTIATION RULES DIFFERENTIATION RULES Before starting this section, you might need to review the trigonometric functions. DIFFERENTIATION RULES In particular, it is important to remember that,

More information

Course Name : Physics I Course # PHY 107. Note - 3 : Motion in One Dimension

Course Name : Physics I Course # PHY 107. Note - 3 : Motion in One Dimension Course Name : Physics I Course # PHY 107 Note - 3 : Motion in One Dimension Abu Mohammad Khan Department of Mathematics and Physics North South University https://abukhan.weebly.com Copyright: It is unlawful

More information

Aim: How do we prepare for AP Problems on limits, continuity and differentiability? f (x)

Aim: How do we prepare for AP Problems on limits, continuity and differentiability? f (x) Name AP Calculus Date Supplemental Review 1 Aim: How do we prepare for AP Problems on limits, continuity and differentiability? Do Now: Use the graph of f(x) to evaluate each of the following: 1. lim x

More information

A B C D. Unit 6 (1-Dimensional Motion) Practice Assessment

A B C D. Unit 6 (1-Dimensional Motion) Practice Assessment Unit 6 (1-Dimensional Motion) Practice Assessment Choose the best answer to the following questions. Indicate the confidence in your answer by writing C (Confident), S (So-so), or G (Guessed) next to the

More information

MAT 275 Laboratory 7 Laplace Transform and the Symbolic Math Toolbox

MAT 275 Laboratory 7 Laplace Transform and the Symbolic Math Toolbox Laplace Transform and the Symbolic Math Toolbox 1 MAT 275 Laboratory 7 Laplace Transform and the Symbolic Math Toolbox In this laboratory session we will learn how to 1. Use the Symbolic Math Toolbox 2.

More information

MATH 2053 Calculus I Review for the Final Exam

MATH 2053 Calculus I Review for the Final Exam MATH 05 Calculus I Review for the Final Exam (x+ x) 9 x 9 1. Find the limit: lim x 0. x. Find the limit: lim x + x x (x ).. Find lim x (x 5) = L, find such that f(x) L < 0.01 whenever 0 < x

More information

Homework set #7 solutions, Math 128A J. Xia

Homework set #7 solutions, Math 128A J. Xia Homework set #7 solutions, Math 18A J. Xia Sec 4.4: 1a, a, 3a, 7abc, 17 1a. Compute by hand or use a program. Matlab code for the Composite Trapezoidal rule: function integral = cmptrap(a,b,n,f) h = (b-a)/n;

More information

Blue Pelican Calculus First Semester

Blue Pelican Calculus First Semester Blue Pelican Calculus First Semester Student Version 1.01 Copyright 2011-2013 by Charles E. Cook; Refugio, Tx Edited by Jacob Cobb (All rights reserved) Calculus AP Syllabus (First Semester) Unit 1: Function

More information

Scientific Computing: Numerical Integration

Scientific Computing: Numerical Integration Scientific Computing: Numerical Integration Aleksandar Donev Courant Institute, NYU 1 donev@courant.nyu.edu 1 Course MATH-GA.2043 or CSCI-GA.2112, Fall 2015 Nov 5th, 2015 A. Donev (Courant Institute) Lecture

More information

Name: AK-Nummer: Ergänzungsprüfung January 29, 2016

Name: AK-Nummer: Ergänzungsprüfung January 29, 2016 INSTRUCTIONS: The test has a total of 32 pages including this title page and 9 questions which are marked out of 10 points; ensure that you do not omit a page by mistake. Please write your name and AK-Nummer

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. D) D: (-, 0) (0, )

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. D) D: (-, 0) (0, ) Midterm Practice Test MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Find the domain and graph the function. ) G(t) = t - 3 ) 3 - -3 - - 3 - - -3

More information

Chapter 2: Motion along a straight line

Chapter 2: Motion along a straight line Chapter 2: Motion along a straight line This chapter uses the definitions of length and time to study the motions of particles in space. This task is at the core of physics and applies to all objects irregardless

More information

Measuring Motion. Day 1

Measuring Motion. Day 1 Measuring Motion Day 1 Objectives I will identify the relationship between motion and a reference point I will identify the two factors that speed depends on I will determine the difference between speed

More information

Lectures 9-10: Polynomial and piecewise polynomial interpolation

Lectures 9-10: Polynomial and piecewise polynomial interpolation Lectures 9-1: Polynomial and piecewise polynomial interpolation Let f be a function, which is only known at the nodes x 1, x,, x n, ie, all we know about the function f are its values y j = f(x j ), j

More information

Find the indicated derivative. 1) Find y(4) if y = 3 sin x. A) y(4) = 3 cos x B) y(4) = 3 sin x C) y(4) = - 3 cos x D) y(4) = - 3 sin x

Find the indicated derivative. 1) Find y(4) if y = 3 sin x. A) y(4) = 3 cos x B) y(4) = 3 sin x C) y(4) = - 3 cos x D) y(4) = - 3 sin x Assignment 5 Name Find the indicated derivative. ) Find y(4) if y = sin x. ) A) y(4) = cos x B) y(4) = sin x y(4) = - cos x y(4) = - sin x ) y = (csc x + cot x)(csc x - cot x) ) A) y = 0 B) y = y = - csc

More information

To conduct the experiment, each person in your group should be given a role:

To conduct the experiment, each person in your group should be given a role: Varying Motion NAME In this activity, your group of 3 will collect data based on one person s motion. From this data, you will create graphs comparing displacement, velocity, and acceleration to time.

More information