International Journal of Mathematical Archive-5(8), 2014, Available online through ISSN

Size: px
Start display at page:

Download "International Journal of Mathematical Archive-5(8), 2014, Available online through ISSN"

Transcription

1 International Journal of Mathematical Archive-5(8), 014, Available online through ISSN SIMULATION OF LAPLACE TRANSFORMS WITH PYTHON Gajanan Dhanorkar* and Deepak Sonawane VPCOE, Vidyanagari MIDC, Baramati, Pune, (M.S.) , India. (Received On: ; Revised & Accepted On: ) ABSTRACT In this paper we have given applications of Laplace Transform to analyses signals in time domain to frequency domain using python, solving differential equations with initial conditions and computing the results in graphical format. This technique found useful and create the interest among the students at large. 1. INTRODUCTION Python is very fleible and open source nature, it is widely accepted language in scientific computing community from several years. Different software tools are available for computing mathematical equations such as MATLAB [1], Mathematica, Mapal, C & C++, etc. The major drawback of MATLAB is that it is not free and not open source which make difficult for researcher to share the coding. In the teaching learning paradigm of mathematics it becomes absolutely essential to display the graphical format of the equations and to understand its physical interpretation. In this contet we have attempted to use the power and fleibility of open source, general purpose programming language, Python[]. Python is used with its etension modules NumPy [3], SciPy [4] and Matplotlib [5], and now Sage [6], which adds more power to this scientific computing language to display the graphical results.. LAPLACE TRANSFORM Laplace transform is an integral transform and is a powerful technique to solve differential equations. Particularly useful in solving linear ordinary differential equations (ODE). It finds very wide applications in various areas of physics, electrical engineering, control engineering, optics, mathematics and signal processing. The Laplace transform can be interpreted as a transformation from the time domain where inputs and outputs are functions of time to the frequency domain where inputs and outputs are functions of comple angular frequency. The sufficient condition for any function of time f(t) to be Laplace transformable, it must satisfy the following Dirichlet conditions [7]: 1. f(t) must be piecewise continuous which means that it must be single valued but can have a finite number of finite isolated discontinuities for t > 0. ct. f(t) must be eponential order which means that f(t) must remain less than Me as t approaches to, where S is a positive constant and c is a real positive number. Definition.1: A Laplace Transform of f(t) is F(s) defined by and its inverse is We are using python for finding Lapalace Transform. 3. PRELIMINARIES st L{ f()} t = F() s = e f() t d International Journal of Mathematical Archive- 5(8), August L 1 { Fs ( )} = ft ( ) 3.1. Why Python? i) Very rich scientific computing libraries (a bit less than Matlab, though). ii) Well thought out language, allowing to write very readable and well structured code: we code what we think. iii) Many libraries for other tasks than scientific computing (web server management, serial port access, etc.) iv) Free and open-source software, widely spread, with a vibrant community. Corresponding Author: Gajanan Dhanorkar* 0

2 Gajanan Dhanorkar* and Deepak Sonawane/ Simulation of Laplace Transforms with Python / IJMA- 5(8), August Algebra: using SymPy First we have to import Sympy as "from sympy import *" and define symbol as " = Symbol ('')" To find partial fraction decomposition of 1 ( + + 1)( 1) >>>from sympy import * >>> = Symbol('') >>> apart(1/( (**+*+1)*(**-1) ), ) (perform partial fraction decomposition.) -1/(8*( + 1)) - 1/(4*( + 1)**) - 1/(*( + 1)**3) + 1/(8*( - 1)) 3... To combine fraction of ( + 1) 4( + 1) ( + 1) 8( 1) >>> together(-1/(8*( + 1)) - 1/(4*( + 1)**) - 1/(*( + 1)**3) + 1/(8*( - 1))) (To combine epressions) (-4* - ( - 1)*( + 1)** - *( - 1)*( + 1) + ( + 1)**3 + 4)/(8*( - 1)*( + 1)**3) Epand and separate Find epansion of 3 ( a b) >>> a, b = symbols('a b') >>> ((a-b)**3).epand() a**3-3*a***b + 3*a*b** - b** Find epansion of ( a+ b)( c+ d) >>> separate((a+b)*(c+d)).epand() ac + ad + bc + bd 3.3. Calculus: using SymPy To find limit of the function: sin lim 0 >>> limit(sin()/,, 0) To find limit of lim >>> limit((1/)**(1/),, oo) Derivative of Functions: To find derivative of cos >>> diff(cos(**3), ) -3****sin(**3) To find derivative of >>> diff(sin(**3), ) 3****cos(**3) 3 sin 1 is is 014, IJMA. All Rights Reserved 31

