CHEE 222: PROCESS DYNAMICS AND NUMERICAL METHODS

Size: px
Start display at page:

Download "CHEE 222: PROCESS DYNAMICS AND NUMERICAL METHODS"

Transcription

1 CHEE 222: PROCESS DYNAMICS AND NUMERICAL METHODS Winter 2017 Implementation of Numerical Methods via MATLAB Instructor: Xiang Li

2 1 Outline 1. Introduction - Command, script and function - MATLAB function for mathematical functions 2. Programming Flow Control - IF-ELSE statement: Conditional commands - FOR statement: Repetitive commands - WHILE statement: Repetitive commands - Logical expressions: Description of conditions 3. Example Implementations - Direct substitution - Newton s method - Explicit Euler method

3 1. Introduction 2 Why MATLAB? MATLAB has become a standard tool for almost all scientific and engineering disciplines. MATLAB has become more and more popular in the R&D in industry. For CHEE 222: You don t have to perform tedious calculation by hand, and you can solve complicated problems with the principles learned in the course. Will be used again in: CHEE 311, CHEE 319, CHEE 321, CHEE 434, CHEE 412, CHEE 418

4 1. Introduction 3 References Moler, C. Numerical Computing with MATLAB, The MathWorks, Inc., Natick, MA (2004). (Electronic version: MATLAB help files Hudon, N, DeHaan, D., and Guay, M. Introduction to MATLAB. Department of Chemical Engineering, Queen s University (2006). - This MATLAB guide is available on D2L as HDG2006.pdf - Part of this presentation is prepared based on this guide.

5 1. Introduction Prompt line command Straightforward way to implement an operation 4 Prompt line Where your type your command Current folder Place the MATLAB file you want to call in the current folder. Workspace Existing variable are stored here.

6 1. Introduction 5 One to several commands in a single prompt line

7 1. Introduction 6 Script file A batch of commands

8 1. Introduction Function file A batch of commands with inputs and outputs 7 Function name should be the file name!

9 1. Introduction 8 Function file A batch of commands with inputs and outputs

10 1. Introduction 9 Function file A batch of commands with inputs and outputs

11 1. Introduction 10 Row Vector, Colum Vector, Matrix Math MATLAB a = ( ) Approach 1 Approach 2 a = [ ]; a(1) = 1; a(2) = 3; a(3) = 6; b = Approach 1 Approach 2 b = [ 1; 3; 6 ]; b(1) = 2; b(2) = 5; b(3) = 8; b = b ; A = Approach 1 Approach 2 A = [ 1 2 3; ]; A(1,:) = [ ]; A(2,:) = [ ];

12 1. Introduction 11 MATLAB function as f(x) in algebraic equations (1) absin(x 1 ) + cos(x 2 ) = 0, a ln(x 1 ) + e b2 (x 1 +x ) 2 = 0, a = 1, b = 0. f(x) = 0 where x = x 1 x 2, f(x) = absin(x 1 ) + cos(x 2 ) a ln(x 1 ) + e b2 (x 1 +x 2 ), a = 1, b = 0.

13 1. Introduction MATLAB function as f(x) in algebraic equations (2) 12 f(x) = absin(x 1 ) + cos(x 2 ) a ln(x 1 ) + e b2 (x 1 +x 2 ) where a = 1, b = 0.5. To solve f(x) = 0 with x 0 = (1.2, 1.4), type in MATLAB prompt (command) line: or

14 1. Introduction MATLAB function as f(x) in algebraic equations (3) 13 f(x) = absin(x 1 ) + cos(x 2 ) a ln(x 1 ) + e b2 (x 1 +x 2 ) where a = 1, b = 0.5. To solve f(x) = 0 with x 0 = (1.2, 1.4), type in MATLAB prompt (command) line:

15 1. Introduction MATLAB function for f(t,x) in ODEs x = f(t, x) = absin(x 1 ) + cos(x 2 ) a ln(x 1 ) + e b2 (x 1 +x 2 ) where a = 1, b = 0.5. if MATLAB built-in ode solvers (e.g., ode45) are to be used for solution, the ODE needs to be represented in this form no matter whether time t is present in the right-hand-sides of the equations. 14 To solve x=f(t, x) for time period [0, 0.5] with x(0) = (3, 4), type in prompt line: or

16 1. Introduction Some MATLAB built-in functions for math functions Function Description sin(x) sine of x; x in radians cos(x) cosine of x; x in radians tan(x) tangent of x; x in radians sec(x) secant of x; x in radian csc(x) cosecant of x; x in radian cot(x) cotangent of x; x in radian asin(x) arc sine of x sinh(x) hyperbolic sine of x asinh(x) inverse hyperbolic sine of x exp(x) exponential of x log(x) natural logarithm of x log10(x) base 10 logarithm of x sqrt(x) square root of x power(x,a) x to the power of a (equivalent to x^a) abs(x) absolute value of x round(x) round x towards nearest integer floor(x) round x towards minus infinity ceil(x) round x towards infinity fix(x) round x towards zero 15

17 2. Programming Flow Control for Conditional and Repetitive Commands 16 IF-ElSE statements Conditional commands CONDITION is expressed via logical operations. ACTION may involve one or several commands. The math function x can be computed via the following MATLAB function myabs that involves conditional commands:

18 2. Programming Flow Control for Conditional and Repetitive Commands 17 FOR statements Repetitive commands (1) After the execution of the FOR loop, the value of y becomes 5. After the execution of the FOR loop, the value of vector y becomes [1, 0, 0, 0, 25, 0, 0, 0, 81].

19 2. Programming Flow Control for Conditional and Repetitive Commands 18 FOR statements Repetitive commands (2) Using FOR statements for computing s = 20 i=1 x i

20 2. Programming Flow Control for Conditional and Repetitive Commands 19 WHILE statements Repetitive commands (1) Using WHILE statements for computing s = 20 i=1 x i

21 2. Programming Flow Control for Conditional and Repetitive Commands 20 WHILE statements Repetitive commands (2) Using WHILE statements for computing s = 20 i=1 x i

22 2. Programming Flow Control for Conditional and Repetitive Commands 21 Logical expressions Description of conditions Logical operators assess conditions and return Boolean values (1/0 or True/False).

23 3. Nonlinear Equation System 22 Direct Substitution Method (Fixed-Point Method) (1) Initialization: Reformulate equation f (x) = 0 as x=g(x). Give an initial guess x 0 and convergence tolerance ε, set k = 0. (2) Iteration k+1: Compute the next candidate solution x k+1 = g(x k ). (3) Termination Check: If x k+1 x k ε, return x k+1 as the numerical solution; Otherwise, k = k +1, and go to (2).

24 3. Example Implementations 23 Direct substitution Implementation via script or function To start the solution procedure, type in prompt line: To start the solution procedure, type in prompt line:

25 3. Example Implementations 24 Newton s method (1) Initialization: Give a guess x 0 and tolerances ε,ε a,ε r, set k = 0. (2) Iteration k+1: Compute f(x k ), J k, and x k+1 = x k J 1 k f(x k ). (3) Termination Check: If f(x k ) ε or x k+1 x k x k ε r +ε a, return x k+1 as the numerical solution; Otherwise, k = k +1, and go to (2). Solution information Algorithm initial condition

26 3. Example Implementations 25 Newton s method Example of function and Jacobian evaluation f(x) = absin(x 1 ) + cos(x 2 ) a ln(x 1 ) + e b2 (x 1 +x 2 ), where a = 1, b = 0.5. J = a x 1 abcos(x 1 ) sin(x 2 ) + b 2 e b 2 (x 1 +x 2 ) b 2 e b2 (x 1 +x 2 ), where a = 1, b = 0.5.

27 3. Example Implementations 26 Newton s method MATLAB command for execution If initial guess x 0 = x 1,0 x 2,0 = then the MATLAB command is:, tolerances: ε = 10 6, ε a = 10 6, ε r = 10 6, Note: MATLAB m-files Newton.m, fun.m, Jfun.m need to be included in the current folder for execution of the command!

28 3. Example Implementations 27 Newton s method Alternative implementation (1) Initialization: Give a guess x 0 and tolerances ε,ε a,ε r, set k = 0. (2) Iteration k+1: Compute f(x k ), J k, and x k+1 = x k J 1 k f(x k ). (3) Termination Check: If f(x k ) ε or x k+1 x k x k ε r +ε a, return x k+1 as the numerical solution; Otherwise, k = k +1, and go to (2).

29 3. Example Implementations 28 Explicit Euler - From algorithm to a MATLAB function x = f(x), x(0) = x 0 (1) Initialization: Give t 0 (= 0), t f, Δt, set k = 0. (2) Step k +1: m(k) = f(x(k)), x(k +1) = x(k) + m(k)δt (3) Termination Check : If k +1 = n(= t f / Δt), terminate and return [x(1)... x(n)] T ; Otherwise, set k = k +1, go to (2).

30 3. Example Implementations 29 Explicit Euler - Example of search direction evaluation x 1 = absin(x 1 ) + cos(x 2 ), x 2 = a ln(x 1 ) + e b2 (x 1 +x 2 ), where a = 1, b = 0.5.

31 3. Example Implementations 30 Explicit Euler - MATLAB command for execution If time period [t 0, t f ] = [0,1], time step Δt = 0.1, initial condition x(0) = x 1 (0) x 2 (0) = 1 1, then the MATLAB command is: Note: MATLAB m-files Euler.m, odefun.m need to be included in the current folder for execution of the command!

32 3. Example Implementations 31 Explicit Euler - Alternative implementation x = f(x), x(0) = x 0 (1) Initialization: Give t 0 (= 0), t f, Δt, set k = 0. (2) Step k +1: m(k +1) = f(x(k)), x(k +1) = x(k)+ m(k)δt (3) Termination Check : If k +1 = n(= t f / Δt), terminate and return [x(1)... x(n)] T ; Otherwise, set k = k +1, go to (2).

How to create Virtual Channels Tutorial

How to create Virtual Channels Tutorial How to create Virtual Channels Tutorial May 2015 How to create virtual channels Tutorial example Worldwide technical support and product information: www.toolsforsmartminds.com TOOLS for SMART MINDS Corporate

More information

AP CALCULUS SUMMER WORKSHEET

AP CALCULUS SUMMER WORKSHEET AP CALCULUS SUMMER WORKSHEET DUE: First Day of School Aug. 19, 2010 Complete this assignment at your leisure during the summer. It is designed to help you become more comfortable with your graphing calculator,

More information

AP CALCULUS SUMMER WORKSHEET

AP CALCULUS SUMMER WORKSHEET AP CALCULUS SUMMER WORKSHEET DUE: First Day of School, 2011 Complete this assignment at your leisure during the summer. I strongly recommend you complete a little each week. It is designed to help you

More information

Using this definition, it is possible to define an angle of any (positive or negative) measurement by recognizing how its terminal side is obtained.

Using this definition, it is possible to define an angle of any (positive or negative) measurement by recognizing how its terminal side is obtained. Angle in Standard Position With the Cartesian plane, we define an angle in Standard Position if it has its vertex on the origin and one of its sides ( called the initial side ) is always on the positive

More information

Chapter 1. Functions 1.3. Trigonometric Functions

Chapter 1. Functions 1.3. Trigonometric Functions 1.3 Trigonometric Functions 1 Chapter 1. Functions 1.3. Trigonometric Functions Definition. The number of radians in the central angle A CB within a circle of radius r is defined as the number of radius

More information

Math 12 Final Exam Review 1

Math 12 Final Exam Review 1 Math 12 Final Exam Review 1 Part One Calculators are NOT PERMITTED for this part of the exam. 1. a) The sine of angle θ is 1 What are the 2 possible values of θ in the domain 0 θ 2π? 2 b) Draw these angles

