Mathematica for Dirac delta functions and Green functions

Size: px
Start display at page:

Download "Mathematica for Dirac delta functions and Green functions"

Transcription

1 Mathematica for Dirac delta functions and Green functions DiracDelta function Mathematic has Dirac s delta function built in for use in integrals and solving differential equations. If you evaluate it directly you get unless the argument is in which case it gives you the function back---it is not evaluated and does not evaluate to infinity. 8DiracDelta@D, DiracDelta@D, DiracDelta@- D< 8, DiracDelta@D, < So there is no peak in a plot of the function Plot@DiracDelta@D, 8, -, <, Eclusions None, PlotStyle 8Red, Thick<D However, it integrates to give the theta function: Integrate@DiracDelta@D, D HeavisideTheta@D Plot@HeavisideTheta@D, 8, -, <, Eclusions None, PlotStyle 8Red, Thick<D.. - -

2 And differentiating the theta function returns the Dirac delta function D Further derivatives are just denoted symbolically D Note that numerical integration over a delta function does not give the correct result because the routines cannot find the infinitely narrow peak. So, beware of this---use DiracDelta only in analytical integrations or solves. NIntegrate@DiracDelta@D, 8, -, <D NIntegrate::izero : Integral and error estimates are on all integration subregions. Try increasing the value of the MinRecursion option. If value of integral may be, specify a finite value for the AccuracyGoal option.. Integrals using Dirac delta function Defining properties Integrate@f@D DiracDelta@ - D, 8, - Infinity, Infinity<D f@d Integral vanishes if integration range does not include position of delta function Integrate@f@D DiracDelta@ - D, 8, - Infinity, <D. Dirac delta is an even function Integrate@f@D DiracDelta@- D, 8, -, <D f@d Correct Jacobians Integrate@f@D DiracDelta@ H - LD, 8, -, <D f@d Eample from lecture Integrate@ Ep@D DiracDelta@Sinh@ DD, 8, - Infinity, Infinity<D Checking eplicitly:

3 D, D Cosh@ D Cosh@D IntegrateB Ep@D DiracDelta@D, 8, - Infinity, Infinity<F Correctly picks up multiple crossings of zero by argument of delta function Integrate@f@D DiracDelta@Sin@ DD, 8, -, Pi + <D Kf@D + fb F + f@do More eamples from lecture Integrate@Cos@ D DiracDelta@Sin@DD, 8, - Pi, Pi <D Integrate@Cos@ D DiracDelta@Sin@DD, 8, - Pi, - Pi <D Integrals of derivatives of delta functions Integrate@f@D DiracDelta'@D, 8, -, <D - A few cautions about Mathematica s DiracDelta[ ]: Only HeavisideTheta[] s derivative gives DiracDelta[ ], functions with similar behavior do not testfunctions = 8HeavisideTheta@D, UnitStep@D, HSqrt@ ^ D + L, HAbs@D + L < :HeavisideTheta@D, UnitStep@D, + Abs@D +, >

4 8, -, <D & testfunctions :, >.. -,. -, The limits from each side have the appropirate values Limit@testfunctions,, Direction D 8,,, < Limit@testfunctions,, Direction - D 8,,, < At the discontinuous point they have different interpretations testfunctions. Power::infy : Infinite epression encountered. Infinity::indet : Indeterminate epression CompleInfinity encountered. Power::infy : Infinite epression encountered. Infinity::indet : Indeterminate epression CompleInfinity encountered. 8HeavisideTheta@D,, Indeterminate, Indeterminate< Mathematica will only correctly identify the derivative of HeavisideTheta[] as DiracDelta[] D@testfunctions, D :DiracDelta@D, Indeterminate,, True DiracDelta[ ] is not defined for comple arguments: DiracDelta@ + ID DiracDelta@ + äd Abs@D - + >

5 5 - ID, 8, - I, I<D à ä DiracDelta@- ä + D â - ä Limits which can be used to define a delta function will not return DeltaFunction[ ]: Limit@ H ^ + ^ L, D Integrals will not return a delta function: Integrate@Ep@I k D, 8, -, <, Assumptions -> k Î RealsD Integrate::idiv : Integral of ãä k does not converge on 8-, <. IntegrateAãä k, 8, -, <, Assumptions k Î RealsE But FourierTransform[ ] will: FourierTransform@Ep@I k D,, y, FourierParameters 8-, - <D DiracDelta@k - yd Sec. 8. #9---eample worked in class Mathematica can deal with general t (which it assumes is real, as DiracDelta is only defined for reals): Clear@t, yd soln9 = Flatten@DSolve@8y ''@td + y '@td + y@td DiracDelta@t - td, y '@D, y@d <, y@td, tdd Simplify :y@td ã-t+t HHeavisideTheta@ t - td - HeavisideTheta@- tdl Sin@ Ht - tld> Make into a function: yy@t_d = FullSimplify@Flatten@y@tD. soln9 DD ã-t+t HHeavisideTheta@t - td - HeavisideTheta@- tdl Sin@ Ht - tld Net consider t= for definiteness. This gives the answer obtained in class in various ways: t = ; yy@td ã-t HeavisideTheta@- + td Sin@ H- + tld Recall this is a damped oscillator at rest given a unit impulse at t=, so that its slope has a discontinuity, although the function is continuous.