3 Gajanan Dhanorkar* and Deepak Sonawane/ Simulation of Laplace Transforms with Python / IJMA- 5(8), August Series representation of the function: To find series epansion of cos upto 14 >>> cos().series(, 0, 14) ( series representation up to 14.) 1 - **/ + **4/4 - **6/70 + **8/ **10/ **1/ O(**14) To find series epansion of sin upto 14 >>> sin().series(, 0, 14) ( series representation up to 14.) 1 - **/ + **4/4 - **6/70 + **8/ **10/ **1/ O(**14) 3.6. Integration: To find, we can write in python as ( + + 4) d >>> integrate(** + * + 4, ) **3/3 + ** + 4* To find, we can write in python as 5 e sin d >>> integrate(5*** * ep() * sin(), ) 5****ep()*sin()/ - 5****ep()*cos()/ + 5**ep()*cos() - 5*ep()*sin()/ -5*ep()*cos()/ To find π 0 cos e d, we can write in python as >>> integrate (cos()***ep(), (, 0, pi)) -3/5 + 3*ep (pi)/ To find 0 cos e d >>> integrate(cos()***ep(-), (, 0, oo)) 3/ Differential Equation: To solve Differential equation, we can write in python as d f ( ) + 9 f( ) = 0 d First we import, >>> from sympy import Function, dsolve, Eq, Derivative, sin, cos >>> from sympy.abc import >>> f = Function( ' f ' ) >>> dsolve(derivative(f(),,)+9*f(), f()) f() == C1*cos(3*) + C*sin(3*) Solve '' ' t y() t y() t + yt () = e >>> dsolve (Derivative(y(t),t,t)-*Derivative(y(t),t)+ y(t)-ep(*t), y(t)) y(t) = (c1 + ct)e**t + e**t Note: Also we can write above equation in following way diffeq = Eq(y(t).diff(t,t)-*y(t).diff(t)+ y(t), ep(*t)) 014, IJMA. All Rights Reserved 3

4 Gajanan Dhanorkar* and Deepak Sonawane/ Simulation of Laplace Transforms with Python / IJMA- 5(8), August LAPLACE TRANSFORM OF STANDARD FUNCTIONS 4.1. To find L.T. of f(t) = 1 >>> from sympy.integrals import laplace_ transform >>> from sympy.abc import t, s, a >>> laplace_ transform(1, t, s) Outpu: 1, 0, True s 4.. To find L.T. of f(t) = t >>> laplace_ transform(t, t, s) 1, 0, True s 4.3. To find L.T. of c >>> laplace _transform(t**a, t, s) (s**(-a)*gamma(a+1) / s, 0, -re (a) <1) 4.4. To find L.T. of sint >>> laplace _transform(sin(t), t, s) (1/s+1; 0; True) f( t) = t + tsint 4.5. To find L.T. of >>> laplace _transform(t** + t*sin(t), t, s) s s +, 0, True ( s + 1) s 3 5. INVERSE LAPLACE TRANSFORM 5.1. Inverse L.T. of Fs () = e as >>> from sympy.integrals.transforms import inverse_laplace_transform >>> from sympy import ep, Symbol >>> from sympy.abc import s, t >>> a = Symbol('a', positive=true) >>> inverse_laplace_transform(ep(-a*s)/s, s, t) Heaviside(-a + t) 5.. Inverse L.T. of 1 Fs () = s 1 >>> inverse_laplace_transform(1/(s-1), s, t) t e 5.3. Inverse L.T. of s Fs () = s + 1 >>>inverse_laplace_transform(s/(s**+1), s, t) cos(t) 014, IJMA. All Rights Reserved 33

5 Gajanan Dhanorkar* and Deepak Sonawane/ Simulation of Laplace Transforms with Python / IJMA- 5(8), August Inverse L.T. of 1 Fs () = ss ( + 1) >>> inverse_laplace_transform(1/(s*(s**+1)), s, t) (cos( t) 1) 6. APPLICATIONS TO DIFFERENTIAL EQUATIONS y() t y() t + yt () = e, yt () = y() t = 0 (1) Slove Differential equation '' ' t ' >>> y(s)=laplace_transform(derivative(y(t),t,t)-*derivative(y(t),t)+y(t)-ep(*t), t, s) d d 1 s Lt[ yt ()]( s) Lt yt () ( s) Lt yt () () s,, 1 dt + dt s >>> f = 1/((s-)*(s-1)**) >>> inverse_laplace_transform(f, s, t) ( e e te ) t t t 7. GRAPH Graph of solution of above differential equation (1) using python coding is from pylab import * t=arange(0,5,0.01) q=ep(*t)-ep(t)-t*ep(t) plot(t,q,'r') label('time') ylabel(' Charge in ') title ('DE Solution') show () REFERENCES [1] The Math Works MATLAB Release R010b. The Math-Works, Natick, Massachusetts. [] Guido van Rossum and Fred L. Drake Python Language Reference Manual. Network Theory Limited, Bristol, UK. [3] Travis Oliphant Guide To NumPy.Trelgol Publishing, USA. [4] Eric Jones, Travis Oliphant, Pearu Peterson, et al SciPy: Open source scientific tools for Python , IJMA. All Rights Reserved 34

6 Gajanan Dhanorkar* and Deepak Sonawane/ Simulation of Laplace Transforms with Python / IJMA- 5(8), August-014. [5] John D. Hunter Matplotlib: A D graphics environment. Computing In Science and Engineering, 9(3): [6] Sage for Power Users by William Stein. [7] A. D. Poularikas, The Transforms and Applications Hand- book (McGraw Hill, 000), nd ed. [8] Higher Engineering Mathematics, B.V.Ramana. Source of support: Nil, Conflict of interest: None Declared [Copy right 014. This is an Open Access article distributed under the terms of the International Journal of Mathematical Archive (IJMA), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.] 014, IJMA. All Rights Reserved 35

A Glimpse at Scipy FOSSEE. June Abstract This document shows a glimpse of the features of Scipy that will be explored during this course.

A Glimpse at Scipy FOSSEE. June Abstract This document shows a glimpse of the features of Scipy that will be explored during this course. A Glimpse at Scipy FOSSEE June 010 Abstract This document shows a glimpse of the features of Scipy that will be explored during this course. 1 Introduction SciPy is open-source software for mathematics,

More information

Chemical Engineering 436 Laplace Transforms (1)