More information

Core 3 (A2) Practice Examination Questions

Core 3 (A2) Practice Examination Questions Core 3 (A) Practice Examination Questions Trigonometry Mr A Slack Trigonometric Identities and Equations I know what secant; cosecant and cotangent graphs look like and can identify appropriate restricted

More information

Learning Objectives for Math 165

Learning Objectives for Math 165 Learning Objectives for Math 165 Chapter 2 Limits Section 2.1: Average Rate of Change. State the definition of average rate of change Describe what the rate of change does and does not tell us in a given

More information

Chapter 2: Differentiation

Chapter 2: Differentiation Chapter 2: Differentiation Winter 2016 Department of Mathematics Hong Kong Baptist University 1 / 75 2.1 Tangent Lines and Their Slopes This section deals with the problem of finding a straight line L

More information

CK- 12 Algebra II with Trigonometry Concepts 1

CK- 12 Algebra II with Trigonometry Concepts 1 14.1 Graphing Sine and Cosine 1. A.,1 B. (, 1) C. 3,0 D. 11 1, 6 E. (, 1) F. G. H. 11, 4 7, 1 11, 3. 3. 5 9,,,,,,, 4 4 4 4 3 5 3, and, 3 3 CK- 1 Algebra II with Trigonometry Concepts 1 4.ans-1401-01 5.