6 6 8t, -, <, PlotStyle 8Thick, Red<, PlotRange 88-, <, 8-., <<D Finding Green function obtained in Boas using DiracDelta soln = DSolve@8y ''@td + y@td DiracDelta@t - tpd, y@d, y@pi D <, y@td, td ::y@td - Cos@tpD HeavisideThetaB - tpf Sin@tD + Cos@tpD HeavisideTheta@t - tpd Sin@tD Cos@tD HeavisideTheta@t - tpd Sin@tpD + Cos@tD HeavisideTheta@- tpd Sin@tpD>> To simplify, need to let Mathematica know the range of tp. This result agrees with that we found. soln = Simplify@soln, Assumptions 8 < tp < Pi <D 88y@tD - Cos@tpD Sin@tD + HeavisideTheta@t - tpd Sin@t - tpd<< Green function is thus GG@t_, tp_d = - Sin@tD Cos@tpD + HeavisideTheta@t - tpd Sin@t - tpd; Sec. 8. #---eample worked in class Forcing function. ff@_d = Piecewise@88, < Pi <, 8Pi -, Pi < Pi <<D < - < True

7 8,, Pi <, PlotStyle 8Thick, Red<D...5 Here s the result for the solution using the Green function from above applied to the forcing function: fullyy@_d = Integrate@GG@, pd ff@pd, 8p,, Pi <D Simplify K- J- + N Sin@D - HeavisideThetaB- H - - Cos@DL HeavisideThetaB- K H - Sin@DL + HeavisideThetaB- + F K- + + CosB + F + + F + SinB + F K- - CosB + FO + HeavisideTheta@D + F + SinB + FOOO To get simple form, need to tell Mathematica the range of : yyless@_d = Integrate@GG@, pd ff@pd, 8p,, Pi <, Assumptions 8 < < Pi <D - Sin@D yymore@_d = Integrate@GG@, pd ff@pd, 8p,, Pi <, Assumptions 8Pi < < Pi <D J - - Cos@DN Subsequent three plots show resulting y, y and y, so that one can see the nature of the solution, whose third derivative is discontinuous. 7

8 8 8,, Pi <, PlotStyle 8Thick, Blue<, AesLabel 8"", "y"<d y Plot@Evaluate@D@fullyy@D, DD, 8,, Pi <, PlotStyle 8Thick, Blue<, AesLabel 8"", "y'"<d y' Plot@Evaluate@D@fullyy@D, 8, <DD, 8,, Pi <, PlotStyle 8Thick, Blue<, AesLabel 8"", "y''"<d y''...5 Mathematica can also solve the differential equation including the piecewise function:

9 + ff@d, y@pi D <, y@d, DD ::y@d - J- + - J- + N Cos@D N Sin@D J Sin@D Cos@DN > < True >> Keep in mind when Mathematica says True for a piecewise function, it just means Otherwise 9

open a text line to annotate your work is Alt-7. From Eq. 2.5 we use the "sum" function in Mathematica to consider the (finite) sum

open a text line to annotate your work is Alt-7. From Eq. 2.5 we use the sum function in Mathematica to consider the (finite) sum Lecture Our goal here is to begin to learn to use Mathematica while at the same time use it to eplore the concepts in the tet. You are encouraged to confirm the Mathematica results and the mechanical issue

More information

Mathematica examples relevant to Bessel functions

Mathematica examples relevant to Bessel functions Mathematica eamples relevant to Bessel functions The original Bessel function---that discussed etensively in Boas Also called Bessel functions of the first kind, or cylindrical Bessel functions It is a

More information

Quickstart: Mathematica for Calculus I (Version 9.0) C. G. Melles Mathematics Department United States Naval Academy September 2, 2013

Quickstart: Mathematica for Calculus I (Version 9.0) C. G. Melles Mathematics Department United States Naval Academy September 2, 2013 Quickstart: Mathematica for Calculus I (Version 9.0) C. G. Melles Mathematics Department United States Naval Academy September, 0 Contents. Getting Started. Basic plotting. Solving equations, approximating

More information

Using Mathematica to solve ODEs (part 1)

Using Mathematica to solve ODEs (part 1) Using Mathematica to solve ODEs (part ) Basic tool is DSolve Note that in DSolve the dependent variable (usually y below) must be written y[x] or y [x] (for the derivative) or y [x] (for the second derivative)

More information

1 The Inverse Problem

1 The Inverse Problem The Inverse Problem We have learned that a general solution of a first-order differential equation y = f H, yl (..) is a one-parameter family of (either eplicit or implicit) solutions. Finding a general

More information

Algebra. Mathematica QuickStart for Calculus 101C. Solving Equations. Factoring. Exact Solutions to single equation:

Algebra. Mathematica QuickStart for Calculus 101C. Solving Equations. Factoring. Exact Solutions to single equation: Mathematica QuickStart for Calculus 101C Algebra Solving Equations Exact Solutions to single equation: In[88]:= Solve@x^3 + 5 x - 6 ã 0, xd Out[88]= :8x Ø 1, :x Ø 1 2 I-1 + Â 23

More information

You can drag the graphs using your mouse to rotate the surface.