Chemical Engineering 436 Laplace Transforms (1) Chemical Engineering 436 Laplace Transforms () Why Laplace Transforms?? ) Converts differential equations to algebraic equations- facilitates combination of multiple components in a system to get the total

More information

37. f(t) sin 2t cos 2t 38. f(t) cos 2 t. 39. f(t) sin(4t 5) 40.

37. f(t) sin 2t cos 2t 38. f(t) cos 2 t. 39. f(t) sin(4t 5) 40. 28 CHAPTER 7 THE LAPLACE TRANSFORM EXERCISES 7 In Problems 8 use Definition 7 to find {f(t)} 2 3 4 5 6 7 8 9 f (t),, f (t) 4,, f (t) t,, f (t) 2t,, f (t) sin t,, f (t), cos t, t t t 2 t 2 t t t t t t t

More information

Calculus w/applications Prerequisite Packet Paint Branch High School Math Department

Calculus w/applications Prerequisite Packet Paint Branch High School Math Department Updated 6/014 The problems in this packet are designed to help you review topics from previous math courses that are important to your success in Calculus with Applications. It is important that you take

More information

International Journal of Mathematical Archive-8(5), 2017, Available online through ISSN

International Journal of Mathematical Archive-8(5), 2017, Available online through   ISSN International Journal of Mathematical Archive-8(5), 07, 5-55 Available online through wwwijmainfo ISSN 9 5046 GENERALIZED gic-rate SEQUENCE SPACES OF DIFFERENCE SEQUENCE OF MODAL INTERVAL NUMBERS DEFINED

More information

MATH 251 Examination II April 7, 2014 FORM A. Name: Student Number: Section:

MATH 251 Examination II April 7, 2014 FORM A. Name: Student Number: Section: MATH 251 Examination II April 7, 2014 FORM A Name: Student Number: Section: This exam has 12 questions for a total of 100 points. In order to obtain full credit for partial credit problems, all work must

More information

Available online through ISSN

Available online through   ISSN International Research Journal of Pure Algebra-4(11), 2014, 631-635 Available online through www.rjpa.info ISSN 2248 9037 MINIMAL αrω-open SETS AND MAXIMAL αrω-closed SETS IN TOPOLOGICAL SPACES R. S. Wali*

More information

International Journal of Mathematical Archive-7(1), 2016, Available online through ISSN

International Journal of Mathematical Archive-7(1), 2016, Available online through   ISSN International Journal of Mathematical Archive-7(1), 2016, 200-208 Available online through www.ijma.info ISSN 2229 5046 ON ANTI FUZZY IDEALS OF LATTICES DHANANI S. H.* Department of Mathematics, K. I.

More information

International Journal of Mathematical Archive-7(2), 2016, Available online through ISSN

International Journal of Mathematical Archive-7(2), 2016, Available online through  ISSN International Journal of Mathematical Archive-7(2), 2016, 75-79 Available online through www.ijma.info ISSN 2229 5046 FORECASTING MODEL BASED ON FUZZY TIME SERIES WITH FIRST ORDER DIFFERENCING ANIL GOTMARE*

More information

Laplace Transform. Chapter 4

Laplace Transform. Chapter 4 Chapter 4 Laplace Transform It s time to stop guessing solutions and find a systematic way of finding solutions to non homogeneous linear ODEs. We define the Laplace transform of a function f in the following

More information

Using the TI-92+ : examples

Using the TI-92+ : examples Using the TI-9+ : eamples Michel Beaudin École de technologie supérieure 1100, rue Notre-Dame Ouest Montréal (Québec) Canada, H3C 1K3 mbeaudin@seg.etsmtl.ca 1- Introduction We incorporated the use of 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

AP Calculus (AB/BC) Prerequisite Packet Paint Branch High School Math Department

AP Calculus (AB/BC) Prerequisite Packet Paint Branch High School Math Department Updated 6/015 The problems in this packet are designed to help ou review topics from previous math courses that are important to our success in AP Calculus AB / BC. It is important that ou take time during

More information

Question: Total. Points:

Question: Total. Points: MATH 308 May 23, 2011 Final Exam Name: ID: Question: 1 2 3 4 5 6 7 8 9 Total Points: 0 20 20 20 20 20 20 20 20 160 Score: There are 9 problems on 9 pages in this exam (not counting the cover sheet). Make

More information

Limits, Continuity, and Differentiability Solutions

Limits, Continuity, and Differentiability Solutions Limits, Continuity, and Differentiability Solutions We have intentionally included more material than can be covered in most Student Study Sessions to account for groups that are able to answer the questions

More information

Linear differential equation Expansion at irregular singular point

Linear differential equation Expansion at irregular singular point Linear differential equation Epansion at irregular singular point Epansion around 0 for y'' 1 y 0. Eample in Bender & Orszag Section.4. Initial change of variable y e s If we replace y by e s : y[_]:=ep[s[]]

More information

Math 307 Lecture 19. Laplace Transforms of Discontinuous Functions. W.R. Casper. Department of Mathematics University of Washington.

Math 307 Lecture 19. Laplace Transforms of Discontinuous Functions. W.R. Casper. Department of Mathematics University of Washington. Math 307 Lecture 19 Laplace Transforms of Discontinuous Functions W.R. Casper Department of Mathematics University of Washington November 26, 2014 Today! Last time: Step Functions This time: Laplace Transforms

More information

Instructor s Resource Manual EIGHTH EDITION. and. A First Course in Differential Eqautions TENTH EDITION. Dennis Zill. Warren S. Wright.