More information

Dear Future CALCULUS Student,

Dear Future CALCULUS Student, Dear Future CALCULUS Student, I am looking forward to teaching the AP Calculus AB class this coming year and hope that you are looking forward to the class as well. Here a few things you need to know prior

More information

Chapter 2: Differentiation

Chapter 2: Differentiation Chapter 2: Differentiation Spring 2018 Department of Mathematics Hong Kong Baptist University 1 / 82 2.1 Tangent Lines and Their Slopes This section deals with the problem of finding a straight line L

More information

SUMO. Introduction (Version 1.0)

SUMO. Introduction (Version 1.0) SUMO Introduction (Version 1.0) SUMO (Simple User-defined Mathematical Operations) is a program that enables calculation of a user-defined function. The program makes use of the mathematics parser at http://www.mhgsoft.de/software/prfinder.php?category=3&lang=en

More information

Math 551 Homework Assignment 3 Page 1 of 6

Math 551 Homework Assignment 3 Page 1 of 6 Math 551 Homework Assignment 3 Page 1 of 6 Name and section: ID number: E-mail: 1. Consider Newton s method for finding + α with α > 0 by finding the positive root of f(x) = x 2 α = 0. Assuming that x

More information

Unit #3 : Differentiability, Computing Derivatives

Unit #3 : Differentiability, Computing Derivatives Unit #3 : Differentiability, Computing Derivatives Goals: Determine when a function is differentiable at a point Relate the derivative graph to the the graph of an original function Compute derivative

More information

2. Find the midpoint of the segment that joins the points (5, 1) and (3, 5). 6. Find an equation of the line with slope 7 that passes through (4, 1).

2. Find the midpoint of the segment that joins the points (5, 1) and (3, 5). 6. Find an equation of the line with slope 7 that passes through (4, 1). Math 129: Pre-Calculus Spring 2018 Practice Problems for Final Exam Name (Print): 1. Find the distance between the points (6, 2) and ( 4, 5). 2. Find the midpoint of the segment that joins the points (5,

More information

NAME: DATE: CLASS: AP CALCULUS AB SUMMER MATH 2018

NAME: DATE: CLASS: AP CALCULUS AB SUMMER MATH 2018 NAME: DATE: CLASS: AP CALCULUS AB SUMMER MATH 2018 A] Refer to your pre-calculus notebook, the internet, or the sheets/links provided for assistance. B] Do not wait until the last minute to complete this

More information

Unit #3 : Differentiability, Computing Derivatives, Trig Review

Unit #3 : Differentiability, Computing Derivatives, Trig Review Unit #3 : Differentiability, Computing Derivatives, Trig Review Goals: Determine when a function is differentiable at a point Relate the derivative graph to the the graph of an original function Compute

More information

Dear Future CALCULUS Student,

Dear Future CALCULUS Student, Dear Future CALCULUS Student, I am looking forward to teaching the AP Calculus AB class this coming year and hope that you are looking forward to the class as well. Here a few things you need to know prior

More information

June 9 Math 1113 sec 002 Summer 2014

June 9 Math 1113 sec 002 Summer 2014 June 9 Math 1113 sec 002 Summer 2014 Section 6.5: Inverse Trigonometric Functions Definition: (Inverse Sine) For x in the interval [ 1, 1] the inverse sine of x is denoted by either and is defined by the

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 Trigonometric Identities

