ODE Background: Differential (1A) Young Won Lim 12/29/15

Size: px
Start display at page:

Download "ODE Background: Differential (1A) Young Won Lim 12/29/15"

Transcription

1 ODE Background: Differential (1A

2 Copyright (c Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License". Please send corrections (or suggestions to youngwlim@hotmail.com. This document was produced by using OpenOffice and Octave.

3 Differentials Background : Differential (1A 3

4 A triangle and its slope y = f x, f f h f h f ( +h f ( +h h, f h f Background : Differential (1A 4

5 Many smaller triangles and their slopes f ( + h f ( h ( +h, f ( +h f ( + h 1 f ( h 1 f ( + h 2 f ( h 2 f ( +h f ( +h 1 f ( +h 2 f ( (, f ( +h 2 +h 1 +h h 2 h 1 lim h 0 f ( + h f ( h h ( +h, f ( +h (, f ( Background : Differential (1A 5

6 The limit of triangles and their slopes y = f x The derivative of the function f at The derivative function of the function f f ' ( = lim h 0 f ( + h f ( h f '(x = lim h 0 f (x + h f (x h y ' = f ' (x = df dx = d dx f (x Background : Differential (1A 6

7 The derivative as a function f x y = f x x 2 x 3 f f x 2 f x 3 Derivative Function y ' = f ' (x f ' x f ' = lim h 0 f (x + h f (x h x 2 x 3 f ' x 2 f ' x 3 Background : Differential (1A 7

8 The notations of derivative functions Largrange's Notation y ' = f ' x f ' (x f ' Leibniz's Notation x 2 f ' x 2 dy dx = d dx f (x x 3 f ' x 3 Newton's Notation ẏ = ḟ x not a ratio. slope of a tangent line lim h 0 f (x + h f (x h Euler's Notation D x y = D x f x derivative with respect to x x is an independent variable Background : Differential (1A 8

9 Another kind of triangles and their slope y = f x y ' = f ' x given x1 f the slope of a tangent line Background : Differential (1A 9

10 Differential in calculus Differential: dx, dy, infinitesimals a change in the linearization of a function of, or relating to differentiation function f dx the linearization of a function f dy f dx dx dx f Background : Differential (1A 10

11 Approximation Differential: dx, dy, f ( + dx f ( + dy = f ( + f '( dx f '( = lim h 0 f ( + h f ( h function the linearization of a function f dx f dy f dx dx dx f Background : Differential (1A 11

12 Differential as a function Line equation in the new coordinate. dy dy = f ' ( dx slope = f ' ( = dy 1 d f ( dy 1 dy 2 dy 3 d dx 2 dx 3 dx = dy 2 dx 2 = dy 3 dx 3 Background : Differential (1A 12

13 Differentials and Derivatives (1 dy = f ' (x dx dy dy = f ' ( dx dy = df dx dx slope = f ' ( = dy 1 d differentials derivative f ( dy 1 dy 2 dy 3 d dx 2 dx 3 dx = dy 2 dx 2 = dy 3 dx 3 dy dx = f ' (x ratio not a ratio Background : Differential (1A 13

14 Differentials and Derivatives (2 f ( + dx f ( + dy = f ( + f '( dx dy dy = f ' ( dx slope = f ' ( for small enough dx f ( + dx = f ( + dy lim dx 0 f ( dy 1 dy 2 dy 3 d dx 2 dx 3 dx = dy 1 d = dy 2 dx 2 = dy 3 dx 3 = f ( + f '( dx lim dx 0 f ( + dx f ( dx = f ' ( Background : Differential (1A 14

15 Differentials and Derivatives (3 dy = f ' (x dx dy = df dx dx dy = ḟ dx dy = D x f dx dy = f '(x dx dy = df dx dx y = f (x dy = 1dy = y Background : Differential (1A 15

16 Integration Constant C place a constant place another constant differs by a constant place only one constant from the beginning dy = f '(x dx dy = f '(x dx + C dy = df dx dx dy = df dx dx + C y + C 1 = f (x + C 2 y = f (x + C y = f (x + C Background : Differential (1A 16

17 Differential as a function The differential of a function ƒ(x of a single real variable x is the function of two independent real variables x and dx given by dy = f ' (x dx Line equation in the new coordinate. dy dy = f ' dx slope = f ' (x, dx dy f dx Background : Differential (1A 17

18 Applications of Differentials (1 Substitution Rule f ( g(x g'(x dx = f ( u du (I u = g( x du = g ' (xdx du = dg dx dx (II f (g dg dx dx = f ( g dg Background : Differential (1A 18

19 Applications of Differentials (2 Integration by parts f (xg ' (x dx = f (xg(x f ' (xg(x dx u = f (x v = g(x du = f ' (x dx dv = g'( xdx du = df dx dx dv = dg dx dx f (xg ' (x dx = f (xg(x f ' (xg(x dx u dv = u v v du Background : Differential (1A 19

20 Derivatives and Differentials (large dx dx = 0.6; m = f ' ( tangent at f ( + f ' ( dx f ' ( dx f (x 2 + f ' (x 2 dx f ( = sin( dx f (x = sin(x x 2 Background : Differential (1A 20

21 Euler Method of Approximation (large dx dx = 0.6; m = f ' ( tangent at f (x 2 f ( + f ' ( dx f (x 3 f (x 2 + f ' (x 2 dx (f (x 2 + f ' (x 2 dx + f '(x 2 dx f ( = sin( Euler Method dx f (x = sin(x Initial Value x 2 x 3 Background : Differential (1A 21

22 Derivatives and Differentials (large dx = 0.6 dx = 0.6; dy = f ' (x dx dy = df dx dx dy = f '(x dx dy = df dx dx y = f (x Background : Differential (1A 22

23 Derivatives and Differentials (small dx = 0.2 dx = 0.2; dy = f ' (x dx dy = df dx dx dy = f '(x dx dy = df dx dx y = f (x Background : Differential (1A 23

24 Euler's Method of Approximation Background : Differential (1A 24

25 Octave Code clf; hold off; dx = 0.2; x = 0 : dx : 8; y = sin(x; plot(x, y; t = sin(x + cos(x*dx ; y1 = [y(1, t(1:length(y-1]; y2 = [0]; y2(1 = y(1; for i=1:length(y-1 y2(i+1 = y2(i + cos((i*dx*dx; endfor hold on t = 0:0.01:8; plot(t, sin(t, "color", "blue"; plot(x, y, "color", 'blue', "marker", 'o'; plot(x, y1, "color", 'red', "marker", '+'; plot(x, y2, "color", 'green', "marker", '*'; Background : Differential (1A 25

26 Anti-derivatives Background : Differential (1A 26

27 Anti-derivative? differentiation derivative of? f (x? Anti-derivative of f(x Anti-differentiation f (x Background : Differential (1A 27

28 Anti-derivative and Indefinite Integral F '(x = f (x F(x Anti-derivative without constant the most simple anti-derivative F( x + C the most general anti-derivative f (xdx Indefinite Integral : a function of x f (xdx = F (x + C Background : Differential (1A 28

29 Anti-derivative Examples F 1 (x= 1 3 x3 differentiation All are Anti-derivative of f(x F 2 (x= 1 3 x Anti-differentiation f (x=x 2 F 3 (x= 1 3 x3 49 the most general anti-derivative of f(x 1 3 x3 + C indefinite Integral of f(x x 2 dx Background : Differential (1A 29

30 Indefinite Integrals a 1 dx x a 1 dx dx dy a x a x + C y + C given a variable x indefinite integral a d f d x dx x c d f d x dx d f d x dx f ( f (a f (x f (a f (x + C given a variable x indefinite integral Background : Differential (1A 30

31 Indefinite Integrals via the Definite Integral x a f (t dt definite integral x a f (t dt anti-derivative f (x indefinite integral f (xdx anti-derivative f (x f (x d x = F (x + C x a f (t d t = F (x F(a a common reference point : arbitrary Background : Differential (1A 31

32 Definite Integrals via the Definite Integral x a f (t dt definite integral x a f (t dt anti-derivative f (x indefinite integral f ( xdx anti-derivative f (x x 2 f (t dt x = 1 a x f (t dt + 2 a f (t dt a common reference point : arbitrary [ F (x + c ] x1 x 2 = F( x 2 F ( [ F (x ] x1 x 2 = F ( F (x 2 Anti-derivative without constant Background : Differential (1A 32

33 Indefinite Integral Examples x 0 f (x dx = [ 1 3 x3]0 x = 1 3 x3 f (x=x 2 x a f (x dx = [ 1 3 x3]a x = 1 3 x3 1 3 a3 x a f (t dt = [ 1 3 t3]a x = 1 3 x3 1 3 a3 anti-derivative by the definite integral of f(x x a t 2 dt = 1 3 x3 1 3 a2 d x dx a f (t dt = f (x = x 2 indefinite integral of f(x x 2 dx = 1 3 x3 + C Background : Differential (1A 33

34 Definite Integrals on [a, ] 1 dx f ' (x dx f '(x = 1 a a view (I 1 dx a a g(x dx g(x = 1 view (II view (I view (II f ' (x dx [ f (x ] a = f ( f (a a g(x dx [G(x] a = G( G(a a Background : Differential (1A 34

35 Definite Integrals over an interval [, x 2 ] view (I view (II length G( x = x 1 area f '( x = 1 x g(x = 1 a x 2 a x 2 arbitrary reference point (a, f(a arbitrary reference point (a, G(a x 2 x 2 f ' (x dx = g(x dx = [ f (x ] x1 x 2 = f (x 2 f ( [G(x] x1 x 2 = G(x 2 G( Background : Differential (1A 35

36 Definite Integrals on [a, ] and [a, x 2 ] f ' (x G(x area G(x 2 G( length a x 2 a x 2 G(x area G(x 2 G( length a x 2 a x 2 c x 2 f '(xdx c f ' ( xdx c x 2 g(xdx c g(xdx Background : Differential (1A 36

37 Derivative Function and Indefinite Integrals f ' ( lim h 0 f ( + h f ( h x 2 f ( x dx f ' (x 2 lim h 0 f (x 2 + h f (x 2 h x 4 x 3 f ( x dx f ' (x 3 lim h 0 f (x 3 + h f (x 3 h x 6 x 5 f ( x dx, x 2, x 3 [, x 2 ],[ x 3, x 4 ], [x 5, x 6 ] f ' (x = lim h 0 f ( x + h f (x h x F (x + C = a f ( x dx f ' (, f ' (x 2, f '( x 3 function of x [ F( x ] x 2, [ F( x ]x 3 x 4 x, [ F (x 6 ]x5 function of x Background : Differential (1A 37

38 a Background : Differential (1A 38

39 Differential Equation f (x = e 3 x f (x? f ' (x = 3e 3 x f ' (x 3 f (x = 3 e 3x 3 e 3 x = 0 f ' (x 3 f (x = 0 Background : Differential (1A 39

40 First Order Examples (y=f(x f ' (x = f (x y ' = y f (x? y? An Example of A First Order Differential Equation f (x = c e x for all x y = c e x I : (, + f ' (x = f (x y ' = y f (x? y? f (0 = 3 f (0 = 3 An Example of A First Order Initial Value Problem f (x = 3e x for all x y = 3e x I : (, + Background : Differential (1A 40

41 Second Order Examples (y=f(x f ' ' (x = f (x y ' ' = y f (x = y = An Example of A Second Order Differential Equation c 1 e +x + c 2 e x for all x c 1 e +x + c 2 e x I : (, + f ' ' (x = f (x y ' ' = y f (x = y = f ' (0 = 0 y ' (0 = 0 f (0 = 1 f (0 = 1 +1 e +x 1 e x +1 e +x 1 e x An Example of A Second Order Initial Value Problem for all x I : (, + Guess the possible solution. Background : Differential (1A 41

42 General First & Second Order IVPs (y=f(x First Order Initial Value Problem f ' (x = f (x y ' = y f (0 = 3 f (0 = 3 d y = g(x, y y ' = g(x, y d x y(x 0 = y 0 y(x 0 = y 0 Second Order Initial Value Problem f ' ' (x = f (x y ' ' = y f ' (0 = 0 y ' (0 = 0 f (0 = 1 f (0 = 1 d 2 y d x 2 = g(x, y, y ' y(x 0 = y 0 y ' (x 0 = y 1 y ' ' = g(x, y, y ' y(x 0 = y 0 y ' (x 0 = y 1 Guess the possible solution. Background : Differential (1A 42

43 References [1] [2] M.L. Boas, Mathematical Methods in the Physical Sciences [3] E. Kreyszig, Advanced Engineering Mathematics [4] D. G. Zill, W. S. Wright, Advanced Engineering Mathematics

Introduction to ODE's (0A) Young Won Lim 3/9/15

Introduction to ODE's (0A) Young Won Lim 3/9/15 Introduction to ODE's (0A) Copyright (c) 2011-2014 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2

More information

Separable Equations (1A) Young Won Lim 3/24/15

Separable Equations (1A) Young Won Lim 3/24/15 Separable Equations (1A) Copyright (c) 2011-2015 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or

More information

Introduction to ODE's (0A) Young Won Lim 3/12/15

Introduction to ODE's (0A) Young Won Lim 3/12/15 Introduction to ODE's (0A) Copyright (c) 2011-2015 Young W. Lim. Permission is grnted to copy, distribute nd/or modify this document under the terms of the GNU Free Documenttion License, Version 1.2 or

More information

Higher Order ODE's (3A) Young Won Lim 7/7/14

Higher Order ODE's (3A) Young Won Lim 7/7/14 Higher Order ODE's (3A) Copyright (c) 2011-2014 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or

More information

Higher Order ODE's (3A) Young Won Lim 12/27/15

Higher Order ODE's (3A) Young Won Lim 12/27/15 Higher Order ODE's (3A) Copyright (c) 2011-2015 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or

More information

Higher Order ODE's (3A) Young Won Lim 7/8/14

Higher Order ODE's (3A) Young Won Lim 7/8/14 Higher Order ODE's (3A) Copyright (c) 2011-2014 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or

More information

Higher Order ODE's, (3A)

Higher Order ODE's, (3A) Higher Order ODE's, (3A) Initial Value Problems, and Boundary Value Problems Copyright (c) 2011-2015 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms

More information

Introduction to ODE's (0P) Young Won Lim 12/27/14

Introduction to ODE's (0P) Young Won Lim 12/27/14 Introuction to ODE's (0P) Copyright (c) 2011-2014 Young W. Lim. Permission is grante to copy, istribute an/or moify this ocument uner the terms of the GNU Free Documentation License, Version 1.2 or any

More information

Second Order ODE's (2A) Young Won Lim 5/5/15

Second Order ODE's (2A) Young Won Lim 5/5/15 Second Order ODE's (2A) Copyright (c) 2011-2015 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or

More information

Background Trigonmetry (2A) Young Won Lim 5/5/15

Background Trigonmetry (2A) Young Won Lim 5/5/15 Background Trigonmetry (A) Copyright (c) 014 015 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1. or

More information

Differentiation Rules (2A) Young Won Lim 1/30/16

Differentiation Rules (2A) Young Won Lim 1/30/16 Differentiation Rules (2A) Copyright (c) 2011-2016 Young W. Lim. Permission is grante to copy, istribute an/or moify this ocument uner the terms of the GNU Free Documentation License, Version 1.2 or any

More information

Linear Equations with Constant Coefficients (2A) Young Won Lim 4/13/15

Linear Equations with Constant Coefficients (2A) Young Won Lim 4/13/15 Linear Equations with Constant Coefficients (2A) Copyright (c) 2011-2014 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation

More information

Definitions of the Laplace Transform (1A) Young Won Lim 1/31/15

Definitions of the Laplace Transform (1A) Young Won Lim 1/31/15 Definitions of the Laplace Transform (A) Copyright (c) 24 Young W. Lim. Permission is granted to copy, distriute and/or modify this document under the terms of the GNU Free Documentation License, Version.2

More information

General Vector Space (2A) Young Won Lim 11/4/12

General Vector Space (2A) Young Won Lim 11/4/12 General (2A Copyright (c 2012 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version

More information

Differentiation Rules (2A) Young Won Lim 2/22/16

Differentiation Rules (2A) Young Won Lim 2/22/16 Differentiation Rules (2A) Copyright (c) 2011-2016 Young W. Lim. Permission is grante to copy, istribute an/or moify this ocument uner the terms of the GNU Free Documentation License, Version 1.2 or any

More information

Definite Integrals. Young Won Lim 6/25/15

Definite Integrals. Young Won Lim 6/25/15 Definite Integrls Copyright (c 2011-2015 Young W. Lim. Permission is grnted to copy, distribute nd/or modify this document under the terms of the GNU Free Documenttion License, Version 1.2 or ny lter version

More information

Matrix Transformation (2A) Young Won Lim 11/9/12

Matrix Transformation (2A) Young Won Lim 11/9/12 Matrix (A Copyright (c 01 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1. or any later version published

More information

Line Integrals (4A) Line Integral Path Independence. Young Won Lim 10/22/12

Line Integrals (4A) Line Integral Path Independence. Young Won Lim 10/22/12 Line Integrals (4A Line Integral Path Independence Copyright (c 2012 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License,

More information

DFT Frequency (9A) Each Row of the DFT Matrix. Young Won Lim 7/31/10

DFT Frequency (9A) Each Row of the DFT Matrix. Young Won Lim 7/31/10 DFT Frequency (9A) Each ow of the DFT Matrix Copyright (c) 2009, 2010 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GU Free Documentation License,

More information

Line Integrals (4A) Line Integral Path Independence. Young Won Lim 11/2/12

Line Integrals (4A) Line Integral Path Independence. Young Won Lim 11/2/12 Line Integrals (4A Line Integral Path Independence Copyright (c 2012 Young W. Lim. Permission is granted to copy, distriute and/or modify this document under the terms of the GNU Free Documentation License,

More information

Integrals. Young Won Lim 12/29/15

Integrals. Young Won Lim 12/29/15 Integrls Copyright (c) 2011-2015 Young W. Lim. Permission is grnted to copy, distribute nd/or modify this document under the terms of the GNU Free Documenttion License, Version 1.2 or ny lter version published

More information

Capacitor in an AC circuit

Capacitor in an AC circuit Capacitor in an AC circuit Copyright (c) 2011 2017 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2

More information

Relations (3A) Young Won Lim 3/27/18

Relations (3A) Young Won Lim 3/27/18 Relations (3A) Copyright (c) 2015 2018 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later

More information

Surface Integrals (6A)

Surface Integrals (6A) Surface Integrals (6A) Surface Integral Stokes' Theorem Copright (c) 2012 Young W. Lim. Permission is granted to cop, distribute and/or modif this document under the terms of the GNU Free Documentation

More information

Expected Value (10D) Young Won Lim 6/12/17

Expected Value (10D) Young Won Lim 6/12/17 Expected Value (10D) Copyright (c) 2017 Young W. Lim. Permissios granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later

More information

Complex Trigonometric and Hyperbolic Functions (7A)

Complex Trigonometric and Hyperbolic Functions (7A) Complex Trigonometric and Hyperbolic Functions (7A) 07/08/015 Copyright (c) 011-015 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation

More information

Capacitor Young Won Lim 06/22/2017

Capacitor Young Won Lim 06/22/2017 Capacitor Copyright (c) 2011 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version

More information

CT Rectangular Function Pairs (5B)

CT Rectangular Function Pairs (5B) C Rectangular Function Pairs (5B) Continuous ime Rect Function Pairs Copyright (c) 009-013 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU

More information

Complex Series (3A) Young Won Lim 8/17/13

Complex Series (3A) Young Won Lim 8/17/13 Complex Series (3A) 8/7/3 Copyright (c) 202, 203 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version.2 or

More information

Matrix Transformation (2A) Young Won Lim 11/10/12

Matrix Transformation (2A) Young Won Lim 11/10/12 Matrix (A Copyright (c 0 Young W. im. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation icense, Version. or any later version published

More information

General CORDIC Description (1A)

General CORDIC Description (1A) General CORDIC Description (1A) Copyright (c) 2010, 2011, 2012 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License,

More information

Background ODEs (2A) Young Won Lim 3/7/15

Background ODEs (2A) Young Won Lim 3/7/15 Background ODEs (2A) Copyright (c) 2014-2015 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any

More information

Fourier Analysis Overview (0A)

Fourier Analysis Overview (0A) CTFS: Fourier Series CTFT: Fourier Transform DTFS: Fourier Series DTFT: Fourier Transform DFT: Discrete Fourier Transform Copyright (c) 2011-2016 Young W. Lim. Permission is granted to copy, distribute

More information

Complex Functions (1A) Young Won Lim 2/22/14

Complex Functions (1A) Young Won Lim 2/22/14 Complex Functions (1A) Copyright (c) 2011-2014 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or

More information

Phasor Young Won Lim 05/19/2015

Phasor Young Won Lim 05/19/2015 Phasor Copyright (c) 2009-2015 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version

More information

Surface Integrals (6A)

Surface Integrals (6A) urface Integrals (6A) urface Integral tokes' Theorem Copright (c) 2012 Young W. Lim. Permission is granted to cop, distribute and/or modif this document under the terms of the GNU Free Documentation License,

More information

Capacitor in an AC circuit

Capacitor in an AC circuit Capacitor in an AC circuit Copyright (c) 2011 2017 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2

More information

Capacitor in an AC circuit

Capacitor in an AC circuit Capacitor in an AC circuit Copyright (c) 2011 2017 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2

More information

Background Complex Analysis (1A) Young Won Lim 9/2/14

Background Complex Analysis (1A) Young Won Lim 9/2/14 Background Complex Analsis (1A) Copright (c) 2014 Young W. Lim. Permission is granted to cop, distribute and/or modif this document under the terms of the GNU Free Documentation License, Version 1.2 or

More information

Capacitor in an AC circuit

Capacitor in an AC circuit Capacitor in an AC circuit Copyright (c) 2011 2017 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2

More information

Root Locus (2A) Young Won Lim 10/15/14

Root Locus (2A) Young Won Lim 10/15/14 Root Locus (2A Copyright (c 2014 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version

More information

Fourier Analysis Overview (0A)

Fourier Analysis Overview (0A) CTFS: Fourier Series CTFT: Fourier Transform DTFS: Fourier Series DTFT: Fourier Transform DFT: Discrete Fourier Transform Copyright (c) 2011-2016 Young W. Lim. Permission is granted to copy, distribute

More information

Capacitors in an AC circuit

Capacitors in an AC circuit Capacitors in an AC circuit Copyright (c) 2011 2017 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2

More information

Capacitor in an AC circuit

Capacitor in an AC circuit Capacitor in an AC circuit Copyright (c) 2011 2017 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2

More information

2.12: Derivatives of Exp/Log (cont d) and 2.15: Antiderivatives and Initial Value Problems

2.12: Derivatives of Exp/Log (cont d) and 2.15: Antiderivatives and Initial Value Problems 2.12: Derivatives of Exp/Log (cont d) and 2.15: Antiderivatives and Initial Value Problems Mathematics 3 Lecture 14 Dartmouth College February 03, 2010 Derivatives of the Exponential and Logarithmic Functions

More information

Group & Phase Velocities (2A)

Group & Phase Velocities (2A) (2A) 1-D Copyright (c) 2011 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published

More information

Capacitor in an AC circuit

Capacitor in an AC circuit Capacitor in an AC circuit Copyright (c) 2011 2017 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2

More information

Capacitor in an AC circuit

Capacitor in an AC circuit Capacitor in an AC circuit Copyright (c) 2011 2017 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2

More information

The Growth of Functions (2A) Young Won Lim 4/6/18

The Growth of Functions (2A) Young Won Lim 4/6/18 Copyright (c) 2015-2018 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published

More information

Signal Functions (0B)

Signal Functions (0B) Signal Functions (0B) Signal Functions Copyright (c) 2009-203 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License,

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

Detect Sensor (6B) Eddy Current Sensor. Young Won Lim 11/19/09

Detect Sensor (6B) Eddy Current Sensor. Young Won Lim 11/19/09 Detect Sensor (6B) Eddy Current Sensor Copyright (c) 2009 Young W. Lim. Permission is granteo copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version

More information

Capacitor and Inductor

Capacitor and Inductor Capacitor and Inductor Copyright (c) 2015 2017 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or

More information

Capacitor and Inductor

Capacitor and Inductor Capacitor and Inductor Copyright (c) 2015 2017 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or

More information

Discrete Time Rect Function(4B)

Discrete Time Rect Function(4B) Discrete Time Rect Function(4B) Discrete Time Rect Functions Copyright (c) 29-213 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation

More information

Digital Signal Octave Codes (0A)

Digital Signal Octave Codes (0A) Digital Signal Periodic Conditions Copyright (c) 2009-2017 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version

More information

Discrete Time Rect Function(4B)

Discrete Time Rect Function(4B) Discrete Time Rect Function(4B) Discrete Time Rect Functions Copyright (c) 29-23 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation

More information

Dispersion (3A) 1-D Dispersion. Young W. Lim 10/15/13

Dispersion (3A) 1-D Dispersion. Young W. Lim 10/15/13 1-D Dispersion Copyright (c) 013. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1. or any later version published

More information

Fourier Analysis Overview (0B)

Fourier Analysis Overview (0B) CTFS: Continuous Time Fourier Series CTFT: Continuous Time Fourier Transform DTFS: Fourier Series DTFT: Fourier Transform DFT: Discrete Fourier Transform Copyright (c) 2009-2016 Young W. Lim. Permission

More information

Background LTI Systems (4A) Young Won Lim 4/20/15

Background LTI Systems (4A) Young Won Lim 4/20/15 Background LTI Systems (4A) Copyright (c) 2014-2015 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2

More information

Lecture 4: Integrals and applications

Lecture 4: Integrals and applications Lecture 4: Integrals and applications Lejla Batina Institute for Computing and Information Sciences Digital Security Version: autumn 2013 Lejla Batina Version: autumn 2013 Calculus en Kansrekenen 1 / 18

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

Lecture 5: Integrals and Applications

Lecture 5: Integrals and Applications Lecture 5: Integrals and Applications Lejla Batina Institute for Computing and Information Sciences Digital Security Version: spring 2012 Lejla Batina Version: spring 2012 Wiskunde 1 1 / 21 Outline The

More information

Audio Signal Generation. Young Won Lim 2/2/18

Audio Signal Generation. Young Won Lim 2/2/18 Generation Copyright (c) 2016-2018 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version

More information

CLTI System Response (4A) Young Won Lim 4/11/15

CLTI System Response (4A) Young Won Lim 4/11/15 CLTI System Response (4A) Copyright (c) 2011-2015 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2

More information

Magnetic Sensor (3B) Magnetism Hall Effect AMR Effect GMR Effect. Young Won Lim 9/23/09

Magnetic Sensor (3B) Magnetism Hall Effect AMR Effect GMR Effect. Young Won Lim 9/23/09 Magnetic Sensor (3B) Magnetism Hall Effect AMR Effect GMR Effect Copyright (c) 2009 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation

More information

Digital Signal Octave Codes (0A)

Digital Signal Octave Codes (0A) Digital Signal Periodic Conditions Copyright (c) 2009-2017 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version

More information

CLTI Differential Equations (3A) Young Won Lim 6/4/15

CLTI Differential Equations (3A) Young Won Lim 6/4/15 CLTI Differential Equations (3A) Copyright (c) 2011-2015 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version

More information

Exam 3 Solutions. Multiple Choice Questions

Exam 3 Solutions. Multiple Choice Questions MA 4 Exam 3 Solutions Fall 26 Exam 3 Solutions Multiple Choice Questions. The average value of the function f (x) = x + sin(x) on the interval [, 2π] is: A. 2π 2 2π B. π 2π 2 + 2π 4π 2 2π 4π 2 + 2π 2.

More information

Down-Sampling (4B) Young Won Lim 10/25/12

Down-Sampling (4B) Young Won Lim 10/25/12 Down-Sampling (4B) /5/ Copyright (c) 9,, Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version. or any later

More information

Signals and Spectra (1A) Young Won Lim 11/26/12

Signals and Spectra (1A) Young Won Lim 11/26/12 Signals and Spectra (A) Copyright (c) 202 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version.2 or any later

More information

Change of Variables: Indefinite Integrals

Change of Variables: Indefinite Integrals Change of Variables: Indefinite Integrals Mathematics 11: Lecture 39 Dan Sloughter Furman University November 29, 2007 Dan Sloughter (Furman University) Change of Variables: Indefinite Integrals November

More information

Double Integrals (5A)

Double Integrals (5A) Doule Integrls (5A) Doule Integrl Doule Integrls in Polr oordintes Green's Theorem opyright (c) 2012 Young W. Lim. Permission is grnted to copy, distriute nd/or modify this document under the terms of

More information

Audio Signal Generation. Young Won Lim 1/29/18

Audio Signal Generation. Young Won Lim 1/29/18 Generation Copyright (c) 2016-2018 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version

More information

Hyperbolic Functions (1A)

Hyperbolic Functions (1A) Hyperbolic Functions (A) 08/3/04 Copyright (c) 0-04 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version. or

More information

Hamiltonian Cycle (3A) Young Won Lim 5/5/18

Hamiltonian Cycle (3A) Young Won Lim 5/5/18 Hamiltonian Cycle (3A) Copyright (c) 015 018 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1. or any

More information

Digital Signal Octave Codes (0A)

Digital Signal Octave Codes (0A) Digital Signal Periodic Conditions Copyright (c) 2009-207 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version.2

More information

Digital Signal Octave Codes (0A)

Digital Signal Octave Codes (0A) Digital Signal Periodic Conditions Copyright (c) 2009-207 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version.2

More information

Bayes Theorem (10B) Young Won Lim 6/3/17

Bayes Theorem (10B) Young Won Lim 6/3/17 Bayes Theorem (10B) Copyright (c) 2017 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later

More information

Group Velocity and Phase Velocity (1A) Young Won Lim 5/26/12

Group Velocity and Phase Velocity (1A) Young Won Lim 5/26/12 Group Velocity and Phase Velocity (1A) Copyright (c) 211 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version

More information

Definitions of the Laplace Transform (1A) Young Won Lim 2/9/15

Definitions of the Laplace Transform (1A) Young Won Lim 2/9/15 Definition of the aplace Tranform (A) 2/9/5 Copyright (c) 24 Young W. im. Permiion i granted to copy, ditriute and/or modify thi document under the term of the GNU Free Documentation icene, Verion.2 or

More information

Audio Signal Generation. Young Won Lim 2/2/18

Audio Signal Generation. Young Won Lim 2/2/18 Generation Copyright (c) 2016-2018 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version

More information

Down-Sampling (4B) Young Won Lim 11/15/12

Down-Sampling (4B) Young Won Lim 11/15/12 Down-Sampling (B) /5/ Copyright (c) 9,, Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version. or any later

More information

Review for the Final Exam

Review for the Final Exam Math 171 Review for the Final Exam 1 Find the limits (4 points each) (a) lim 4x 2 3; x x (b) lim ( x 2 x x 1 )x ; (c) lim( 1 1 ); x 1 ln x x 1 sin (x 2) (d) lim x 2 x 2 4 Solutions (a) The limit lim 4x

More information

Up-Sampling (5B) Young Won Lim 11/15/12

Up-Sampling (5B) Young Won Lim 11/15/12 Up-Sampling (5B) Copyright (c) 9,, Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version. or any later version

More information

Calculus I Announcements

Calculus I Announcements Slide 1 Calculus I Announcements Read sections 4.2,4.3,4.4,4.1 and 5.3 Do the homework from sections 4.2,4.3,4.4,4.1 and 5.3 Exam 3 is Thursday, November 12th See inside for a possible exam question. Slide

More information

Digital Signal Octave Codes (0A)

Digital Signal Octave Codes (0A) Digital Signal Periodic Conditions Copyright (c) 2009-207 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version.2

More information

Propagating Wave (1B)

Propagating Wave (1B) Wave (1B) 3-D Wave Copyright (c) 2011 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later

More information

Hilbert Inner Product Space (2B) Young Won Lim 2/7/12

Hilbert Inner Product Space (2B) Young Won Lim 2/7/12 Hilbert nner Product Space (2B) Copyright (c) 2009-2011 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version

More information

Implication (6A) Young Won Lim 3/17/18

Implication (6A) Young Won Lim 3/17/18 Implication (6A) 3/17/18 Copyright (c) 2015 2018 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or

More information

SCORE. Exam 3. MA 114 Exam 3 Fall 2016

SCORE. Exam 3. MA 114 Exam 3 Fall 2016 Exam 3 Name: Section and/or TA: Do not remove this answer page you will return the whole exam. You will be allowed two hours to complete this test. No books or notes may be used. You may use a graphing

More information

AP Calculus Testbank (Chapter 6) (Mr. Surowski)

AP Calculus Testbank (Chapter 6) (Mr. Surowski) AP Calculus Testbank (Chapter 6) (Mr. Surowski) Part I. Multiple-Choice Questions 1. Suppose that f is an odd differentiable function. Then (A) f(1); (B) f (1) (C) f(1) f( 1) (D) 0 (E). 1 1 xf (x) =. The

More information

Digital Signal Octave Codes (0A)

Digital Signal Octave Codes (0A) Digital Signal Periodic Conditions Copyright (c) 2009-207 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version.2

More information

= π + sin π = π + 0 = π, so the object is moving at a speed of π feet per second after π seconds. (c) How far does it go in π seconds?

= π + sin π = π + 0 = π, so the object is moving at a speed of π feet per second after π seconds. (c) How far does it go in π seconds? Mathematics 115 Professor Alan H. Stein April 18, 005 SOLUTIONS 1. Define what is meant by an antiderivative or indefinite integral of a function f(x). Solution: An antiderivative or indefinite integral

More information

Bilateral Laplace Transform (6A) Young Won Lim 2/16/15

Bilateral Laplace Transform (6A) Young Won Lim 2/16/15 Bilterl Lplce Trnsform (6A) 2/6/5 Copyright (c) 25 Young W. Lim. Permission is grnted to copy, distribute nd/or modify this document under the terms of the GNU Free Documenttion License, Version.2 or ny

More information

Series Solution of Linear Ordinary Differential Equations

Series Solution of Linear Ordinary Differential Equations Series Solution of Linear Ordinary Differential Equations Department of Mathematics IIT Guwahati Aim: To study methods for determining series expansions for solutions to linear ODE with variable coefficients.

More information

Differential calculus. Background mathematics review

Differential calculus. Background mathematics review Differential calculus Background mathematics review David Miller Differential calculus First derivative Background mathematics review David Miller First derivative For some function y The (first) derivative

More information

Group Delay and Phase Delay (1A) Young Won Lim 7/19/12

Group Delay and Phase Delay (1A) Young Won Lim 7/19/12 Group Delay and Phase Delay (A) 7/9/2 Copyright (c) 2 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version.2

More information

FSM Examples. Young Won Lim 11/6/15

FSM Examples. Young Won Lim 11/6/15 /6/5 Copyright (c) 2 25 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version.2 or any later version published

More information

Section 2.1, Section 3.1 Rate of change, Tangents and Derivatives at a point

Section 2.1, Section 3.1 Rate of change, Tangents and Derivatives at a point Section 2.1, Section 3.1 Rate of change, Tangents and Derivatives at a point Line through P and Q approaches to the tangent line at P as Q approaches P. That is as a + h a = h gets smaller. Slope of the

More information