Instructor s Resource Manual EIGHTH EDITION. and. A First Course in Differential Eqautions TENTH EDITION. Dennis Zill. Warren S. Wright. Instructor s Resource Manual Differential Equations with Boundary Value Problems EIGHTH EDITION and A First Course in Differential Eqautions TENTH EDITION Dennis Zill Warren S. Wright Prepared by Warren

More information

Guide for Ph.D. Area Examination in Applied Mathematics

Guide for Ph.D. Area Examination in Applied Mathematics Guide for Ph.D. Area Examination in Applied Mathematics (for graduate students in Purdue University s School of Mechanical Engineering) (revised Fall 2016) This is a 3 hour, closed book, written examination.

More information

Module 39: Periodic Forcing Functions

Module 39: Periodic Forcing Functions Module 39: Periodic Forcing Functions For a variety of reasons, periodic functions arise in natural phenomena, either as forcing functions for systems or as states of systems. They arise so often that

More information

AP Calculus. Particle Motion. Student Handout

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

More information

Purdue University Study Guide for MA Credit Exam

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

More information

MATH The Derivative as a Function - Section 3.2. The derivative of f is the function. f x h f x. f x lim

MATH The Derivative as a Function - Section 3.2. The derivative of f is the function. f x h f x. f x lim MATH 90 - The Derivative as a Function - Section 3.2 The derivative of f is the function f x lim h 0 f x h f x h for all x for which the limit exists. The notation f x is read "f prime of x". Note that

More information

Ordinary Differential Equations

Ordinary Differential Equations Ordinary Differential Equations for Engineers and Scientists Gregg Waterman Oregon Institute of Technology c 2017 Gregg Waterman This work is licensed under the Creative Commons Attribution 4.0 International

More information

Math 353 Lecture Notes Week 6 Laplace Transform: Fundamentals

Math 353 Lecture Notes Week 6 Laplace Transform: Fundamentals Math 353 Lecture Notes Week 6 Laplace Transform: Fundamentals J. Wong (Fall 217) October 7, 217 What did we cover this week? Introduction to the Laplace transform Basic theory Domain and range of L Key

More information

Lecture Notes for Math 251: ODE and PDE. Lecture 22: 6.5 Dirac Delta and Laplace Transforms

Lecture Notes for Math 251: ODE and PDE. Lecture 22: 6.5 Dirac Delta and Laplace Transforms Lecture Notes for Math : ODE and PDE. Lecture : 6. Dirac Delta and Laplace Transforms Shawn D. Ryan Spring 0 Dirac Delta and the Laplace Transform Last Time: We studied differential equations with discontinuous

More information

APPM 2360: Midterm exam 3 April 19, 2017

APPM 2360: Midterm exam 3 April 19, 2017 APPM 36: Midterm exam 3 April 19, 17 On the front of your Bluebook write: (1) your name, () your instructor s name, (3) your lecture section number and (4) a grading table. Text books, class notes, cell

More information

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

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

More information

Calculus Module C09. Delta Process. Copyright This publication The Northern Alberta Institute of Technology All Rights Reserved.

Calculus Module C09. Delta Process. Copyright This publication The Northern Alberta Institute of Technology All Rights Reserved. Calculus Module C09 Delta Process Copyright This publication The Northern Alberta Institute of Technology 00. All Rights Reserved. LAST REVISED April, 009 Delta Process Statement of Prerequisite Skills

More information

International Journal of Mathematical Archive-5(10), 2014, Available online through ISSN

International Journal of Mathematical Archive-5(10), 2014, Available online through   ISSN International Journal of Mathematical Archive-5(10), 2014, 217-224 Available online through www.ijma.info ISSN 2229 5046 COMMON FIXED POINT OF WEAKLY COMPATIBLE MAPS ON INTUITIONISTIC FUZZY METRIC SPACES

More information

Advanced Higher Mathematics Course Assessment Specification

Advanced Higher Mathematics Course Assessment Specification Advanced Higher Mathematics Course Assessment Specification Valid from August 015 This edition: April 013, version 1.0 This specification may be reproduced in whole or in part for educational purposes

More information

dx dx x sec tan d 1 4 tan 2 2 csc d 2 ln 2 x 2 5x 6 C 2 ln 2 ln x ln x 3 x 2 C Now, suppose you had observed that x 3

dx dx x sec tan d 1 4 tan 2 2 csc d 2 ln 2 x 2 5x 6 C 2 ln 2 ln x ln x 3 x 2 C Now, suppose you had observed that x 3 CHAPTER 8 Integration Techniques, L Hôpital s Rule, and Improper Integrals Section 8. Partial Fractions Understand the concept of a partial fraction decomposition. Use partial fraction decomposition with

More information

Calculus with Mathematica Labs at Riga Technical University

Calculus with Mathematica Labs at Riga Technical University 5th WSEAS / IASME International Conference on ENGINEERING EDUCATION (EE'08), Heraklion, Greece, July -4, 008 Calculus with Mathematica Labs at Riga Technical University V KREMENECKIS Department of Engineering

More information

Equations involving an unknown function and its derivatives. Physical laws encoded in differential equations INTRODUCTION TO DIFFERENTIAL EQUATIONS

Equations involving an unknown function and its derivatives. Physical laws encoded in differential equations INTRODUCTION TO DIFFERENTIAL EQUATIONS INTRODUCTION TO DIFFERENTIAL EQUATIONS Equations involving an unknown function and its derivatives e. : +f = e solution for f specified by equation + initial data [e.g., value of f at a point] Physical

More information

The Laplace Transform and the IVP (Sect. 6.2).

The Laplace Transform and the IVP (Sect. 6.2). The Laplace Transform and the IVP (Sect..2). Solving differential equations using L ]. Homogeneous IVP. First, second, higher order equations. Non-homogeneous IVP. Recall: Partial fraction decompositions.