Unit 6 Trigonometric Identities Unit 6 Trigonometric Identities Prove trigonometric identities Solve trigonometric equations Prove trigonometric identities, using: Reciprocal identities Quotient identities Pythagorean identities Sum

More information

1.2 Supplement: Mathematical Models: A Catalog of Essential Functions

1.2 Supplement: Mathematical Models: A Catalog of Essential Functions Math 131 -copyright Angela Allen, Fall 2011 1 1.2 Supplement: Mathematical Models: A Catalog of Essential Functions Note: Some of these examples and figures come from your textbook Single Variable Calculus:

More information

Matlab for Review. NDSU Matlab Review pg 1

Matlab for Review. NDSU Matlab Review pg 1 NDSU Matlab Review pg 1 Becoming familiar with MATLAB The console The editor The graphics windows The help menu Saving your data (diary) General environment and the console Matlab for Review Simple numerical

More information

Chapter P: Preliminaries

Chapter P: Preliminaries Chapter P: Preliminaries Winter 2016 Department of Mathematics Hong Kong Baptist University 1 / 59 Preliminaries The preliminary chapter reviews the most important things that you should know before beginning

More information

Topic Outline for Integrated Algebra 2 and Trigonometry-R One Year Program with Regents in June

Topic Outline for Integrated Algebra 2 and Trigonometry-R One Year Program with Regents in June Topic Outline for Integrated Algebra 2 and Trigonometry-R One Year Program with Regents in June Integrated Algebra 2 & Trigonometry - R Semester 1 1. Rational Expressions 7 Days A. Factoring A2.A.7 Factor

More information

Indiana Academic Standards for Precalculus

Indiana Academic Standards for Precalculus PRECALCULUS correlated to the Indiana Academic Standards for Precalculus CC2 6/2003 2004 Introduction to Precalculus 2004 by Roland E. Larson and Robert P. Hostetler Precalculus thoroughly explores topics

More information

Calculus I Announcements

Calculus I Announcements Slie 1 Calculus I Announcements Office Hours: Amos Eaton 309, Monays 12:50-2:50 Exam 2 is Thursay, October 22n. The stuy guie is now on the course web page. Start stuying now, an make a plan to succee.

More information

TO EARN ANY CREDIT, YOU MUST SHOW STEPS LEADING TO THE ANSWER

TO EARN ANY CREDIT, YOU MUST SHOW STEPS LEADING TO THE ANSWER Prof. Israel N. Nwaguru MATH 11 CHAPTER,,, AND - REVIEW WORKOUT EACH PROBLEM NEATLY AND ORDERLY ON SEPARATE SHEET THEN CHOSE THE BEST ANSWER TO EARN ANY CREDIT, YOU MUST SHOW STEPS LEADING TO THE ANSWER

More information

Math 121: Calculus 1 - Fall 2012/2013 Review of Precalculus Concepts

Math 121: Calculus 1 - Fall 2012/2013 Review of Precalculus Concepts Introduction Math : Calculus - Fall 0/0 Review of Precalculus Concets Welcome to Math - Calculus, Fall 0/0! This roblems in this acket are designed to hel you review the toics from Algebra and Precalculus

More information

10.7 Trigonometric Equations and Inequalities

10.7 Trigonometric Equations and Inequalities 0.7 Trigonometric Equations and Inequalities 857 0.7 Trigonometric Equations and Inequalities In Sections 0. 0. and most recently 0. we solved some basic equations involving the trigonometric functions.

More information

(e) 2 (f) 2. (c) + (d). Limits at Infinity. 2.5) 9-14,25-34,41-43,46-47,56-57, (c) (d) 2

(e) 2 (f) 2. (c) + (d). Limits at Infinity. 2.5) 9-14,25-34,41-43,46-47,56-57, (c) (d) 2 Math 150A. Final Review Answers, Spring 2018. Limits. 2.2) 7-10, 21-24, 28-1, 6-8, 4-44. 1. Find the values, or state they do not exist. (a) (b) 1 (c) DNE (d) 1 (e) 2 (f) 2 (g) 2 (h) 4 2. lim f(x) = 2,

More information

Calculating the Derivative Using Derivative Rules Implicit Functions Higher-Order Derivatives

Calculating the Derivative Using Derivative Rules Implicit Functions Higher-Order Derivatives Topic 4 Outline 1 Derivative Rules Calculating the Derivative Using Derivative Rules Implicit Functions Higher-Order Derivatives D. Kalajdzievska (University of Manitoba) Math 1500 Fall 2015 1 / 32 Topic

More information

HIGH SCHOOL MATH CURRICULUM GRADE ELEVEN ALGEBRA 2 & TRIGONOMETRY N

HIGH SCHOOL MATH CURRICULUM GRADE ELEVEN ALGEBRA 2 & TRIGONOMETRY N VALLEY CENTRAL SCHOOL DISTRICT 944 STATE ROUTE 17K MONTGOMERY, NY 12549 Telephone Number: (845) 457-2400 ext. 8121 FAX NUMBER: (845) 457-4254 HIGH SCHOOL MATH CURRICULUM GRADE ELEVEN ALGEBRA 2 & TRIGONOMETRY

More information

Algebra 2 and Trigonometry

Algebra 2 and Trigonometry Algebra 2 and Trigonometry Number Sense and Operations Strand Students will understand meanings of operations and procedures, and how they relate to one another. Operations A2.N.1 Evaluate numerical expressions

