Presentation is loading. Please wait.

Presentation is loading. Please wait.

Calculus S. Awad, Ph.D. M. Corless, M.S.E.E. E.C.E. Department University of Michigan-Dearborn Math Review with Matlab: Differentiation.

Similar presentations


Presentation on theme: "Calculus S. Awad, Ph.D. M. Corless, M.S.E.E. E.C.E. Department University of Michigan-Dearborn Math Review with Matlab: Differentiation."— Presentation transcript:

1

2 Calculus S. Awad, Ph.D. M. Corless, M.S.E.E. E.C.E. Department University of Michigan-Dearborn Math Review with Matlab: Differentiation

3 Calculus:Differentiation 2 n General Derivatives General Derivatives n Diff Command Diff Command n Differentiation Example Differentiation Example n Product Rule Example Product Rule Example n Chain Rule Example Chain Rule Example n Partial Differentiation Partial Differentiation n Partial Derivative Example Partial Derivative Example n Total Difference Approximation Total Difference Approximation n Sensitivity Analysis Example Sensitivity Analysis Example

4 Calculus:Differentiation 3 General Derivatives n In general, derivatives are used to determine how quickly or slowly a function varies with respect to a changing variable n For a two dimensional continuous curve, the derivative can be thought of as representing the instantaneous slope of the curve with respect to the changing variable n The derivative operation is a limiting process defined as:

5 Calculus:Differentiation 4 Differential Pairs n A few common differential pairs are shown below n Note that a is a constant

6 Calculus:Differentiation 5 Higher Order Derivatives n Higher order derivatives can also be defined n The second derivative of a function f(x) is defined as: n The nth derivative of a function f(x) is defined as:

7 Calculus:Differentiation 6 Diff Command The diff command can be used to differentiate symbolic variables diff(s) differentiates s with respect to the Matlab default free variable diff(s,v) differentiates s with respect to the free variable v diff(s,v,n) differentiates s n times with respect to the free variable v ( n must be positive)

8 Calculus:Differentiation 7 Differentiation Example n Given the sinusoidal function f(x): 1)Use Matlab to determine the first derivative of f(x) 3)Use Matlab to determine the second, third, and fourth derivatives of f(x) 2)Plot f(x) and its first derivative to verify that the first derivative of f(x) corresponds to the scaled instantaneous slope of f(x)

9 Calculus:Differentiation 8 First Derivative Use the diff command to determine the first derivative thus verifying the differential pair: » syms x » f=sin(2*x); » dfdx=diff(f) dfdx = 2*cos(2*x)

10 Calculus:Differentiation 9 Slope Analogy n Plot f(x)=sin(2x) and its df/dx=2cos(2x) » subplot(2,1,1) » ezplot(f) » subplot(2,1,1) » ezplot(f,0,pi) » grid on » subplot(2,1,2) » ezplot(dfdx,0,pi) » grid on n Show relationship between slope of f(x) and the derivative

11 Calculus:Differentiation 10 Second Derivative n Calculate second derivative from the first derivative » d2fdx2=diff(dfdx) d2fdx2 = -4*sin(2*x) n Calculate second derivative f(x) by passing 2 as the number of times to differentiate n Both methods give the same result! » d2fdx2=diff(f,2) d2fdx2 = -4*sin(2*x)

12 Calculus:Differentiation 11 Higher Order Differentiation n Calculate the third and fourth derivatives » d3fdx3=diff(f,3) d3fdx3 = -8*cos(2*x) » d4fdx4=diff(f,4) d4fdx4 = 16*sin(2*x)

13 Calculus:Differentiation 12 Product Rule n The Product Rule is used to differentiate products of functions of the same variable and is defined as: n The Product Rule can be expressed in shorthand notation as:

14 Calculus:Differentiation 13 Product Rule Example n Use Matlab to verify the Product Rule 1)Create two arbitrary functions u(x) and v(x) both dependent on x 2)Let f(x)=u(x)v(x) 3)Use Matlab to differentiate f(x) and verify that:

15 Calculus:Differentiation 14 Product Rule Verification n Define u and v as functions of x » syms x » u=sym('u(x)'); » v=sym('v(x)'); n Create f as the product of u and v n Differentiate f and verify the Product Rule » f=u*v f = u(x)*v(x) » dfdx=diff(f,x); » pretty(dfdx) /d \ /d \ |-- u(x)| v(x) + u(x) |-- v(x)| \dx / \dx /

16 Calculus:Differentiation 15 Chain Rule Example n The Chain Rule is used to differentiate a function of a function and is defined as: 2)Differentiate f(x) with respect to x 3)Use Matlab to verify the result 1)Given f(x) where a and b are constants:

17 Calculus:Differentiation 16 Perform Chain Rule n Break into sections and differentiate n Use the chain rule to differentiate f(x)

18 Calculus:Differentiation 17 Verify Chain Rule Result n The result is easily verified in Matlab » syms a b x » f=(a+b*x^3)^2; » dfdx=diff(f) dfdx = 6*(a+b*x^3)*b*x^2

19 Calculus:Differentiation 18 n To signify that a derivative is with respect to one variable that another variable exists use the notations: First Partial Derivative of f(x,y) with respect to x: (y held constant) First Partial Derivative of f(x,y) with respect to y: (x held constant) Partial Differentiation n Used to determine the rate of changes for functions of multiple changing variables n Consider a function f(x,y) which is dependent on two variables x and y