More information

Solve Wave Equation from Scratch [2013 HSSP]

Solve Wave Equation from Scratch [2013 HSSP] 1 Solve Wave Equation from Scratch [2013 HSSP] Yuqi Zhu MIT Department of Physics, 77 Massachusetts Ave., Cambridge, MA 02139 (Dated: August 18, 2013) I. COURSE INFO Topics Date 07/07 Comple number, Cauchy-Riemann

More information

Math 266 Midterm Exam 2

Math 266 Midterm Exam 2 Math 266 Midterm Exam 2 March 2st 26 Name: Ground Rules. Calculator is NOT allowed. 2. Show your work for every problem unless otherwise stated (partial credits are available). 3. You may use one 4-by-6

More information

APPM 2360: Midterm exam 1 February 15, 2017

APPM 2360: Midterm exam 1 February 15, 2017 APPM 36: Midterm exam 1 February 15, 17 On the front of your Bluebook write: (1) your name, () your instructor s name, (3) your recitation section number and () a grading table. Text books, class notes,

More information

17. Impulses and generalized functions

17. Impulses and generalized functions 86 17. Impulses and generalized functions In calculus you learn how to model processes using functions. Functions have their limitations, though, and, at least as they are treated in calculus, they are

More information

(Multiscale) Modelling With SfePy

(Multiscale) Modelling With SfePy (Multiscale) Modelling With SfePy Random Remarks... Robert Cimrman & Eduard Rohan & others Department of Mechanics & New Technologies Research Centre University of West Bohemia Plzeň, Czech Republic PANM

More information

Partial Fractions. dx dx x sec tan d 1 4 tan 2. 2 csc d. csc cot C. 2x 5. 2 ln. 2 x 2 5x 6 C. 2 ln. 2 ln x

Partial Fractions. dx dx x sec tan d 1 4 tan 2. 2 csc d. csc cot C. 2x 5. 2 ln. 2 x 2 5x 6 C. 2 ln. 2 ln x 460_080.qd //04 :08 PM Page CHAPTER 8 Integration Techniques, L Hôpital s Rule, and Improper Integrals Section 8. Partial Fractions Understand the concept of a partial fraction decomposition. Use partial

More information

CALCULUS AB/BC SUMMER REVIEW PACKET

CALCULUS AB/BC SUMMER REVIEW PACKET Name CALCULUS AB/BC SUMMER REVIEW PACKET Welcome to AP Calculus! Calculus is a branch of advanced mathematics that deals with problems that cannot be solved with ordinary algebra such as rate problems

More information

MATHEMATICS FOR ENGINEERING

MATHEMATICS FOR ENGINEERING MATHEMATICS FOR ENGINEERING INTEGRATION TUTORIAL FURTHER INTEGRATION This tutorial is essential pre-requisite material for anyone studying mechanical engineering. This tutorial uses the principle of learning

More information

Exam 2 Study Guide: MATH 2080: Summer I 2016

Exam 2 Study Guide: MATH 2080: Summer I 2016 Exam Study Guide: MATH 080: Summer I 016 Dr. Peterson June 7 016 First Order Problems Solve the following IVP s by inspection (i.e. guessing). Sketch a careful graph of each solution. (a) u u; u(0) 0.

More information

f(t)e st dt. (4.1) Note that the integral defining the Laplace transform converges for s s 0 provided f(t) Ke s 0t for some constant K.

f(t)e st dt. (4.1) Note that the integral defining the Laplace transform converges for s s 0 provided f(t) Ke s 0t for some constant K. 4 Laplace transforms 4. Definition and basic properties The Laplace transform is a useful tool for solving differential equations, in particular initial value problems. It also provides an example of integral

More information

EQDI-F2O43 - Differential Equations

EQDI-F2O43 - Differential Equations Coordinating unit: Teaching unit: Academic year: Degree: ECTS credits: 2018 340 - EPSEVG - Vilanova i la Geltrú School of Engineering 749 - MAT - Department of Mathematics BACHELOR'S DEGREE IN ELECTRICAL

More information

Uncertainty in Physical Measurements: Module 5 Data with Two Variables

Uncertainty in Physical Measurements: Module 5 Data with Two Variables : Often data have two variables, such as the magnitude of the force F exerted on an object and the object s acceleration a. In this Module we will examine some ways to determine how one of the variables,

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

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK What is SIMULINK? SIMULINK is a software package for modeling, simulating, and analyzing

More information

Course roadmap. ME451: Control Systems. Example of Laplace transform. Lecture 2 Laplace transform. Laplace transform

Course roadmap. ME451: Control Systems. Example of Laplace transform. Lecture 2 Laplace transform. Laplace transform ME45: Control Systems Lecture 2 Prof. Jongeun Choi Department of Mechanical Engineering Michigan State University Modeling Transfer function Models for systems electrical mechanical electromechanical Block

More information

Franklin High School AB Calculus Prerequisite Work

Franklin High School AB Calculus Prerequisite Work Franklin High School AB Calculus Prerequisite Work Below you will find an assignment set based on the prerequisites needed for the AB Calculus curriculum taught at Franklin High School. The problems assigned

More information