More information

Function and Relation Library

Function and Relation Library 1 of 7 11/6/2013 7:56 AM Function and Relation Library Trigonometric Functions: Angle Definitions Legs of A Triangle Definitions Sine Cosine Tangent Secant Cosecant Cotangent Trig functions are functions

More information

10.7 Trigonometric Equations and Inequalities

10.7 Trigonometric Equations and Inequalities 0.7 Trigonometric Equations and Inequalities 79 0.7 Trigonometric Equations and Inequalities In Sections 0., 0. and most recently 0., we solved some basic equations involving the trigonometric functions.

More information

Calculus: Early Transcendental Functions Lecture Notes for Calculus 101. Feras Awad Mahmoud

Calculus: Early Transcendental Functions Lecture Notes for Calculus 101. Feras Awad Mahmoud Calculus: Early Transcendental Functions Lecture Notes for Calculus 101 Feras Awad Mahmoud Last Updated: August 2, 2012 1 2 Feras Awad Mahmoud Department of Basic Sciences Philadelphia University JORDAN

More information

f(g(x)) g (x) dx = f(u) du.

f(g(x)) g (x) dx = f(u) du. 1. Techniques of Integration Section 8-IT 1.1. Basic integration formulas. Integration is more difficult than derivation. The derivative of every rational function or trigonometric function is another

More information

Chapter P: Preliminaries

Chapter P: Preliminaries Chapter P: Preliminaries Spring 2018 Department of Mathematics Hong Kong Baptist University 1 / 67 Preliminaries The preliminary chapter reviews the most important things that you should know before beginning

More information

Investigating Limits in MATLAB

Investigating Limits in MATLAB MTH229 Investigating Limits in MATLAB Project 5 Exercises NAME: SECTION: INSTRUCTOR: Exercise 1: Use the graphical approach to find the following right limit of f(x) = x x, x > 0 lim x 0 + xx What is the

More information

Unit 6 Trigonometric Identities Prove trigonometric identities Solve trigonometric equations

Unit 6 Trigonometric Identities Prove trigonometric identities Solve trigonometric equations Unit 6 Trigonometric Identities Prove trigonometric identities Solve trigonometric equations Prove trigonometric identities, using: Reciprocal identities Quotient identities Pythagorean identities Sum

More information

MAT137 Calculus! Lecture 9

MAT137 Calculus! Lecture 9 MAT137 Calculus! Lecture 9 Today we will study: Limits at infinity. L Hôpital s Rule. Mean Value Theorem. (11.5,11.6, 4.1) PS3 is due this Friday June 16. Next class: Applications of the Mean Value Theorem.

More information

Trigonometry.notebook. March 16, Trigonometry. hypotenuse opposite. Recall: adjacent

Trigonometry.notebook. March 16, Trigonometry. hypotenuse opposite. Recall: adjacent Trigonometry Recall: hypotenuse opposite adjacent 1 There are 3 other ratios: the reciprocals of sine, cosine and tangent. Secant: Cosecant: (cosec θ) Cotangent: 2 Example: Determine the value of x. a)

More information

10.7 Trigonometric Equations and Inequalities

10.7 Trigonometric Equations and Inequalities 0.7 Trigonometric Equations and Inequalities 857 0.7 Trigonometric Equations and Inequalities In Sections 0., 0. and most recently 0., we solved some basic equations involving the trigonometric functions.

More information

Pre-Calculus 40 Final Outline/Review:

Pre-Calculus 40 Final Outline/Review: 2016-2017 Pre-Calculus 40 Final Outline/Review: Non-Calculator Section: 16 multiple choice (32 pts) and 6 open ended (24 pts). Calculator Section: 8 multiple choice (16 pts) and 11 open ended (36 pts).

More information

D. 6. Correct to the nearest tenth, the perimeter of the shaded portion of the rectangle is:

D. 6. Correct to the nearest tenth, the perimeter of the shaded portion of the rectangle is: Trigonometry PART 1 Machine Scored Answers are on the back page Full, worked out solutions can be found at MATH 0-1 PRACTICE EXAM 1. An angle in standard position θ has reference angle of 0 with sinθ

More information

USE OF MATLAB TO UNDERSTAND BASIC MATHEMATICS

USE OF MATLAB TO UNDERSTAND BASIC MATHEMATICS USE OF MATLAB TO UNDERSTAND BASIC MATHEMATICS Sanjay Gupta P. G. Department of Mathematics, Dev Samaj College For Women, Punjab ( India ) ABSTRACT In this paper, we talk about the ways in which computer

More information

MECH : a Primer for Matlab s ode suite of functions

MECH : a Primer for Matlab s ode suite of functions Objectives MECH 4-563: a Primer for Matlab s ode suite of functions. Review the fundamentals of initial value problems and why numerical integration methods are needed.. Introduce the ode suite of numerical

More information

Lecture 25: The Sine and Cosine Functions. tan(x) 1+y

Lecture 25: The Sine and Cosine Functions. tan(x) 1+y Lecture 5: The Sine Cosine Functions 5. Denitions We begin b dening functions s : c : ; i! R ; i! R b Note that 8 >< q tan(x) ; if x s(x) + tan (x) ; >: ; if x 8 >< q ; if x c(x) + tan (x) ; >: 0; if x.

More information

f(x) f(a) Limit definition of the at a point in slope notation.

f(x) f(a) Limit definition of the at a point in slope notation. Lesson 9: Orinary Derivatives Review Hanout Reference: Brigg s Calculus: Early Transcenentals, Secon Eition Topics: Chapter 3: Derivatives, p. 126-235 Definition. Limit Definition of Derivatives at a point