You can drag the graphs using your mouse to rotate the surface. The following are some notes for relative maxima and mimima using surfaces plotted in Mathematica. The way to run the code is: Select Menu bar -- Evaluation -- Evaluate Notebook You can drag the graphs

More information

H* Define 2 Points in R 3 *L P = 81, 2, 3< Q = 84, 6, 6< PQvec = Q - P. H* Plot a Single Red Point of "Size" 0.05 *L

H* Define 2 Points in R 3 *L P = 81, 2, 3< Q = 84, 6, 6< PQvec = Q - P. H* Plot a Single Red Point of Size 0.05 *L Define and plotting a point and vector H* Define 2 Points in R 3 *L P = 81, 2, 3< Q = 84, 6, 6< PQvec = Q - P H* Plot a Single Red Point of "Size" 0.05 *L Graphics3D@8PointSize@0.05D, Red, Point@PD

More information

Integrating Equations of Motion in Mathematica

Integrating Equations of Motion in Mathematica MmaGuide-GLG.nb Integrating Equations of Motion in Mathematica Gary L. Gray Assistant Professor Engineering Science and Mechanics The Pennsylvania State University 227 Hammond Building University Park,

More information

Graphs of Functions, Limits, and

Graphs of Functions, Limits, and Chapter Continuity Graphs of Functions, Limits, and ü. Plotting Graphs Students should read Chapter of Rogawski's Calculus [] for a detailed discussion of the material presented in this section. ü.. Basic

More information

Plots & Animations. Simple 2d plots x

Plots & Animations. Simple 2d plots x Plots & Animations Simple 2d plots Physical processes and corresponding mathematical formulas can be visualized by plots. The simplest plot of a single function f[x] can be created as follows f@x_d :=

More information

Edexcel Core Mathematics 4 Integration

Edexcel Core Mathematics 4 Integration Edecel Core Mathematics 4 Integration Edited by: K V Kumaran kumarmaths.weebly.com Integration It might appear to be a bit obvious but you must remember all of your C work on differentiation if you are

More information

Examples of Fourier series

Examples of Fourier series Examples of Fourier series Preliminaries In[]:= Below is the definition of a periodic extension of a function defined on L, L. This definition takes a function as a variable. The function has to be inputted

More information

Parametric Curves, Polar Plots and 2D Graphics

Parametric Curves, Polar Plots and 2D Graphics Parametric Curves, Polar Plots and 2D Graphics Fall 2016 In[213]:= Clear "Global`*" 2 2450notes2_fall2016.nb Parametric Equations In chapter 9, we introduced parametric equations so that we could easily

More information

Complex functions, Laurent Series & residues using Mathematica

Complex functions, Laurent Series & residues using Mathematica Complex functions, Laurent Series & residues using Mathematica Complex functions Real and Imaginary parts of functions can be obtained using ComplexExpand, which treats all variables (here x and y) as

More information

A model for an intramuscular injection of a medication.

A model for an intramuscular injection of a medication. injection_model.nb 1 A model for an intramuscular injection of a medication. Needs@"Graphics`Colors`"D; Intravenous injection of a medication: Injected drug in blood decays exponentially due to metabolic

More information

2.2 Limit of a Function and Limit Laws

2.2 Limit of a Function and Limit Laws Limit of a Function and Limit Laws Section Notes Page Let s look at the graph y What is y()? That s right, its undefined, but what if we wanted to find the y value the graph is approaching as we get close

More information

In this chapter, we define limits of functions and describe some of their properties.

In this chapter, we define limits of functions and describe some of their properties. Chapter 2 Limits of Functions In this chapter, we define its of functions and describe some of their properties. 2.. Limits We begin with the ϵ-δ definition of the it of a function. Definition 2.. Let

More information

Calculus I Review Handout 1.3 Introduction to Calculus - Limits. by Kevin M. Chevalier

Calculus I Review Handout 1.3 Introduction to Calculus - Limits. by Kevin M. Chevalier Calculus I Review Handout 1.3 Introduction to Calculus - Limits by Kevin M. Chevalier We are now going to dive into Calculus I as we take a look at the it process. While precalculus covered more static

More information

Monte Carlo Method for Definite Integration

Monte Carlo Method for Definite Integration Monte Carlo Method for Definite Integration http://www.mathcs.emory.edu/ccs/ccs215/monte/node13.htm Numerical integration techniques, such as the Trapezoidal rule and Simpson's rule, are commonly utilized

More information

Graphing on the Riemann Sphere

Graphing on the Riemann Sphere The Mathematica Journal Graphing on the Riemann Sphere Djilali Benayat We give a procedure to plot parametric curves on the sphere whose advantages over classical graphs in the Cartesian plane are obvious

More information

Assignment 1. Prolog to Problem 1. Two cylinders. ü Visualization. Problems by Branko Curgus

Assignment 1. Prolog to Problem 1. Two cylinders. ü Visualization. Problems by Branko Curgus Assignment In[]:= Problems by Branko Curgus SetOptions $FrontEndSession, Magnification Prolog to Problem. Two cylinders In[]:= This is a tribute to a problem that I was assigned as an undergraduate student

More information

Basic Exercises about Mathematica