R3.6 Solving Linear Inequalities. 3) Solve: 2(x 4) - 3 > 3x ) Solve: 3(x 2) > 7-4x. R8.7 Rational Exponents

R3.6 Solving Linear Inequalities. 3) Solve: 2(x 4) - 3 > 3x ) Solve: 3(x 2) > 7-4x. R8.7 Rational Exponents Level D Review Packet - MMT This packet briefly reviews the topics covered on the Level D Math Skills Assessment. If you need additional study resources and/or assistance with any of the topics below,

More information

AP Calculus BC Summer Assignment School Year

AP Calculus BC Summer Assignment School Year AP Calculus BC Summer Assignment School Year 018-019 Objective of the summer assignment: i. To build on students readiness in foundational skills and knowledge ii. To review prerequisites topics for the

More information

Didactic Transformation

Didactic Transformation Didactic Transformation Alexandre Borovik University of Manchester Warwick 19 March 2008 Alexandre Borovik (University of Manchester) Didactic Transformation Warwick 19 March 2008 1 / 26 1 Didactic transformation:

More information

Modeling and Experimentation: Compound Pendulum

Modeling and Experimentation: Compound Pendulum Modeling and Experimentation: Compound Pendulum Prof. R.G. Longoria Department of Mechanical Engineering The University of Texas at Austin Fall 2014 Overview This lab focuses on developing a mathematical

More information

The incomplete gamma functions. Notes by G.J.O. Jameson. These notes incorporate the Math. Gazette article [Jam1], with some extra material.

The incomplete gamma functions. Notes by G.J.O. Jameson. These notes incorporate the Math. Gazette article [Jam1], with some extra material. The incomplete gamma functions Notes by G.J.O. Jameson These notes incorporate the Math. Gazette article [Jam], with some etra material. Definitions and elementary properties functions: Recall the integral

More information

Project IV Fourier Series

Project IV Fourier Series Project IV Fourier Series Robert Jerrard Goal of the project To develop understanding of how many terms of a Fourier series are required in order to well-approximate the original function, and of the differences

More information

MATH 251 Examination II April 3, 2017 FORM A. Name: Student Number: Section:

MATH 251 Examination II April 3, 2017 FORM A. Name: Student Number: Section: MATH 251 Examination II April 3, 2017 FORM A Name: Student Number: Section: This exam has 12 questions for a total of 100 points. In order to obtain full credit for partial credit problems, all work must

More information

Math 308 Week 8 Solutions

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

More information

GRAPHICAL VERIFICATION OF A BASIS USING MATLAB

GRAPHICAL VERIFICATION OF A BASIS USING MATLAB Bulletin of the Marathwada Mathematical Society Vol. 16, No. 1, June 2015, Pages 69 76. GRAPHICAL VERIFICATION OF A BASIS USING MATLAB Sachin Vyavahare and Bani Upmanyu Off Campus Center of BIT S Pilani,

More information

A-G Algebra 1. Gorman Learning Center (052344) Basic Course Information

A-G Algebra 1. Gorman Learning Center (052344) Basic Course Information A-G Algebra 1 Gorman Learning Center (052344) Basic Course Information Title: A-G Algebra 1 Transcript abbreviations: A-G Algebra 1a / 5R1001, A-G Algebra 1b / 5R1006 Length of course: Full Year Subject

More information

The Laplace transform

The Laplace transform The Laplace transform Samy Tindel Purdue University Differential equations - MA 266 Taken from Elementary differential equations by Boyce and DiPrima Samy T. Laplace transform Differential equations 1

More information

Fourier Analysis Fourier Series C H A P T E R 1 1

Fourier Analysis Fourier Series C H A P T E R 1 1 C H A P T E R Fourier Analysis 474 This chapter on Fourier analysis covers three broad areas: Fourier series in Secs...4, more general orthonormal series called Sturm iouville epansions in Secs..5 and.6

More information

Honors Differential Equations

Honors Differential Equations MIT OpenCourseWare http://ocw.mit.edu 8.034 Honors Differential Equations Spring 2009 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. LECTURE 20. TRANSFORM

More information

Laplace Transform Problems

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

More information

University of Alberta ENGM 541: Modeling and Simulation of Engineering Systems Laboratory #5

University of Alberta ENGM 541: Modeling and Simulation of Engineering Systems Laboratory #5 University of Alberta ENGM 54: Modeling and Simulation of Engineering Systems Laboratory #5 M.G. Lipsett, Updated 00 Integration Methods with Higher-Order Truncation Errors with MATLAB MATLAB is capable

More information

REVIEW FOR MT3 ANSWER KEY MATH 2373, SPRING 2015

REVIEW FOR MT3 ANSWER KEY MATH 2373, SPRING 2015 REVIEW FOR MT3 ANSWER KEY MATH 373 SPRING 15 PROF. YOICHIRO MORI This list of problems is not guaranteed to be an absolutel complete review. For completeness ou must also make sure that ou know how to

More information

HIGHER-ORDER LINEAR ORDINARY DIFFERENTIAL EQUATIONS IV: Laplace Transform Method David Levermore Department of Mathematics University of Maryland

HIGHER-ORDER LINEAR ORDINARY DIFFERENTIAL EQUATIONS IV: Laplace Transform Method David Levermore Department of Mathematics University of Maryland HIGHER-ORDER LINEAR ORDINARY DIFFERENTIAL EQUATIONS IV: Laplace Transform Method David Levermore Department of Mathematics University of Maryland 9 December Because the presentation of this material in

More information

Laplace Transforms Chapter 3