More information

MA 8019: Numerical Analysis I Solution of Nonlinear Equations

MA 8019: Numerical Analysis I Solution of Nonlinear Equations MA 8019: Numerical Analysis I Solution of Nonlinear Equations Suh-Yuh Yang ( 楊肅煜 ) Department of Mathematics, National Central University Jhongli District, Taoyuan City 32001, Taiwan syyang@math.ncu.edu.tw

More information

University of Delaware Department of Mathematical Sciences Math 353 Engineering Mathematics III 06S C. Bacuta

University of Delaware Department of Mathematical Sciences Math 353 Engineering Mathematics III 06S C. Bacuta University of Delaware Department of Mathematical Sciences Math 353 Engineering Mathematics III 06S C. Bacuta Homework 4: Due Friday, 0/4/06, 10:00am Part I) (1) Section., Problems #3(a,d), 9, 11. () Apply

More information

5. Hand in the entire exam booklet and your computer score sheet.

5. Hand in the entire exam booklet and your computer score sheet. WINTER 2016 MATH*2130 Final Exam Last name: (PRINT) First name: Student #: Instructor: M. R. Garvie 19 April, 2016 INSTRUCTIONS: 1. This is a closed book examination, but a calculator is allowed. The test

More information

Math Practice Exam 3 - solutions

Math Practice Exam 3 - solutions Math 181 - Practice Exam 3 - solutions Problem 1 Consider the function h(x) = (9x 2 33x 25)e 3x+1. a) Find h (x). b) Find all values of x where h (x) is zero ( critical values ). c) Using the sign pattern

More information

Core Mathematics C3. You must have: Mathematical Formulae and Statistical Tables (Pink)

Core Mathematics C3. You must have: Mathematical Formulae and Statistical Tables (Pink) Write your name here Surname Other names Pearson Edexcel GCE Centre Number Core Mathematics C3 Advanced Candidate Number Tuesday 20 June 2017 Afternoon Time: 1 hour 30 minutes Paper Reference 6665/01 You

More information

Formulas to remember

Formulas to remember Complex numbers Let z = x + iy be a complex number The conjugate z = x iy Formulas to remember The real part Re(z) = x = z+z The imaginary part Im(z) = y = z z i The norm z = zz = x + y The reciprocal

More information

Intermediate Algebra Chapter 12 Review

Intermediate Algebra Chapter 12 Review Intermediate Algebra Chapter 1 Review Set up a Table of Coordinates and graph the given functions. Find the y-intercept. Label at least three points on the graph. Your graph must have the correct shape.

More information

Name Date Period. Calculater Permitted MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

Name Date Period. Calculater Permitted MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. PreAP Precalculus Spring Final Exam Review Name Date Period Calculater Permitted MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Simplify the expression.

More information

Core Mathematics 3 Differentiation

Core Mathematics 3 Differentiation http://kumarmaths.weebly.com/ Core Mathematics Differentiation C differentiation Page Differentiation C Specifications. By the end of this unit you should be able to : Use chain rule to find the derivative

More information

MATHia Unit MATHia Workspace Overview TEKS

MATHia Unit MATHia Workspace Overview TEKS 1 Function Overview Searching for Patterns Exploring and Analyzing Patterns Comparing Familiar Function Representations Students watch a video about a well-known mathematician creating an expression for

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

a x a y = a x+y a x a = y ax y (a x ) r = a rx and log a (xy) = log a (x) + log a (y) log a ( x y ) = log a(x) log a (y) log a (x r ) = r log a (x).

a x a y = a x+y a x a = y ax y (a x ) r = a rx and log a (xy) = log a (x) + log a (y) log a ( x y ) = log a(x) log a (y) log a (x r ) = r log a (x). You should prepare the following topics for our final exam. () Pre-calculus. (2) Inverses. (3) Algebra of Limits. (4) Derivative Formulas and Rules. (5) Graphing Techniques. (6) Optimization (Maxima and

More information

Pre AP Algebra. Mathematics Standards of Learning Curriculum Framework 2009: Pre AP Algebra

Pre AP Algebra. Mathematics Standards of Learning Curriculum Framework 2009: Pre AP Algebra Pre AP Algebra Mathematics Standards of Learning Curriculum Framework 2009: Pre AP Algebra 1 The content of the mathematics standards is intended to support the following five goals for students: becoming

More information

Differentiability, Computing Derivatives, Trig Review

Differentiability, Computing Derivatives, Trig Review Unit #3 : Differentiability, Computing Derivatives, Trig Review Goals: Determine when a function is ifferentiable at a point Relate the erivative graph to the the graph of an original function Compute

More information

correlated to the Indiana Academic Standards for Precalculus CC2

correlated to the Indiana Academic Standards for Precalculus CC2 correlated to the Indiana Academic Standards for Precalculus CC2 6/2003 2003 Introduction to Advanced Mathematics 2003 by Richard G. Brown Advanced Mathematics offers comprehensive coverage of precalculus

More information

Grade 11 or 12 Pre-Calculus

Grade 11 or 12 Pre-Calculus Grade 11 or 12 Pre-Calculus Strands 1. Polynomial, Rational, and Radical Relationships 2. Trigonometric Functions 3. Modeling with Functions Strand 1: Polynomial, Rational, and Radical Relationships Standard

More information

As we know, the three basic trigonometric functions are as follows: Figure 1

As we know, the three basic trigonometric functions are as follows: Figure 1 Trigonometry Basic Functions As we know, the three basic trigonometric functions are as follows: sin θ = cos θ = opposite hypotenuse adjacent hypotenuse tan θ = opposite adjacent Where θ represents an

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

Trigonometric Identities and Equations

Trigonometric Identities and Equations Chapter 4 Trigonometric Identities and Equations Trigonometric identities describe equalities between related trigonometric expressions while trigonometric equations ask us to determine the specific values

More information

Math 409/509 (Spring 2011)

Math 409/509 (Spring 2011) Math 409/509 (Spring 2011) Instructor: Emre Mengi Study Guide for Homework 2 This homework concerns the root-finding problem and line-search algorithms for unconstrained optimization. Please don t hesitate

More information

Next, we ll use all of the tools we ve covered in our study of trigonometry to solve some equations.

Next, we ll use all of the tools we ve covered in our study of trigonometry to solve some equations. Section 6.3 - Solving Trigonometric Equations Next, we ll use all of the tools we ve covered in our study of trigonometry to solve some equations. These are equations from algebra: Linear Equation: Solve:

More information

Honors Precalculus Semester 1 Review

Honors Precalculus Semester 1 Review Honors Precalculus Semester 1 Review Name: UNIT 1 1. For each sequence, find the explicit and recursive formulas. Show your work. a) 45, 39, 33, 27 b) 8 3, 16 9 32 27, 64 81 Explicit formula: Explicit