20 Calculus:Differentiation 19 Second Partial Derivatives n Second partial derivatives of f(x,y) can be defined as: n Provided that the second partial derivatives are continuous at the point of question, the following relationship holds true:

21 Calculus:Differentiation 20 Partial Derivative Example n Given the function: n Use Matlab to determine: 1) The first partial derivatives: 2) The second partial derivatives: 3) Verify the relationship:

22 Calculus:Differentiation 21 » syms x y; » f=2*x^3*y^2 + y^3; First Derivatives The standard diff command is used to determine the first partial derivatives in Matlab » dfdy = diff(f,'y') dfdy = 4*x^3*y+3*y^2 » dfdx = diff(f) dfdx = 6*x^2*y^2

23 Calculus:Differentiation 22 Second Derivatives The second derivatives with respect to the same variable can be found by instructing setting the n parameter to 2 » d2fdx2 = diff(f,2) d2fdx2 = 12*x*y^2 » d2fdx2 = diff(f,'y',2) d2fdx2 = 4*x^3+6*y

24 Calculus:Differentiation 23 Second Derivatives n The second derivatives with respect to different variables must be calculated from the first derivatives » d2fdxy = diff( dfdy, 'x') d2fdxy = 12*x^2*y » d2fdyx = diff( dfdx, 'y') d2fdyx = 12*x^2*y Verified!

25 Calculus:Differentiation 24 Total Difference Approximation n Given a function f(x,y) dependent upon the two variables x and y Suppose that small changes  x in x and  y in y occur simultaneously As a result, f changes to f +  f which can be approximated as:

26 Calculus:Differentiation 25 n A common application of sensitivity analysis is to examine the change in a digital filter’s frequency response and stability due to coefficient quantization Sensitivity Analysis n The total difference approximation can be extended to a function of N variables where: n The total difference approximation can be used to perform sensitivity analysis of analog and digital systems

27 Calculus:Differentiation 26 Sensitivity Analysis Example Given a circuit with a resistance R=1k  and initial current I=100mA flowing through it: 1)Approximate the total change in power if : u Current may increase by 2% u Resistance may increase by 5% 2)Calculate the approximate new power and actual new power when both I and R change by the above percents n The power, P, in Watts, absorbed by the resistor can be calculated using the equation:

28 Calculus:Differentiation 27 Sensitivity Equations n Create symbolic expressions to determine the approximate change in power given known changes in resistance, R, and current, I. » syms I R Idelta Rdelta » P=I^2*R; » dPdI=diff(P,'I') dPdI = 2*I*R » dPdR=diff(P,'R') dPdR = I^2 » Pdelta = Rdelta*dPdR + Idelta*dPdI Pdelta = Rdelta*I^2+2*Idelta*I*R

29 Calculus:Differentiation 28 Determine Initial Power n Create symbolic variables to represent the desired conditions to analyze Describe  R and  I in terms of percent changes » I1 = sym(0.1);% I=100mA » R1 = sym(1000);% R=1k Ohms » Idelta1 = sym(0.02*I1);% I changes 2% » Rdelta1 = sym(0.05*R1);% R changes 5% » P1_sym = subs(P,{'R','I'},{'R1','I1'}) P1_sym = I1^2*R1 » P1initial= double(eval(P1_sym)) P1initial = 10

30 Calculus:Differentiation 29 Sensitivity Approximation Substitute the desired parameters into the general symbolic expressions to determine approximate  P » P1delta_sym = subs(Pdelta,... {'R','I','Rdelta','Idelta'},... {'R1','I1','Rdelta1','Idelta1'}) P1delta_sym = Rdelta1*I1^2+2*Idelta1*I1*R1 » P1delta_approx = double(eval(P1delta_sym)) P1delta_approx = 0.9

31 Calculus:Differentiation 30 New Power Calculations n Evaluate approximated new total power n Calculate the actual new power » P1final_approx = double(eval(P1_sym+P1delta_sym)) P1final_approx = 10.9000 » P1final_sym = subs(P,{'R','I'},... {'(R1+Rdelta1)','(I1+Idelta1)'}) P1final_sym = (I1+Idelta1)^2*(R1+Rdelta1) » P1final_act = double(eval(P1final_sym)) P1final_act = 10.9242

32 Calculus:Differentiation 31 Compare Results n Notice that the approximated power and actual new power are very close n Although this is a simplistic example, it demonstrates how the total difference approximation can be used to predict the response of more complicated systems without performing complex simulations The smaller the values of  R and  I are, the more accurate that  P will be

33 Calculus:Differentiation 32 Summary n Differentiation is used to determine the rate at which a function changes with respect to a changing variable The symbolic diff command can be used to differentiate functions. The user can specify the variable to differentiate with respect to and the number of times to differentiate n Partial differentiation is used to determine the rate of changes for functions of multiple changing variables n Total difference approximation and sensitivity analysis are used to approximate changes in a function based partial derivatives and on fixed changes in variables


Download ppt "Calculus S. Awad, Ph.D. M. Corless, M.S.E.E. E.C.E. Department University of Michigan-Dearborn Math Review with Matlab: Differentiation."

Similar presentations


Ads by Google