Laplace Transforms Chapter 3 Laplace Transforms Important analytical method for solving linear ordinary differential equations. - Application to nonlinear ODEs? Must linearize first. Laplace transforms play a key role in important

More information

Pre-Calculus and Trigonometry Capacity Matrix

Pre-Calculus and Trigonometry Capacity Matrix Pre-Calculus and Capacity Matri Review Polynomials A1.1.4 A1.2.5 Add, subtract, multiply and simplify polynomials and rational epressions Solve polynomial equations and equations involving rational epressions

More information

Three Interpretations of the Fourier Trasform The Fourier transform plays an important role in engineering and science. At one time or another,

Three Interpretations of the Fourier Trasform The Fourier transform plays an important role in engineering and science. At one time or another, hree Interpretations of the Fourier rasform he Fourier transform plays an important role in engineering and science. At one time or another, all electrical engineering students use the transform. However,

More information

Chapter 1: Introduction

Chapter 1: Introduction Chapter 1: Introduction Definition: A differential equation is an equation involving the derivative of a function. If the function depends on a single variable, then only ordinary derivatives appear and

More information

MATH39001 Generating functions. 1 Ordinary power series generating functions

MATH39001 Generating functions. 1 Ordinary power series generating functions MATH3900 Generating functions The reference for this part of the course is generatingfunctionology by Herbert Wilf. The 2nd edition is downloadable free from http://www.math.upenn. edu/~wilf/downldgf.html,

More information

AP CALCULUS BC ~ (Σer) ( Force Distance) and ( L1,L2,...) of Topical Understandings ~

AP CALCULUS BC ~ (Σer) ( Force Distance) and ( L1,L2,...) of Topical Understandings ~ Name: Previous Math Teacher: AP CALCULUS BC ~ (Σer) ( Force Distance) and ( L1,L,...) of Topical Understandings ~ As instructors of AP Calculus, we have extremely high expectations of students taking our

More information

Fourier Integral. Dr Mansoor Alshehri. King Saud University. MATH204-Differential Equations Center of Excellence in Learning and Teaching 1 / 22

Fourier Integral. Dr Mansoor Alshehri. King Saud University. MATH204-Differential Equations Center of Excellence in Learning and Teaching 1 / 22 Dr Mansoor Alshehri King Saud University MATH4-Differential Equations Center of Excellence in Learning and Teaching / Fourier Cosine and Sine Series Integrals The Complex Form of Fourier Integral MATH4-Differential

More information

Solutions to Math 53 Math 53 Practice Final

Solutions to Math 53 Math 53 Practice Final Solutions to Math 5 Math 5 Practice Final 20 points Consider the initial value problem y t 4yt = te t with y 0 = and y0 = 0 a 8 points Find the Laplace transform of the solution of this IVP b 8 points

More information

1 In-class part. 1.1 Problems. Practice Final, Math 3350

1 In-class part. 1.1 Problems. Practice Final, Math 3350 Practice Final, Math 3350 1 In-class part The in-class part of the final is 2 1 hours, and will be roughly the size of this practice test. At least 2 one problem from this practice in-class test will appear

More information

HIGHER-ORDER LINEAR ORDINARY DIFFERENTIAL EQUATIONS IV: Laplace Transform Method. David Levermore Department of Mathematics University of Maryland

HIGHER-ORDER LINEAR ORDINARY DIFFERENTIAL EQUATIONS IV: Laplace Transform Method. David Levermore Department of Mathematics University of Maryland HIGHER-ORDER LINEAR ORDINARY DIFFERENTIAL EQUATIONS IV: Laplace Transform Method David Levermore Department of Mathematics University of Maryland 6 April Because the presentation of this material in lecture

More information

M445: Heat equation with sources

M445: Heat equation with sources M5: Heat equation with sources David Gurarie I. On Fourier and Newton s cooling laws The Newton s law claims the temperature rate to be proportional to the di erence: d dt T = (T T ) () The Fourier law

More information

AP Calculus Summer Homework Worksheet Instructions

AP Calculus Summer Homework Worksheet Instructions Honors AP Calculus BC Thrill-a-Minute Summer Opportunity 018 Name Favorite Pre-Calculus Topic Your summer assignment is to have the review packet (a review of Algebra / Trig. and Pre-Calculus), Chapter

More information

Name: Previous Math Teacher: AP CALCULUS BC

Name: Previous Math Teacher: AP CALCULUS BC Name: Previous Math Teacher: AP CALCULUS BC ~ (er) ( Force Distance) and ( L1,L,...) of Topical Understandings ~ As instructors of AP Calculus, we have extremely high expectations of students taking our

More information

Delay Differential Equations with Constant Lags

Delay Differential Equations with Constant Lags Delay Differential Equations with Constant Lags L.F. Shampine Mathematics Department Southern Methodist University Dallas, TX 75275 shampine@smu.edu S. Thompson Department of Mathematics & Statistics Radford

More information

Module name Calculus and Linear Algebra (Maths 2) To provide additional mathematical tools required for core statistical and actuarial modules

Module name Calculus and Linear Algebra (Maths 2) To provide additional mathematical tools required for core statistical and actuarial modules MODULE SPECIFICATION UNDERGRADUATE PROGRAMMES KEY FACTS Module name and Linear Algebra (Maths 2) Module code AS2051 School Cass Business School Department or equivalent UG Programme UK credits 20 ECTS

More information

Accuplacer College Level Math Study Guide

Accuplacer College Level Math Study Guide Testing Center Student Success Center Accuplacer Study Guide The following sample questions are similar to the format and content of questions on the Accuplacer College Level Math test. Reviewing these