More information

Level 1 Advanced Mathematics Final Exam June 19, 2007

Level 1 Advanced Mathematics Final Exam June 19, 2007 Level Advanced Mathematics Final Exam June 9, 007 NAME: Instructions WRITE ANSWERS IN THE SPACES PROVIDED AND SHOW ALL WORK. Partial credit will not be given if work is not shown. Ask for extra paper if

More information

Grade Math (HL) Curriculum

Grade Math (HL) Curriculum Grade 11-12 Math (HL) Curriculum Unit of Study (Core Topic 1 of 7): Algebra Sequences and Series Exponents and Logarithms Counting Principles Binomial Theorem Mathematical Induction Complex Numbers Uses

More information

Differentiability, Computing Derivatives, Trig Review. Goals:

Differentiability, Computing Derivatives, Trig Review. Goals: Secants vs. Derivatives - Unit #3 : Goals: Differentiability, Computing Derivatives, Trig Review Determine when a function is ifferentiable at a point Relate the erivative graph to the the graph of an

More information

2. Theory of the Derivative

2. Theory of the Derivative 2. Theory of the Derivative 2.1 Tangent Lines 2.2 Definition of Derivative 2.3 Rates of Change 2.4 Derivative Rules 2.5 Higher Order Derivatives 2.6 Implicit Differentiation 2.7 L Hôpital s Rule 2.8 Some

More information

1.3 Basic Trigonometric Functions

1.3 Basic Trigonometric Functions www.ck1.org Chapter 1. Right Triangles and an Introduction to Trigonometry 1. Basic Trigonometric Functions Learning Objectives Find the values of the six trigonometric functions for angles in right triangles.

More information

5 Trigonometric Functions

5 Trigonometric Functions 5 Trigonometric Functions 5.1 The Unit Circle Definition 5.1 The unit circle is the circle of radius 1 centered at the origin in the xyplane: x + y = 1 Example: The point P Terminal Points (, 6 ) is on

More information

Math 106 Calculus 1 Topics for first exam

Math 106 Calculus 1 Topics for first exam Math 06 Calculus Topics for first exam Precalculus = what comes before its. Lines and their slopes: slope= rise over run = (change in y-value)/(corresponding change in x value) y y 0 slope-intercept: y

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

Calculus & Analytic Geometry I