Basic Exercises about Mathematica Basic Exercises about Mathematica 1. Calculate with four decimal places. NB F. 2.23607 2.23607 Ë We can evaluate a cell by placing the cursor on it and pressing Shift+Enter (or Enter on the numeric key

More information

dt Acceleration is the derivative of velocity with respect to time. If a body's position at time t is S = f(t), the body's acceleration at time t is

dt Acceleration is the derivative of velocity with respect to time. If a body's position at time t is S = f(t), the body's acceleration at time t is APPLICATIN F DERIVATIVE INTRDUCTIN In this section we eamine some applications in which derivatives are used to represent and interpret the rates at which things change in the world around us. Let S be

More information

Lecture 17 Appendix B (analytic functions and contour integrals)

Lecture 17 Appendix B (analytic functions and contour integrals) Lecture 7 Appendix B (analytic functions and contour integrals) Ex 4.:8 We want to consider the analyticity properties (CR) of the square root function In[]:= f8@z_d := Sqrt@zD Now write this function

More information

This notebook "MathematicaDemo.nb" can be downloaded from the course web page.

This notebook MathematicaDemo.nb can be downloaded from the course web page. Mathematica demo http://www.wolfram.com/ This notebook "MathematicaDemo.nb" can be downloaded from the course web page. Basics Evaluate cells by pressing "shift-enter" / shift-return In[]:= + 3 Out[]=

More information

Making Holes and Windows in Surfaces

Making Holes and Windows in Surfaces The Mathematica Journal Making Holes and Windows in Surfaces Alan Horwitz In this article, we demonstrate makehole, a program which removes points from any Graphics or Graphics3D picture whose coordinates

More information

ü 1.1 Getting Started

ü 1.1 Getting Started Chapter 1 Introduction Welcome to Mathematica! This tutorial manual is intended as a supplement to Rogawski's Calculus textbook and aimed at students looking to quickly learn Mathematica through examples.

More information

A plane. Or, with more details, NotebookDirectory. C:\Dropbox\Work\myweb\Courses\Math_pages\Math_225\

A plane. Or, with more details, NotebookDirectory. C:\Dropbox\Work\myweb\Courses\Math_pages\Math_225\ In[1]:= NotebookDirectory Out[1]= C:\Dropbox\Work\myweb\Courses\Math_pages\Math_5\ A plane Given a point in R 3 (below it is vr) and two non-collinear vectors (below uu and vv) the parametric equation

More information

Functions f and g are called a funny cosine and a funny sine if they satisfy the following properties:

Functions f and g are called a funny cosine and a funny sine if they satisfy the following properties: Assignment problems by Branko Ćurgus posted on 2070720 Problem. Funny trigonometry and its beauty ü Few Mathematica comments There are several standard Mathematica functions that can be useful here. For

More information

Mathematica Notebook for the SIGGRAPH 2013 talk Background: Physics and Math of Shading

Mathematica Notebook for the SIGGRAPH 2013 talk Background: Physics and Math of Shading Mathematica Notebook for the SIGGRAPH 03 talk Background: Physics and Math of Shading This notebook contains some computations referenced in the course notes. Off@NIntegrate::inumrD SetOptions@Plot, PlotRange

More information

Graphing Functions. 0, < x < 0 1, 0 x < is defined everywhere on R but has a jump discontinuity at x = 0. h(x) =

Graphing Functions. 0, < x < 0 1, 0 x < is defined everywhere on R but has a jump discontinuity at x = 0. h(x) = Graphing Functions Section. of your tetbook is devoted to reviewing a series of steps that you can use to develop a reasonable graph of a function. Here is my version of a list of things to check. You

More information

Getting Started With Mathematica

Getting Started With Mathematica Getting Started With Mathematica First Steps This semester we will make use of the software package Mathematica; this package is available on all Loyola networked computers. You can access Mathematica

More information

MATH 137 : Calculus 1 for Honours Mathematics. Online Assignment #5. Limits and Continuity of Functions

MATH 137 : Calculus 1 for Honours Mathematics. Online Assignment #5. Limits and Continuity of Functions 1 Instructions: MATH 137 : Calculus 1 for Honours Mathematics Online Assignment #5 Limits and Continuity of Functions Due by 9:00 pm on WEDNESDAY, June 13, 2018 Weight: 2% This assignment includes the

More information

Example 1: Given below is the graph of the quadratic function f. Use the function and its graph to find the following: Outputs

Example 1: Given below is the graph of the quadratic function f. Use the function and its graph to find the following: Outputs Quadratic Functions: - functions defined by quadratic epressions (a 2 + b + c) o the degree of a quadratic function is ALWAYS 2 - the most common way to write a quadratic function (and the way we have

More information

Getting Started With Mathematica

Getting Started With Mathematica Getting Started With Mathematica First Steps This semester we will make use of the software package Mathematica; this package is available on all Loyola networked computers. You can access Mathematica

More information

Mathematica Notebook for Background: Physics and Math of Shading

Mathematica Notebook for Background: Physics and Math of Shading Mathematica Notebook for Background: Physics and Math of Shading In[1]:= This notebook contains some computations referenced in the course notes. Off NIntegrate::inumr SetOptions Plot, PlotRange All ;

More information

Newton s Method. Example : Find the root of f (x) =

Newton s Method. Example : Find the root of f (x) = Newton s Method Example : Find the root of f (x) = If we draw the graph of f (x), we can see that the root of f (x) = 0 is the x - coordinate of the point where the curve intersects with the x - axis.

More information

Intro to Linear Programming. The problem that we desire to address in this course is loosely stated below.

Intro to Linear Programming. The problem that we desire to address in this course is loosely stated below. . Introduction Intro to Linear Programming The problem that we desire to address in this course is loosely stated below. Given a number of generators make price-quantity offers to sell (each provides their

More information

REPRESENTATION OF CURVES IN PARAMETRIC FORM

REPRESENTATION OF CURVES IN PARAMETRIC FORM - Representation of curves in parametric form 1 REPRESENTATION OF CURVES IN PARAMETRIC FORM.1. Parametrization of curves in the plane Given a curve in parametric form, its graphical representation in a

More information

An Introduction to Maple This lab is adapted from a lab created by Bob Milnikel.

An Introduction to Maple This lab is adapted from a lab created by Bob Milnikel. Some quick tips for getting started with Maple: An Introduction to Maple This lab is adapted from a lab created by Bob Milnikel. [Even before we start, take note of the distinction between Tet mode and

More information

CurvesGraphics. A free package for Advanced Calculus illustrations. Gianluca Gorni. Arrows on 2D curves. Motivation

CurvesGraphics. A free package for Advanced Calculus illustrations. Gianluca Gorni. Arrows on 2D curves. Motivation CurvesGraphics A free package for Advanced Calculus illustrations. Gianluca Gorni Motivation As a teacher of Calculus and Mathematical Analysis at college and university level, I feel that Mathematica

More information

f(x) lim does not exist.

f(x) lim does not exist. Indeterminate Forms and L Hopital s Rule When we computed its of quotients, i.e. its of the form f() a g(), we came across several different things that could happen: f(). a g() = f(a) g(a) when g(). a

More information

Section 2.5: Continuity

Section 2.5: Continuity Section 2.5: Continuity 1. The Definition of Continuity We start with a naive definition of continuity. Definition 1.1. We say a function f() is continuous if we can draw its graph without lifting out

More information

Calculus Chapter 1 Limits. Section 1.2 Limits

Calculus Chapter 1 Limits. Section 1.2 Limits Calculus Chapter 1 Limits Section 1.2 Limits Limit Facts part 1 1. The answer to a limit is a y-value. 2. The limit tells you to look at a certain x value. 3. If the x value is defined (in the domain),

More information

Unit 1: Sections Skill Set

Unit 1: Sections Skill Set MthSc 106 Fall 2011 Calculus of One Variable I : Calculus by Briggs and Cochran Section 1.1: Review of Functions Unit 1: Sections 1.1 3.3 Skill Set Find the domain and range of a function. 14, 17 13, 15,

More information

Proving Trigonometric Identities

Proving Trigonometric Identities MHF 4UI Unit 7 Day Proving Trigonometric Identities An identity is an epression which is true for all values in the domain. Reciprocal Identities csc θ sin θ sec θ cos θ cot θ tan θ Quotient Identities

More information

This shows the same example but with a more rigorous step-size limitation, which finds the root near the starting condition

This shows the same example but with a more rigorous step-size limitation, which finds the root near the starting condition Unconstrained Optimization 35 In[3]:= This is an example of a problem where the Newton step is very large because the starting point is at a position where the Jacobian (derivative) is nearly singular.

More information

9.1 Centroids by Integration

9.1 Centroids by Integration 9.1 Centroids b Integration 9.1 Centroids b Integration Procedures and Strategies, page 1 of 2 Procedures and Strategies for Solving Problems Involving Calculating Centroids b Integration = f () (, ) 1.

More information

Lecture 9: Transformations. CITS3003 Graphics & Animation

Lecture 9: Transformations. CITS3003 Graphics & Animation Lecture 9: Transformations CITS33 Graphics & Animation E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 212 Objectives Introduce standard transformations Rotation Translation Scaling

More information

Teaching Complex Analysis as a Lab- Type ( flipped ) Course with a Focus on Geometric Interpretations using Mathematica

Teaching Complex Analysis as a Lab- Type ( flipped ) Course with a Focus on Geometric Interpretations using Mathematica Teaching Complex Analysis as a Lab- Type ( flipped ) Course with a Focus on Geometric Interpretations using Mathematica Bill Kinney, Bethel University, St. Paul, MN 2 KinneyComplexAnalysisLabCourse.nb

More information

Continuity and Tangent Lines for functions of two variables

Continuity and Tangent Lines for functions of two variables Continuity and Tangent Lines for functions of two variables James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University April 4, 2014 Outline 1 Continuity

More information

Arithmetic expressions can be typed into Maple using the regular operators:

Arithmetic expressions can be typed into Maple using the regular operators: Basic arithmetic Arithmetic expressions can be typed into Maple using the regular operators: (type "3 + 4" and then press "[Enter]" to start the evaluation of the expression) 7 (1.1) 5 (1.2) 21 (1.3) (type

More information

Calculus I (part 1): Limits and Continuity (by Evan Dummit, 2016, v. 2.01)

Calculus I (part 1): Limits and Continuity (by Evan Dummit, 2016, v. 2.01) Calculus I (part ): Limits and Continuity (by Evan Dummit, 206, v. 2.0) Contents Limits and Continuity. Limits (Informally)...............................................2 Limits and the Limit Laws..........................................

More information

Mth Test 3 Review Stewart 8e Chapter 4. For Test #3 study these problems, the examples in your notes, and the homework.

Mth Test 3 Review Stewart 8e Chapter 4. For Test #3 study these problems, the examples in your notes, and the homework. For Test #3 study these problems, the eamples in your notes, and the homework. I. Absolute Etrema A function, continuous on a closed interval, always has an absolute maimum and absolute minimum. They occur

More information

P-Set 1 Solution Set. Solutions created by Melissa Diskin. Part 1 (3 points) Part 2 (4 points) ê H1 ê 2 + xl^hx ê 2L, xdd

P-Set 1 Solution Set. Solutions created by Melissa Diskin. Part 1 (3 points) Part 2 (4 points) ê H1 ê 2 + xl^hx ê 2L, xdd PSet Solution Set Solutions created by Melissa Diskin I (Handworked, 5 points) Simplified version of the derivative with respect to x. In[80]:= Simplify@D@ ê H ê + xl^hx ê L, xdd Out[80]= + x xê x + x

More information

Overview: The original Mathematica was a computer algebra system (CAS) released by Stephen Wolfram in 1988.

Overview: The original Mathematica was a computer algebra system (CAS) released by Stephen Wolfram in 1988. Mathematica 7.0.1 Overview: The original Mathematica was a computer algebra system (CAS) released by Stephen Wolfram in 1988. Modern releases have augmented the CAS with powerful numerical and graphical

More information

sinc interpolation to reconstruct a signal from its samples

sinc interpolation to reconstruct a signal from its samples sinc interpolation to reconstruct a signal from its samples Initialization Code Manipulate ManipulateAprocess@ Fs, fund, ItemA GridA9 9Control@Fs,, Row@Style@"sampling frequency", D, Style@ " HHzL", ItalicD

More information

A Specialized Case of the Euclidean 3-Dimensional Steiner Tree Problem

A Specialized Case of the Euclidean 3-Dimensional Steiner Tree Problem A Specialied Case of the Euclidean -Dimensional Steiner Tree Problem Jacob Shetler Introduction In a Steiner Tree problem, one must connect a given set of vertices together in order to create a connected

More information

Principles of Linear Algebra With Mathematica Linear Programming

Principles of Linear Algebra With Mathematica Linear Programming Principles of Linear Algebra With Mathematica Linear Programming Kenneth Shiskowski and Karl Frinkle Draft date March 12, 12 Contents 1 Linear Programming 1 1.1 Geometric Linear Programming in Two Dimensions......

More information

Unit 2: Function Transformation Chapter 1

Unit 2: Function Transformation Chapter 1 Basic Transformations Reflections Inverses Unit 2: Function Transformation Chapter 1 Section 1.1: Horizontal and Vertical Transformations A of a function alters the and an combination of the of the graph.

More information

Module 2, Section 2 Graphs of Trigonometric Functions

Module 2, Section 2 Graphs of Trigonometric Functions Principles of Mathematics Section, Introduction 5 Module, Section Graphs of Trigonometric Functions Introduction You have studied trigonometric ratios since Grade 9 Mathematics. In this module ou will

More information

TABLE OF CONTENTS CHAPTER 1 LIMIT AND CONTINUITY... 26

TABLE OF CONTENTS CHAPTER 1 LIMIT AND CONTINUITY... 26 TABLE OF CONTENTS CHAPTER LIMIT AND CONTINUITY... LECTURE 0- BASIC ALGEBRAIC EXPRESSIONS AND SOLVING EQUATIONS... LECTURE 0- INTRODUCTION TO FUNCTIONS... 9 LECTURE 0- EXPONENTIAL AND LOGARITHMIC FUNCTIONS...

More information

MATH 162 Calculus II Computer Laboratory Topic: Introduction to Mathematica & Parametrizations

MATH 162 Calculus II Computer Laboratory Topic: Introduction to Mathematica & Parametrizations MATH 162 Calculus II Computer Laboratory Topic: Introduction to Mathematica & Goals of the lab: To learn some basic operations in Mathematica, such as how to define a function, and how to produce various

More information

Calculus Limits Images in this handout were obtained from the My Math Lab Briggs online e-book.

Calculus Limits Images in this handout were obtained from the My Math Lab Briggs online e-book. Calculus Limits Images in this handout were obtained from the My Math Lab Briggs online e-book. A it is the value a function approaches as the input value gets closer to a specified quantity. Limits are

More information

GETTING STARTED WITH MATHEMATICA

GETTING STARTED WITH MATHEMATICA GETTING STARTED WITH MATHEMATICA Loading Mathematica : If you are on any Loyola network computer, you should be able to load Mathematica by clicking on the start button (on the lower left of the computer

More information

Lecture 3: Some Strange Properties of Fractal Curves

Lecture 3: Some Strange Properties of Fractal Curves Lecture 3: Some Strange Properties of Fractal Curves I have been a stranger in a strange land. Exodus 2:22 1. Fractal Strangeness Fractals have a look and feel that is very different from ordinary curves.

More information

Representations of Curves and Surfaces, and of their Tangent Lines, and Tangent Planes in R 2 and R 3 Robert L.Foote, Fall 2007

Representations of Curves and Surfaces, and of their Tangent Lines, and Tangent Planes in R 2 and R 3 Robert L.Foote, Fall 2007 CurvesAndSurfaces.nb Representations of Curves and Surfaces, and of their Tangent Lines, and Tangent Planes in R and R 3 Robert L.Foote, Fall 007 Curves and Surfaces Graphs ü The graph of f : Æ is a curve

More information

Defining and Plotting a Parametric Curve in 3D a(t)=(x(t),y(t),z(t)) H* clears all previous assingments so we can reuse them *L

Defining and Plotting a Parametric Curve in 3D a(t)=(x(t),y(t),z(t)) H* clears all previous assingments so we can reuse them *L Defining and Plotting a Parametric Curve in 3D a(t)=(x(t),y(t),z(t)) Clear@"Global`*"D H* clears all previous assingments so we can reuse them *L H* Define vector functions in 3D of one variable t, i.e.

More information

Lesson 21: Comparing Linear and Exponential Functions Again

Lesson 21: Comparing Linear and Exponential Functions Again Lesson M Lesson : Comparing Linear and Eponential Functions Again Student Outcomes Students create models and understand the differences between linear and eponential models that are represented in different

More information

Basics of Computational Geometry

Basics of Computational Geometry Basics of Computational Geometry Nadeem Mohsin October 12, 2013 1 Contents This handout covers the basic concepts of computational geometry. Rather than exhaustively covering all the algorithms, it deals

More information

Geometric Primitives. Chapter 5

Geometric Primitives. Chapter 5 Chapter 5 Geometric Primitives In this chapter, we discuss the basic geometric primitives we will use to represent the world in which our graphic objects live. As discussed at the beginning of this class,

More information

Fitting to a set of data. Lecture on fitting

Fitting to a set of data. Lecture on fitting Fitting to a set of data Lecture on fitting Linear regression Linear regression Residual is the amount difference between a real data point and a modeled data point Fitting a polynomial to data Could use

More information

In this chapter, we will investigate what have become the standard applications of the integral:

In this chapter, we will investigate what have become the standard applications of the integral: Chapter 8 Overview: Applications of Integrals Calculus, like most mathematical fields, began with trying to solve everyday problems. The theory and operations were formalized later. As early as 70 BC,

More information

3.6-Rational Functions & Their Graphs

3.6-Rational Functions & Their Graphs .6-Rational Functions & Their Graphs What is a Rational Function? A rational function is a function that is the ratio of two polynomial functions. This definition is similar to a rational number which

More information

-SOLUTION- ME / ECE 739: Advanced Robotics Homework #2

-SOLUTION- ME / ECE 739: Advanced Robotics Homework #2 ME / ECE 739: Advanced Robotics Homework #2 Due: March 5 th (Thursday) -SOLUTION- Please submit your answers to the questions and all supporting work including your Matlab scripts, and, where appropriate,

More information

,?...?, the? or? s are for any holes or vertical asymptotes.

,?...?, the? or? s are for any holes or vertical asymptotes. Name: Period: Pre-Cal AB: Unit 14: Rational Functions Monday Tuesday Block Friday 16 17 18/19 0 end of 9 weeks Graphing Rational Graphing Rational Partial Fractions QUIZ 3 Conic Sections (ON Friday s Quiz)

More information

3.5 Indeterminate Forms. Consider the function given by the rule f(x) = Whenever direct substitution into lim x c f(x) yields a 0 0

3.5 Indeterminate Forms. Consider the function given by the rule f(x) = Whenever direct substitution into lim x c f(x) yields a 0 0 3.5 Indeterminate Forms Introduction; Consider the function given by the rule f() = ; its graph is shown below. 0 0 situations Clearly, = 3. Note, however, that if one merely tried to plug in 0 for when

More information

8 Piecewise Polynomial Interpolation

8 Piecewise Polynomial Interpolation Applied Math Notes by R. J. LeVeque 8 Piecewise Polynomial Interpolation 8. Pitfalls of high order interpolation Suppose we know the value of a function at several points on an interval and we wish to

More information

Inverse Problem Theory and Methods for Model Parameter Estimation

Inverse Problem Theory and Methods for Model Parameter Estimation The following notes are complements for the book Inverse Problem Theory and Methods for Model Parameter Estimation Albert Tarantola Society of Industrial and Applied Mathematics (SIAM), 2005 11.4.3 Probabilistic

More information

The following information is for reviewing the material since Exam 3:

The following information is for reviewing the material since Exam 3: Outcomes List for Math 121 Calculus I Fall 2010-2011 General Information: The purpose of this Outcomes List is to give you a concrete summary of the material you should know, and the skills you should

More information

3.5 - Concavity. a concave up. a concave down

3.5 - Concavity. a concave up. a concave down . - Concavity 1. Concave up and concave down For a function f that is differentiable on an interval I, the graph of f is If f is concave up on a, b, then the secant line passing through points 1, f 1 and,

More information

7.3 Simplifying Radical Expressions

7.3 Simplifying Radical Expressions 6 CHAPTER 7 Rational Eponents, Radicals, and Comple Numbers 11. = /5 -/5 1. y = -/ y/, or y Use a calculator to write a four-decimal-place approimation of each number. 1. 8 1/ 1. 0 1/5 15. 18 /5 16. 76

More information

The method of rationalizing

The method of rationalizing Roberto s Notes on Differential Calculus Chapter : Resolving indeterminate forms Section The method of rationalizing What you need to know already: The concept of it and the factor-and-cancel method of

More information

An interesting related problem is Buffon s Needle which was first proposed in the mid-1700 s.

An interesting related problem is Buffon s Needle which was first proposed in the mid-1700 s. Using Monte Carlo to Estimate π using Buffon s Needle Problem An interesting related problem is Buffon s Needle which was first proposed in the mid-1700 s. Here s the problem (in a simplified form). Suppose

More information

6.3. Complex Fractions

6.3. Complex Fractions 6. Comple Fractions 1. Simplify comple fractions by simplifying the numerator and denominator (Method 1).. Simplify comple fractions by multiplying by a common denominator (Method ).. Compare the two methods

More information

1. How Mathematica works

1. How Mathematica works Departments of Civil Engineering and Mathematics CE 109: Computing for Engineering Mathematica Session 1: Introduction to the system Mathematica is a piece of software described by its manufacturers as

More information

The method of rationalizing

The method of rationalizing Roberto s Notes on Differential Calculus Chapter : Resolving indeterminate forms Section The method of rationalizing What you need to know already: The concept of it and the factor-and-cancel method of

More information

N Function of MATHEMATICA and Some Notices to Numerical Quadrature

N Function of MATHEMATICA and Some Notices to Numerical Quadrature N Function of MATHEMATICA and Some Notices to Numerical Quadrature Monika Kováčová Dept. of Mathematics, Fac. of Mechanical Engineering, Slovak Technical University, Bratislava kovacova_v@dekan.sjf.stuba.sk

More information

Chapter 1. Numeric Artifacts. 1.1 Introduction

Chapter 1. Numeric Artifacts. 1.1 Introduction Chapter 1 Numeric Artifacts 1.1 Introduction Virtually all solutions to problems in electromagnetics require the use of a computer. Even when an analytic or closed form solution is available which is nominally

More information

Copyright 1996,1997, All rights reserved, Izumi Ohzawa,

Copyright 1996,1997, All rights reserved, Izumi Ohzawa, CXmodelWhyBB-BD.ma 1 This Mathematica Notebook contains computations and derivations used to create plots in Figs. 8, 9 and 10 of our paper Ohzawa, DeAngelis, Freeman, Encoding of Binocular Disparity by

More information

ORTHOGONAL FAMILIES OF CURVES

ORTHOGONAL FAMILIES OF CURVES 8 ORTHOGONAL CURVES Spring her winning the car is the probability of her initially choosing a door with a goat behind it, that is 66%! There is a very nice, complete discussion of this topic, and the controversy

More information

The Bisection Method versus Newton s Method in Maple (Classic Version for Windows)

The Bisection Method versus Newton s Method in Maple (Classic Version for Windows) The Bisection Method versus (Classic Version for Windows) Author: Barbara Forrest Contact: baforres@uwaterloo.ca Copyrighted/NOT FOR RESALE version 1.1 Contents 1 Objectives for this Lab i 2 Approximate

More information

A Brief Introduction to Mathematica

A Brief Introduction to Mathematica A Brief Introduction to Mathematica Objectives: (1) To learn to use Mathematica as a calculator. (2) To learn to write expressions in Mathematica, and to evaluate them at given point. (3) To learn to plot

More information

Calculus Limits Images in this handout were obtained from the My Math Lab Briggs online e-book.

Calculus Limits Images in this handout were obtained from the My Math Lab Briggs online e-book. Calculus Limits Images in this handout were obtained from the My Math Lab Briggs online e-book. A it is the value a function approaches as the input value gets closer to a specified quantity. Limits are

More information

Surfaces and Partial Derivatives

Surfaces and Partial Derivatives Surfaces and James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 15, 2017 Outline 1 2 Tangent Planes Let s go back to our simple surface

More information

Chapter 3 Path Optimization

Chapter 3 Path Optimization Chapter 3 Path Optimization Background information on optimization is discussed in this chapter, along with the inequality constraints that are used for the problem. Additionally, the MATLAB program for

More information

Lesson 1 Introduction to Algebraic Geometry

Lesson 1 Introduction to Algebraic Geometry Lesson 1 Introduction to Algebraic Geometry I. What is Algebraic Geometry? Algebraic Geometry can be thought of as a (vast) generalization of linear algebra and algebra. Recall that, in linear algebra,

More information

Students are required to have a graphing calculator. Instructors of the course support topics using a TI-84 or TI-89.

Students are required to have a graphing calculator. Instructors of the course support topics using a TI-84 or TI-89. AP Calculus AB Course Design and Philosophy Students conceptualize calculus when it is approached in a variety of methods. The course is taught using multiple strategies including algebraic, numerical,

More information

Unit 2: Function Transformation Chapter 1. Basic Transformations Reflections Inverses

Unit 2: Function Transformation Chapter 1. Basic Transformations Reflections Inverses Unit 2: Function Transformation Chapter 1 Basic Transformations Reflections Inverses Section 1.1: Horizontal and Vertical Transformations A transformation of a function alters the equation and any combination

More information