More information

Math 256: Applied Differential Equations: Final Review

Math 256: Applied Differential Equations: Final Review Math 256: Applied Differential Equations: Final Review Chapter 1: Introduction, Sec 1.1, 1.2, 1.3 (a) Differential Equation, Mathematical Model (b) Direction (Slope) Field, Equilibrium Solution (c) Rate

More information

Math 23: Differential Equations (Winter 2017) Midterm Exam Solutions

Math 23: Differential Equations (Winter 2017) Midterm Exam Solutions Math 3: Differential Equations (Winter 017) Midterm Exam Solutions 1. [0 points] or FALSE? You do not need to justify your answer. (a) [3 points] Critical points or equilibrium points for a first order

More information

Uniform and constant electromagnetic fields

Uniform and constant electromagnetic fields Fundamentals of Plasma Physics, Nuclear Fusion and Lasers Single Particle Motion Uniform and constant electromagnetic fields Nuno R. Pinhão 2015, March In this notebook we analyse the movement of individual

More information

MATH20411 PDEs and Vector Calculus B

MATH20411 PDEs and Vector Calculus B MATH2411 PDEs and Vector Calculus B Dr Stefan Güttel Acknowledgement The lecture notes and other course materials are based on notes provided by Dr Catherine Powell. SECTION 1: Introctory Material MATH2411

More information

6.003 Homework #1. Problems. Due at the beginning of recitation on September 14, 2011.

6.003 Homework #1. Problems. Due at the beginning of recitation on September 14, 2011. 6.003 Homework #1 Due at the beginning of recitation on September 14, 2011. Problems 1. Solving differential equations Solve the following differential equation y(t) + 3 dy(t) + 2 d2 y(t) = 1 dt dt 2 for

More information

Problem Score Possible Points Total 150

Problem Score Possible Points Total 150 Math 250 Fall 2010 Final Exam NAME: ID No: SECTION: This exam contains 17 problems on 13 pages (including this title page) for a total of 150 points. There are 10 multiple-choice problems and 7 partial

More information

Unit 11 - Solving Quadratic Functions PART ONE

Unit 11 - Solving Quadratic Functions PART ONE Unit 11 - Solving Quadratic Functions PART ONE PREREQUISITE SKILLS: students should be able to add, subtract and multiply polynomials students should be able to factor polynomials students should be able

More information

WILEY. Differential Equations with MATLAB (Third Edition) Brian R. Hunt Ronald L. Lipsman John E. Osborn Jonathan M. Rosenberg

WILEY. Differential Equations with MATLAB (Third Edition) Brian R. Hunt Ronald L. Lipsman John E. Osborn Jonathan M. Rosenberg Differential Equations with MATLAB (Third Edition) Updated for MATLAB 2011b (7.13), Simulink 7.8, and Symbolic Math Toolbox 5.7 Brian R. Hunt Ronald L. Lipsman John E. Osborn Jonathan M. Rosenberg All

More information

FORTRAN 77 Lesson 7. Reese Haywood Ayan Paul

FORTRAN 77 Lesson 7. Reese Haywood Ayan Paul FORTRAN 77 Lesson 7 Reese Haywood Ayan Paul 1 Numerical Integration A general all purpose Numerical Integration technique is the Trapezoidal Method. For most functions, this method is fast and accurate.

More information

COURSE: AP Calculus BC GRADE: 12 PA ACADEMIC STANDARDS FOR MATHEMATICS:

COURSE: AP Calculus BC GRADE: 12 PA ACADEMIC STANDARDS FOR MATHEMATICS: COURSE: AP Calculus BC GRADE: 12 UNIT 1: Functions and Graphs TIME FRAME: 7 Days PA ACADEMIC STANDARDS FOR MATHEMATICS: M11.A.1 M11.A.1.1 M11.A.1.1.1 M11.A.1.1.2 M11.A.1.1.3 M11.A.2 M11.A.2.1 M11.A.2.1.1

More information

Section 1.3 Integration

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

More information

= e t sin 2t. s 2 2s + 5 (s 1) Solution: Using the derivative of LT formula we have

= e t sin 2t. s 2 2s + 5 (s 1) Solution: Using the derivative of LT formula we have Math 090 Midterm Exam Spring 07 S o l u t i o n s. Results of this problem will be used in other problems. Therefore do all calculations carefully and double check them. Find the inverse Laplace transform

More information

International Journal of Mathematical Archive-5(12), 2014, Available online through ISSN

International Journal of Mathematical Archive-5(12), 2014, Available online through   ISSN International Journal of Mathematical Archive-5(12), 2014, 75-79 Available online through www.ijma.info ISSN 2229 5046 ABOUT WEAK ALMOST LIMITED OPERATORS A. Retbi* and B. El Wahbi Université Ibn Tofail,

More information

Introduction to Differential Equations

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

More information

AP Calculus AB Summer Assignment School Year

AP Calculus AB Summer Assignment School Year AP Calculus AB Summer Assignment School Year 018-019 Objective of the summer assignment: The AP Calculus summer assignment is designed to serve as a review for many of the prerequisite math skills required

More information

Solving a RLC Circuit using Convolution with DERIVE for Windows

Solving a RLC Circuit using Convolution with DERIVE for Windows Solving a RLC Circuit using Convolution with DERIVE for Windows Michel Beaudin École de technologie supérieure, rue Notre-Dame Ouest Montréal (Québec) Canada, H3C K3 mbeaudin@seg.etsmtl.ca - Introduction

More information