Calculus & Analytic Geometry I Functions Form the Foundation What is a function? A function is a rule that assigns to each element x (called the input or independent variable) in a set D exactly one element f(x) (called the ouput or

More information

Math 131 Week-in-Review #11 (Final Exam Review: All previous sections as well as sections 5.5, 6.1, 6.5, and 6.7)

Math 131 Week-in-Review #11 (Final Exam Review: All previous sections as well as sections 5.5, 6.1, 6.5, and 6.7) Math 131 Week-in-Review #11 (Final Exam Review: All previous sections as well as sections 5.5, 6.1, 6.5, and 6.7) Note: This collection of questions is intended to be a brief overview of the exam material

More information

TRIGONOMETRIC FUNCTIONS. Copyright Cengage Learning. All rights reserved.

TRIGONOMETRIC FUNCTIONS. Copyright Cengage Learning. All rights reserved. 12 TRIGONOMETRIC FUNCTIONS Copyright Cengage Learning. All rights reserved. 12.2 The Trigonometric Functions Copyright Cengage Learning. All rights reserved. The Trigonometric Functions and Their Graphs

More information

Numerical Methods I Solving Nonlinear Equations

Numerical Methods I Solving Nonlinear Equations Numerical Methods I Solving Nonlinear Equations Aleksandar Donev Courant Institute, NYU 1 donev@courant.nyu.edu 1 MATH-GA 2011.003 / CSCI-GA 2945.003, Fall 2014 October 16th, 2014 A. Donev (Courant Institute)

More information

MATH 1241 FINAL EXAM FALL 2012 Part I, No Calculators Allowed

MATH 1241 FINAL EXAM FALL 2012 Part I, No Calculators Allowed MATH 11 FINAL EXAM FALL 01 Part I, No Calculators Allowed 1. Evaluate the limit: lim x x x + x 1. (a) 0 (b) 0.5 0.5 1 Does not exist. Which of the following is the derivative of g(x) = x cos(3x + 1)? (a)

More information

Pre-Calculus II: Trigonometry Exam 1 Preparation Solutions. Math&142 November 8, 2016

Pre-Calculus II: Trigonometry Exam 1 Preparation Solutions. Math&142 November 8, 2016 Pre-Calculus II: Trigonometry Exam 1 Preparation Solutions Math&1 November 8, 016 1. Convert the angle in degrees to radian. Express the answer as a multiple of π. a 87 π rad 180 = 87π 180 rad b 16 π rad

More information

Welcome to AP Calculus!!!

Welcome to AP Calculus!!! Welcome to AP Calculus!!! In preparation for next year, you need to complete this summer packet. This packet reviews & expands upon the concepts you studied in Algebra II and Pre-calculus. Make sure you

More information

SESSION 6 Trig. Equations and Identities. Math 30-1 R 3. (Revisit, Review and Revive)

SESSION 6 Trig. Equations and Identities. Math 30-1 R 3. (Revisit, Review and Revive) SESSION 6 Trig. Equations and Identities Math 30-1 R 3 (Revisit, Review and Revive) 1 P a g e 2 P a g e Mathematics 30-1 Learning Outcomes Specific Outcome 5: Solve, algebraically and graphically, first

More information

MAT137 - Term 2, Week 5

MAT137 - Term 2, Week 5 MAT137 - Term 2, Week 5 Test 3 is tomorrow, February 3, at 4pm. See the course website for details. Today we will: Talk more about integration by parts. Talk about integrating certain combinations of trig

More information

Optimization and Calculus

Optimization and Calculus Optimization and Calculus To begin, there is a close relationship between finding the roots to a function and optimizing a function. In the former case, we solve for x. In the latter, we solve: g(x) =

More information

For a semi-circle with radius r, its circumfrence is πr, so the radian measure of a semi-circle (a straight line) is

For a semi-circle with radius r, its circumfrence is πr, so the radian measure of a semi-circle (a straight line) is Radian Measure Given any circle with radius r, if θ is a central angle of the circle and s is the length of the arc sustained by θ, we define the radian measure of θ by: θ = s r For a semi-circle with

More information

SECTION A. f(x) = ln(x). Sketch the graph of y = f(x), indicating the coordinates of any points where the graph crosses the axes.

SECTION A. f(x) = ln(x). Sketch the graph of y = f(x), indicating the coordinates of any points where the graph crosses the axes. SECTION A 1. State the maximal domain and range of the function f(x) = ln(x). Sketch the graph of y = f(x), indicating the coordinates of any points where the graph crosses the axes. 2. By evaluating f(0),

More information

Calculus I. George Voutsadakis 1. LSSU Math 151. Lake Superior State University. 1 Mathematics and Computer Science

Calculus I. George Voutsadakis 1. LSSU Math 151. Lake Superior State University. 1 Mathematics and Computer Science Calculus I George Voutsadakis 1 1 Mathematics and Computer Science Lake Superior State University LSSU Math 151 George Voutsadakis (LSSU) Calculus I November 2014 1 / 67 Outline 1 Limits Limits, Rates

More information

ADDITIONAL MATHEMATICS

ADDITIONAL MATHEMATICS ADDITIONAL MATHEMATICS GCE Ordinary Level (Syllabus 4018) CONTENTS Page NOTES 1 GCE ORDINARY LEVEL ADDITIONAL MATHEMATICS 4018 2 MATHEMATICAL NOTATION 7 4018 ADDITIONAL MATHEMATICS O LEVEL (2009) NOTES

More information

Prerequisites for Math 212: Differential Equations

Prerequisites for Math 212: Differential Equations Prerequisites for Math 212: Differential Equations Michael H. Mertens February 15, 2016 Introduction These notes are intended to briefly recall most of the prerequisites for a course on differential equation

More information

DRAFT - Math 101 Lecture Note - Dr. Said Algarni

DRAFT - Math 101 Lecture Note - Dr. Said Algarni 3 Differentiation Rules 3.1 The Derivative of Polynomial and Exponential Functions In this section we learn how to differentiate constant functions, power functions, polynomials, and exponential functions.

More information

An Overly Simplified and Brief Review of Differential Equation Solution Methods. 1. Some Common Exact Solution Methods for Differential Equations

An Overly Simplified and Brief Review of Differential Equation Solution Methods. 1. Some Common Exact Solution Methods for Differential Equations An Overly Simplified and Brief Review of Differential Equation Solution Methods We will be dealing with initial or boundary value problems. A typical initial value problem has the form y y 0 y(0) 1 A typical

More information

Math 5 Trigonometry Chapter 4 Test Fall 08 Name Show work for credit. Write all responses on separate paper. Do not use a calculator.

Math 5 Trigonometry Chapter 4 Test Fall 08 Name Show work for credit. Write all responses on separate paper. Do not use a calculator. Math 5 Trigonometry Chapter Test Fall 08 Name Show work for credit. Write all responses on separate paper. Do not use a calculator. 23 1. Consider an arclength of t = travelled counter-clockwise around

More information

Numerical Analysis Fall. Roots: Open Methods

Numerical Analysis Fall. Roots: Open Methods Numerical Analysis 2015 Fall Roots: Open Methods Open Methods Open methods differ from bracketing methods, in that they require only a single starting value or two starting values that do not necessarily

More information