7-5-S-Laplace Transform Issues and Opportunities in Mathematica

Size: px
Start display at page:

Download "7-5-S-Laplace Transform Issues and Opportunities in Mathematica"

Transcription

1 7-5-S-Laplace Tranform Iue and Opportunitie in Mathematica The Laplace Tranform i a mathematical contruct that ha proven very ueful in both olving and undertanding differential equation. We introduce it and how it power here. Definition of Laplace Tranform of a function f(t) if the integral converge: L (f (t)) () = F () = 0 e - t f (t) dt In order to evaluate uch an integral we might be uing integration by part for f(t) of a different "ort" than exponential function. However, we turn to Mathematica to do the integration for u and ue it own powerful computation, look-up, and pattern matching algorithm to do Laplace Tranform. Thi "trange" integral tranform mot function (if the integral converge) from a t domain to an domain where i (in our cae) a real poitive number. Integrate[Exp[- t] f[t], {t, 0, Infinity}] ConditionalExpreion, Re[] > 0 Integrate[Exp[- t] Co[3 t], {t, 0, Infinity}] ConditionalExpreion, Re[] > Notice the retriction that Re[]>0 in order for u to have convergence to the quantity, /(9+^2). Thu /(9+^2) IS the Laplace Tranform of the function co(3t). Table of thee exit and we could viit them, however ince Mathematica can do thee intantly without u looking them up we do our computation of Laplace Tranform in Mathematica.

2 2 9-5-S-OverViewLaplaceTranform-StudentVerion.nb Often the domain i called the frequency domain, and the t domain i called the time domain, for if the following integral - the Laplace Tranform - i to make ene with repect to unit then the unit of mut be /Time, for in thi way *t ha no unit and o Exp[-*t] ha no unit. Thu the Laplace Tranform integral i obtained by jut integrating a function of t over an interval of time, [0, ) - reulting in a function of, we call it L (f(t))() = F(). F[_] = Integrate[Exp[- t] f[t], {t, 0, Infinity}] e - t f[t] dt 0 Mathematica can compute thee Laplace Tranform and we ee how to do thi. Here are the definition brought up by query from Mathematica. If one need more, uch a an example, then go to Help Menu and type "LaplaceTranform" and you will have a window offering up a definition with an example worked out at the bottom.or jut type one of the following?? LaplaceTranform LaplaceTranform[expr, t, ] give the Laplace tranform of expr. LaplaceTranform[expr, {t, t 2, }, {, 2, }] give the multidimenional Laplace tranform of expr. Attribute[LaplaceTranform] = {Protected, ReadProtected} Option[LaplaceTranform] = {Aumption $Aumption, GenerateCondition Fale, PrincipalValue Fale, Analytic True} We have a tougher trick in undoing the Laplace Tranform and thi i done uing the InvereLaplace- Tranform command.?? InvereLaplaceTranform InvereLaplaceTranform[expr,, t] give the invere Laplace tranform of expr. InvereLaplaceTranform[expr, {, 2, }, {t, t 2, }] give the multidimenional invere Laplace tranform of expr. Attribute[InvereLaplaceTranform] = {Protected, ReadProtected}

3 9-5-S-OverViewLaplaceTranform-StudentVerion.nb 3 So here we go... taking Laplace Tranform of function.... We Build Up a Table of Laplace Tranform and attempt to acertain pattern. LaplaceTranform[, t, ] LaplaceTranform[t, t, ] 2 LaplaceTranform[t^ 2, t, ] 2 3 LaplaceTranform[t^ 3, t, ] 6 4 LaplaceTranform[t^ 4, t, ] 24 5 What do you believe we might get for the Laplace Tranform of t n? Of coure, we could top and offer a formal induction proof of general formula, but we proceed to take the Laplace Tranform of other clae of function. Trig function LaplaceTranform[Sin[3 t], t, ] LaplaceTranform[Sin[5 t], t, ] LaplaceTranform[Co[3 t], t, ] LaplaceTranform[Co[5 t], t, ] See a pattern here?

4 4 9-5-S-OverViewLaplaceTranform-StudentVerion.nb... and exponential function. LaplaceTranform[Exp[3 t], t, ] -3 + LaplaceTranform[Exp[5 t], t, ] -5 + LaplaceTranform[Exp[- 7 t], t, ] 7 + Incidentally, the tranform of function like f(t) = e a t and f(t) = k are eay by hand effort! Try one. Continuing in thi manner of dicovery we could fill in a typical Laplace Tranform Table. A ample, but hort and imple form, table i the following: We could combine trig and exponential function.. LaplaceTranform[Exp[5 t] Sin[3 t], t, ] (-5 + ) 2... and in general to match the table entry.

5 9-5-S-OverViewLaplaceTranform-StudentVerion.nb 5 LaplaceTranform[Exp[a t] Sin[b t], t, ] b b 2 + (a - ) 2 If we are given the Laplace Tranform Y() how might we obtain the original, i.e. the y(t) whoe Laplace Tranform i Y(). We try it on ome of our oberved Tranform and ome other function. InvereLaplaceTranform ( - 4),, t e 4 t InvereLaplaceTranform ^2 + 4,, t 3 4 i e(3-2 i) t - + e 4 i t + DiracDelta [t] InvereLaplaceTranform ^7,, t t InvereLaplaceTranform ^ ( - 4),, t e 4 t + Co[2 t] InvereLaplaceTranform ^2-4,, t 2 e-2 t + e 4 t yol[t_] = InvereLaplaceTranform ^2 + 4,, t 2 e(-3-2 i) t + e 4 i t Plot[yol[t], {t, 0, 2}]

6 6 9-5-S-OverViewLaplaceTranform-StudentVerion.nb InvereLaplaceTranform ^2 + 4,, t 2 e(-3-2 i) t + e 4 i t Here we need to ue Euler' formula, e i θ = co(θ) + i in(θ), invoked by Mathematica Complex Expand command to offer a real preentation of our tranform. ComplexExpand InvereLaplaceTranform ^2 + 4,, t 2 e-3 t Co[2 t] + 2 e-3 t Co[2 t] Co[4 t] + 2 e-3 t Sin[2 t] Sin[4 t] + i - 2 e-3 t Sin[2 t] - 2 e-3 t Co[4 t] Sin[2 t] + 2 e-3 t Co[2 t] Sin[4 t] Further, we invoke Mathematica' TrigReduce command to ue trigonometric identitie to reduce our Invere Laplace Tranform to a imple form from which we could ee o much, in thi cae a damped ocillator! TrigReduce ComplexExpand InvereLaplaceTranform ^2 + 4,, t e -3 t Co[2 t] Let u take the Laplace Tranform of general function and derivative.... LaplaceTranform[y[t], t, ] LaplaceTranform[y[t], t, ] LaplaceTranform[y'[t], t, ] LaplaceTranform[y[t], t, ] - y[0] We take Laplace Tranform of econd derivative... LaplaceTranform[y''[t], t, ] 2 LaplaceTranform[y[t], t, ] - y[0] - y [0] We take Laplace Tranform of third derivative... LaplaceTranform[y'''[t], t, ] 3 LaplaceTranform[y[t], t, ] - 2 y[0] - y [0] - y [0] We take Laplace Tranform of fourth derivative... LaplaceTranform[y''''[t], t, ] 4 LaplaceTranform[y[t], t, ] - 3 y[0] - 2 y [0] - y [0] - y (3) [0]

7 9-5-S-OverViewLaplaceTranform-StudentVerion.nb 7 Let u give LaplaceTranform[y[t],t,] a name, ay Y[]. Then thing look nicer. LaplaceTranform[y'[t], t, ] /. {LaplaceTranform[y[t], t, ] Y[]} -y[0] + Y[] LaplaceTranform[y''[t], t, ] /. {LaplaceTranform[y[t], t, ] Y[]} - y[0] + 2 Y[] - y [0] Can we take the Laplace Tranform of a whole differential equation? Let' try. eq = LaplaceTranform[a y''[t] + b y'[t] + c y[t] Sin[t], t, ] c LaplaceTranform[y[t], t, ] + b ( LaplaceTranform[y[t], t, ] - y[0]) + a 2 LaplaceTranform[y[t], t, ] - y[0] - y [0] + 2 Let u try to replace LaplaceTranform[y[t],t,] with Y[] here too. eq = LaplaceTranform[a y''[t] + b y'[t] + c y[t] Sin[t], t, ] /. {LaplaceTranform[y[t], t, ] Y[]} c Y[] + b (-y[0] + Y[]) + a - y[0] + 2 Y[] - y [0] + 2 We can olve for the Laplace of the function in the above differential equation. YSol[_] = Y[] /. Solve[eq, Y[]][[]] + b y[0] + a y[0] + b 2 y[0] + a 3 y[0] + a y [0] + a 2 y [0] + 2 c + b + a 2 Now if we could compute the Invere Laplace Tranform of Y () we would have the olution to our differential equation, y (t). Let u do thi. Our olution appear a bit on the wild ide involving the contant a, b, and c, and the all too familiar radical b 2-4 ac one obtain from the characteritic equation of the homogeneou portion of our original differential equation a y (t) + b y (t) + c y(t) = in(t) in uing eigenvalue olution trategie.

8 8 9-5-S-OverViewLaplaceTranform-StudentVerion.nb InvereLaplaceTranform[YSol[],, t] // Simplify e - b+ b2-4 a c t 2 a -2 a 2 - b a c + b b 2-4 a c + 2 a 2 e b2-4 a c t a + b 2 e b2-4 a c t a - 2 a c e b2-4 a c t a + b b 2-4 a c e b2-4 a c t b+ b2-4 a c t a - 2 b b 2-4 a c e 2 a Co[t] - 2 (a - c) b 2-4 a c e b+ b2-4 a c t 2 a Sin[t] - a 2 b y[0] - b 3 y[0] + 2 a b c y[0] - b c 2 y[0] + a 2 b 2-4 a c y[0] + b 2 b 2-4 a c y[0] - 2 a c b 2-4 a c y[0] + c 2 b 2-4 a c y[0] + a 2 b e b2-4 a c t a y[0] + b 3 e b2-4 a c t a y[0] - 2 a b c e b2-4 a c t a y[0] + b c 2 e b2-4 a c t a y[0] + a 2 b 2-4 a c e b2-4 a c t a y[0] + b 2 b 2-4 a c e b2-4 a c t a y[0] - 2 a c b 2-4 a c e b2-4 a c t a y[0] + c 2 b 2-4 a c e b2-4 a c t a y[0] - 2 a 3 y [0] - 2 a b 2 y [0] + 4 a 2 c y [0] - 2 a c 2 y [0] + 2 a 3 e b2-4 a c t a y [0] + 2 a b 2 e b2-4 a c t a y [0] - 4 a 2 c e b2-4 a c t a y [0] + 2 a c 2 e b2-4 a c t a y [0] 2 b 2-4 a c a 2 + b 2-2 a c + c 2 The Tranfer function of a differential equation uch a a*y (t) + b*y (t) + c*y(t) = in(t) i Q() = / (a* 2 + b* + c) ( over the denominator in the Laplace Tranform of the olution) and notice the coefficient a, b, and c, of the LHS or of the ytem - not the driver in(t). Thi characterize the ytem repone and the root of the characteritic equation, a* 2 + b* + c = 0, are the characteritic root or eigenvalue of thi ytem. Engineer get to "know" ytem and the ytem' behavior by their Tranfer function and the eigenvalue; electrical engineer call the eigenvalue "pole." Indeed, if we let y(0) = 0 and y'(0) = 0 then YSol[] = L[]*Q[], and o Q[] = Yol[]/L[], where YSol[] i the output' Laplace Tranform and L[] i the input' Laplace Tranform. Thi effectively how that the Laplace Tranform of the Solution i imply a multiplication of Laplace Tranform of the input or driver function, i.e. L[], and the tranfer function Q[] = Q() = / (a* 2 + b* + c). The latter contain all the action of the differential equation model term a*y (t) + b*y (t) + c y(t) while the former, L[], contain the action of the driver function, in thi cae in(t).

9 9-5-S-OverViewLaplaceTranform-StudentVerion.nb 9 So when we actually ue reaonable initial condition (y(0) = 0, no initial diplacement, and y (0) = 0, no initial velocity - depending upon the driver to get ome activity going) on the invere Laplace Tranform, YSol[], of our differential equation a*y (t) + b*y (t) + c*y(t) = in(t) YSol[] /. {y[0] 0, y'[0] 0} + 2 c + b + a 2 We try a pecific example, one we know we can olve in everal other way - by hand, with Mathematica DSolve. We conider y''(t) + 6 y'(t) + 5 y(t) = in(t), y(0) = 4, y'(0) = 0. Firt we ue DSolve and ome formatting to grab the olution for comparion. yol[t_] = y[t] /. DSolve[{ y''[t] + 6 y'[t] + 5 y[t] Sin[t], y[0] 4, y'[0] 0}, y[t], t][[ ]] // Expand e-5 t e-t Co[t] + Sin[t] We conider thi ame differential equation and apply Laplace Tranform to all term, i.e. both ide of the differential equation. eq = LaplaceTranform[ y''[t] + 6 y'[t] + 5 y[t] Sin[t], t, ] /. {LaplaceTranform[y[t], t, ] Y[], y[0] 4, y'[0] 0} Y[] + 2 Y[] + 6 (-4 + Y[]) + 2 Now we olve for Y[], the Laplace Tranform of y[t] in order to get ready for the invere Laplace Tranform. L[_] = Y[] /. Solve[eq, Y[]][[]] Now we apply the invere tranform to get the olution for y[t]. l[t_] = InvereLaplaceTranform[L[],, t] // Expand e-5 t e-t Co[t] + Sin[t] Notice the two portion of thi oloution, namely the Tranient olution e-5 t + 4 e-t 8 and the Teady State - 3 Co[t] 26 + Sin[t]. Thee would be 3

10 0 9-5-S-OverViewLaplaceTranform-StudentVerion.nb produced by variou hand technique or Mathematica DSolve approach which we how here. How doe that compare to the DSolve olution? Exactly the ame a we ee when, again, we ue DSolve to obtain a olution. yol[t_] = y[t] /. DSolve[{ y''[t] + 6 y'[t] + 5 y[t] Sin[t], y[0] 4, y'[0] 0}, y[t], t][[ ]] // Expand e-5 t e-t Co[t] + Sin[t] So what i the big deal? Who would omeone chooe Laplace Tranform to olve a problem if DSolve or by hand can do it directly? Here i the point (well one of the many point of advantage) of Laplace Tranform. They convert calculu to algebra, then we play in algebra land, and then we return to calculu land. More formally, the Laplace Tranform tranform the problem from the time domain (t) to the frequency domain in (). We conider two additional "Real Good" reaon for Laplace Tranform Unit Step or Heaviide Function - what doe thi function do. f[x_] = UnitStep[x] UnitStep[x]

11 9-5-S-OverViewLaplaceTranform-StudentVerion.nb Plot[f[x], {x, -8, 8}, PlotStyle {Thickne[.0]}] f2[x_] = UnitStep[x - 3] UnitStep[-3 + x] Plot[f2[x], {x, -8, 8}, PlotStyle {Thickne[.0]}] We could define our own unit tep function with conditional or if tatement a follow, but Mathematica already ha it defined o we accept UnitStep[x] in Mathematica. unittep(x) =, if x>0, and 0 otherwie. unittep[x_] = If[x > 0,, 0] If[x > 0,, 0]

12 2 9-5-S-OverViewLaplaceTranform-StudentVerion.nb Plot[unittep[x], {x, - 8, 8}, PlotStyle {Thickne[.0]}] Dirac Delta or Impule Function g[x_] = DiracDelta[x] DiracDelta[x] Strange plot.... Plot[g[x], {x, -4, 4}, PlotStyle {Thickne[.0]}] We examine the Dirac Delta function ome more. Thi function repreent an intantaneou change. E.g., we change the alt concentration by "dumping" in more alt ALL AT ONCE! OR we "hock" a pring ma giving it an intantaneou force ALL AT ONCE! The integral of an interval containing x = 0 for the DiracDelta[x] function i. What thi ay i the impule offered by a driver of the form DiracDelta[x] impart force of ize unit to our ytem, BUT all at once like the quick bang of a hammer, rather than a gradual application of force. We check out ome propertie of the DiracDelta[x] function. Integrate[g[x], {x, -, }]

13 9-5-S-OverViewLaplaceTranform-StudentVerion.nb 3 Integrate[g[x], {x,.5, }] 0. g[.] 0 g[0] DiracDelta[0] g[2] 0 Tranform of UnitStep and Dirac Function - where doe thi fit into our Table of Laplace tranform? f[t_] = UnitStep[t]; LaplaceTranform[f[t], t, ] g[t_] = DiracDelta[t]; LaplaceTranform[g[t], t, ] UnitStep function repreent a "tep" or finite immediate change in omething. DiracDelta function repreent an intantaneou action at one point... zero elewhere. del[x_, a_] = 2 a (UnitStep[x - (-a)] - UnitStep[x - a]) -UnitStep[-a + x] + UnitStep[a + x] 2 a

14 4 9-5-S-OverViewLaplaceTranform-StudentVerion.nb Plot[del[x, ], {x, -8, 8}] Integrate[del[x, ], {x, - 00, 00}] We examine an animation or a Manipulation of del[x,a] a a get maller an maller. We ay DiracDelta[x] i the limit of del[x,a] a a 0. Here are the plot in Manipulation to illutrate thi point. By clicking on the + box in thi command one can ee the value of a and by uing the lider next to a one can ee the effect of decreaing the value of a in the plot of the reulting function. Manipulate[Plot[del[x, a], {x, - 8, 8}, PlotRange {{-8, 8}, {0, 0}}, PlotPoint 00], {a, 3,.00, -.000}] a

15 9-5-S-OverViewLaplaceTranform-StudentVerion.nb 5 We can combine UnitStep function to turn thing on and then off. Conider thi function. h[x_] = UnitStep[x - 3] - UnitStep[x - 0] -UnitStep[-0 + x] + UnitStep[-3 + x] Plot[h[x], {x, 0, 20}, PlotStyle {Thickne[.0]}] Suppoe we have a ma pring ytem and we want to ee the effect of adding additional weight (force) on the ma after it i in motion, ay adding 5 unit of force at time t = 2. eq = LaplaceTranform[ y''[t] + 6 y'[t] + 5 y[t] 5 UnitStep[t - 2], t, ] /. {LaplaceTranform[y[t], t, ] Y[], y[0] 4, y'[0] 0} Y[] + 2 Y[] + 6 (-4 + Y[]) 5 e-2 Now we olve for Y[], the Laplace Tranform of y[t] in order to get ready for the invere Laplace Tranform. L[_] = Y[] /. Solve[eq, Y[]][[]] e e e Now we apply the Invere Laplace Tranform to get the olution for y[t]. yl[t_] = InvereLaplaceTranform[L[],, t] 4 e-5 t e 4 t + e e 5 t - 5 e 2+4 t HeaviideTheta[-2 + t] From the plot we ee the change in the action at t = 2 due to our applying additional force at that time.

16 6 9-5-S-OverViewLaplaceTranform-StudentVerion.nb Plot[yl[t], {t, 0, 0}, PlotRange {{0, 0}, {0, 4}}] Suppoe we have a pring ma ytem and we want to ee the effect of hitting it with pike force of 4 unit of force after two (t = 2) econd of "uual" motion. eq = LaplaceTranform[ y''[t] + 6 y'[t] + 5 y[t] 4 DiracDelta[t - 2], t, ] /. {LaplaceTranform[y[t], t, ] Y[], y[0] 0, y'[0] 0} 5 Y[] + 6 Y[] + 2 Y[] 4 e -2 Now we olve for Y[], the Laplace Tranform of y[t] in order to get ready for the invere Laplace Tranform. L[_] = Y[] /. Solve[eq, Y[]][[]] 4 e Now we apply the tranform to get the olution for y[t]. yl[t_] = InvereLaplaceTranform[L[],, t] e -5 (-2+t) - + e 4 (-2+t) HeaviideTheta[-2 + t] From the plot we ee the change in the action at t = 2 due to our applying a pike force at that time. Up until the pring ma wa at ret due to it initial condition of y(0) = 0 and y (0) = 0.

17 9-5-S-OverViewLaplaceTranform-StudentVerion.nb 7 Plot[yl[t], {t, 0, 0}, PlotRange {{0, 0}, {0, }}] Let u conider a tank ytem in which we "dump" tuff (DiracDelta function) and we alter amount uddenly (UnitStep function). Firt the ytem without any dratic dumping. Can you draw a cenario for thi ytem given the equation? eq = x'[t] (4 * y[t]) (7 * x[t]) 200, y'[t] (7 * x[t]) (7 * y[t]) 200, x[0] 50, y[0] 0 x [t] - 7 x[t] y[t] 50, y [t] 7 x[t] y[t], x[0] 50, y[0] ol = DSolve[eq, {x[t], y[t]}, t] x[t] 25 e - 7 t t 00 + e 7 t 50, y[t] e - 7 t t e 7 t 50 x[t_] = x[t] /. ol[[]]; y[t_] = y[t] /. ol[[]]; Plot[{x[t], y[t]}, {t, 0, 00}, PlotRange {{0, 00}, {0, 50}}] Let u conider a tank ytem in which we () "dump" tuff (DiracDelta function),

18 8 9-5-S-OverViewLaplaceTranform-StudentVerion.nb (2) we alter amount uddenly (UnitStep) function, or combination of thee. What are we dumping into the ytem? Where are we dumping it in? When do we tart dumping? How often are we dumping it in? What doe thee tuff function do? tuff[t_] = 40 DiracDelta[t - 25]; tuff2[t_] = 40 UnitStep[t - 25]; tuff3[t_] = 40 UnitStep[t - 25] - 20 UnitStep[t - 30]; tuff4[t_] = Sum[20 DiracDelta[t - a], {a, 20, 200, 20}]; We might then modify the model ytem with the new "tuff" function and Laplace away! tuff[t_] = tuff[t] 40 DiracDelta[-25 + t] eq = x'[t] 4 y[t] x[t] tuff[t], y'[t] 7 x[t] y[t] 200, x[0] 50, y[0] 0 x [t] 40 DiracDelta[-25 + t] - 7 x[t] y[t] 50, y [t] 7 x[t] y[t], x[0] 50, y[0] eq[[]] x [t] 40 DiracDelta[-25 + t] - 7 x[t] y[t] 50 Now ue LaplaceTranform yntax, olve, plot, and examine olution. eq = LaplaceTranform[eq[[]], t, ] /. {LaplaceTranform[x[t], t, ] X[], LaplaceTranform[y[t], t, ] Y[], x[0] 50, y[0] -> 0} X[] 40 e X[] Y[] 50 eq2 = LaplaceTranform[eq[[2]], t, ] /. {LaplaceTranform[x[t], t, ] X[], LaplaceTranform[y[t], t, ] Y[], x[0] 50, y[0] -> 0} Y[] 7 X[] Y[] 200

19 9-5-S-OverViewLaplaceTranform-StudentVerion.nb 9 XYol = Solve[{eq, eq2}, {X[], Y[]}] X[] 2000 e e 25 ( ) , Y[] e e Xol[_] = X[] /. XYol[[]] // Expand e e Yol[_] = Y[] /. XYol[[]] // Expand e xol[t_] = InvereLaplaceTranform[Xol[],, t] 5 5 e t + e 7 t e (-25+t) + e 50 7 (-25+t) HeaviideTheta[-25 + t] yol[t_] = InvereLaplaceTranform[Yol[],, t] e t - + e 7 t 50-4 e (-25+t) - + e 50 7 (-25+t) HeaviideTheta[-25 + t] After olving uing Laplace Tranform technique we plot our olution for x(t). We ee that from the dumping due to tuff[t] = 40*DiracDelta[t-25] of 40 additional unit intantly at time t = 25 there i a jump in x(t) at time t = 25 and an attendant rapid change in the econd tank, y(t). xplot = Plot[xol[t], {t, 0, 200}, PlotRange {{0, 200}, {0, 00}}]

20 S-OverViewLaplaceTranform-StudentVerion.nb yplot = 00 Plot[yol[t], {t, 0, 200}, PlotRange {{0, 200}, {0, 00}}, PlotStyle Hue[.3]] Here we ee both x (t) in gold and y (t) in green howing the effect of our dump in both tank. Show[xPlot, yplot]

21 9-5-S-OverViewLaplaceTranform-StudentVerion.nb 2 Suppoe we have a pring ma ytem and we want to ee the effect of turning on a force and turning off that force, over and over again, perhap by placing the ma in an alternating magnetic field. We model thi with mall rectangular function of force, 0.5 unit high and unit long, paced 2 unit apart, centered at, 3, 5, etc. rut[t_] = Sum 5 UnitStep[t - 2 k] - 5 UnitStep t - 2 k +, {k, 0, 0} -5 UnitStep[-2 + t] + 5 UnitStep[-20 + t] - 5 UnitStep[-9 + t] + 5 UnitStep[-8 + t] - 5 UnitStep[-7 + t] + 5 UnitStep[-6 + t] - 5 UnitStep[-5 + t] + 5 UnitStep[-4 + t] - 5 UnitStep[-3 + t] + 5 UnitStep[-2 + t] - 5 UnitStep[- + t] + 5 UnitStep[-0 + t] - 5 UnitStep[-9 + t] + 5 UnitStep[-8 + t] - 5 UnitStep[-7 + t] + 5 UnitStep[-6 + t] - 5 UnitStep[-5 + t] + 5 UnitStep[-4 + t] - 5 UnitStep[-3 + t] + 5 UnitStep[-2 + t] - 5 UnitStep[- + t] + 5 UnitStep[t] prut = Plot[rut[t], {t, 0, 20}, PlotRange {{0, 20}, {0, 6}}] We apply our force function rut(t). eq = LaplaceTranform[ y''[t] + 6 y'[t] + 5 y[t] rut[t], t, ] /. {LaplaceTranform[y[t], t, ] Y[], y[0] 0, y'[0] 0} 5 Y[] + 6 Y[] + 2 Y[] 5-5 e-2 5 e -7 5 e e e-8-5 e-5-5 e e e e-20-5 e-3-5 e e-4-5 e e-2-5 e e-8-5 e- + 5 e e-0-5 e- Now we olve for Y[], the Laplace Tranform of y[t] in order to get ready for the invere Laplace Tranform. -

22 S-OverViewLaplaceTranform-StudentVerion.nb L[_] = Y[] /. Solve[eq, Y[]][[]] e e - e 2 + e 3 - e 4 + e 5 - e 6 + e 7 - e 8 + e 9 - e 0 + e - e 2 + e 3 - e 4 + e 5 - e 6 + e 7 - e 8 + e 9 - e 20 + e 2 We finally apply the Invere Laplace Tranform to get the olution for y[t]. yl[t_] = InvereLaplaceTranform[L[],, t] 4 e-5 t - 5 e 4 t + 4 e 5 t - e e 5 t - 5 e 2+4 t HeaviideTheta[-2 + t] + e e 5 t - 5 e 4 (5+t) HeaviideTheta[-20 + t] - e 95 HeaviideTheta[-9 + t] - 4 e 5 t HeaviideTheta[-9 + t] + 5 e 9+4 t HeaviideTheta[-9 + t] + e 90 HeaviideTheta[-8 + t] + 4 e 5 t HeaviideTheta[-8 + t] - 5 e 8+4 t HeaviideTheta[-8 + t] - e 85 HeaviideTheta[-7 + t] - 4 e 5 t HeaviideTheta[-7 + t] + 5 e 7+4 t HeaviideTheta[-7 + t] + e 80 HeaviideTheta[-6 + t] + 4 e 5 t HeaviideTheta[-6 + t] - 5 e 4 (4+t) HeaviideTheta[-6 + t] - e 75 HeaviideTheta[-5 + t] - 4 e 5 t HeaviideTheta[-5 + t] + 5 e 5+4 t HeaviideTheta[-5 + t] + e 70 HeaviideTheta[-4 + t] + 4 e 5 t HeaviideTheta[-4 + t] - 5 e 4+4 t HeaviideTheta[-4 + t] - e 65 HeaviideTheta[-3 + t] - 4 e 5 t HeaviideTheta[-3 + t] + 5 e 3+4 t HeaviideTheta[-3 + t] + e 60 HeaviideTheta[-2 + t] + 4 e 5 t HeaviideTheta[-2 + t] - 5 e 4 (3+t) HeaviideTheta[-2 + t] - e 55 HeaviideTheta[- + t] - 4 e 5 t HeaviideTheta[- + t] + 5 e +4 t HeaviideTheta[- + t] + e 50 HeaviideTheta[-0 + t] + 4 e 5 t HeaviideTheta[-0 + t] - 5 e 0+4 t HeaviideTheta[-0 + t] - e 45 HeaviideTheta[-9 + t] - 4 e 5 t HeaviideTheta[-9 + t] + 5 e 9+4 t HeaviideTheta[-9 + t] + e 40 HeaviideTheta[-8 + t] + 4 e 5 t HeaviideTheta[-8 + t] - 5 e 8+4 t HeaviideTheta[-8 + t] - e 35 HeaviideTheta[-7 + t] - 4 e 5 t HeaviideTheta[-7 + t] + 5 e 7+4 t HeaviideTheta[-7 + t] + e 30 HeaviideTheta[-6 + t] + 4 e 5 t HeaviideTheta[-6 + t] - 5 e 6+4 t HeaviideTheta[-6 + t] - e 25 HeaviideTheta[-5 + t] - 4 e 5 t HeaviideTheta[-5 + t] + 5 e 5+4 t HeaviideTheta[-5 + t] + e 20 HeaviideTheta[-4 + t] + 4 e 5 t HeaviideTheta[-4 + t] - 5 e 4+4 t HeaviideTheta[-4 + t] - e 5 HeaviideTheta[-3 + t] - 4 e 5 t HeaviideTheta[-3 + t] + 5 e 3+4 t HeaviideTheta[-3 + t] + e 0 HeaviideTheta[-2 + t] + 4 e 5 t HeaviideTheta[-2 + t] - 5 e 2+4 t HeaviideTheta[-2 + t] - e 5 HeaviideTheta[- + t] - 4 e 5 t HeaviideTheta[- + t] + 5 e +4 t HeaviideTheta[- + t] Here i our olution plot. Notice the effect of turning on and turning off the driver force.

23 9-5-S-OverViewLaplaceTranform-StudentVerion.nb 23 psol = Plot[yl[t], {t, 0, 20}, PlotRange {{0, 20}, {0, 2}}] We examine the input function (quare wave) and the output function (rounded wave). Show[pRut, psol] Up cloe. Notice the delay of the ytem (ytem repone) in reponding to the turn on and to the hut off of the input function Show[pRut, psol, PlotRange {{0, 5.5}, {0, 6}}] There are many ue and reaon for uing Laplace Tranform, indeed, often

24 S-OverViewLaplaceTranform-StudentVerion.nb engineer live in the frequency domain of the tranform world, i.e., without returning to the time domain world of t, for they learn to "ee" and undertand in the frequency world and, a we aw, it i algebra and not calculu - thu making it more elementary.

Chapter 4. The Laplace Transform Method

Chapter 4. The Laplace Transform Method Chapter 4. The Laplace Tranform Method The Laplace Tranform i a tranformation, meaning that it change a function into a new function. Actually, it i a linear tranformation, becaue it convert a linear combination

More information

Solutions to homework #10

Solutions to homework #10 Solution to homework #0 Problem 7..3 Compute 6 e 3 t t t 8. The firt tep i to ue the linearity of the Laplace tranform to ditribute the tranform over the um and pull the contant factor outide the tranform.

More information

7.2 INVERSE TRANSFORMS AND TRANSFORMS OF DERIVATIVES 281

7.2 INVERSE TRANSFORMS AND TRANSFORMS OF DERIVATIVES 281 72 INVERSE TRANSFORMS AND TRANSFORMS OF DERIVATIVES 28 and i 2 Show how Euler formula (page 33) can then be ued to deduce the reult a ( a) 2 b 2 {e at co bt} {e at in bt} b ( a) 2 b 2 5 Under what condition

More information

SOLUTIONS FOR HOMEWORK SECTION 6.4 AND 6.5

SOLUTIONS FOR HOMEWORK SECTION 6.4 AND 6.5 SOLUTIONS FOR HOMEWORK SECTION 6.4 AND 6.5 Problem : For each of the following function do the following: (i) Write the function a a piecewie function and ketch it graph, (ii) Write the function a a combination

More information

Solving Differential Equations by the Laplace Transform and by Numerical Methods

Solving Differential Equations by the Laplace Transform and by Numerical Methods 36CH_PHCalter_TechMath_95099 3//007 :8 PM Page Solving Differential Equation by the Laplace Tranform and by Numerical Method OBJECTIVES When you have completed thi chapter, you hould be able to: Find the

More information

Reading assignment: In this chapter we will cover Sections Definition and the Laplace transform of simple functions

Reading assignment: In this chapter we will cover Sections Definition and the Laplace transform of simple functions Chapter 4 Laplace Tranform 4 Introduction Reading aignment: In thi chapter we will cover Section 4 45 4 Definition and the Laplace tranform of imple function Given f, a function of time, with value f(t

More information

TMA4125 Matematikk 4N Spring 2016

TMA4125 Matematikk 4N Spring 2016 Norwegian Univerity of Science and Technology Department of Mathematical Science TMA45 Matematikk 4N Spring 6 Solution to problem et 6 In general, unle ele i noted, if f i a function, then F = L(f denote

More information

Reading assignment: In this chapter we will cover Sections Definition and the Laplace transform of simple functions

Reading assignment: In this chapter we will cover Sections Definition and the Laplace transform of simple functions Chapter 4 Laplace Tranform 4 Introduction Reading aignment: In thi chapter we will cover Section 4 45 4 Definition and the Laplace tranform of imple function Given f, a function of time, with value f(t

More information

Laplace Transformation

Laplace Transformation Univerity of Technology Electromechanical Department Energy Branch Advance Mathematic Laplace Tranformation nd Cla Lecture 6 Page of 7 Laplace Tranformation Definition Suppoe that f(t) i a piecewie continuou

More information

into a discrete time function. Recall that the table of Laplace/z-transforms is constructed by (i) selecting to get

into a discrete time function. Recall that the table of Laplace/z-transforms is constructed by (i) selecting to get Lecture 25 Introduction to Some Matlab c2d Code in Relation to Sampled Sytem here are many way to convert a continuou time function, { h( t) ; t [0, )} into a dicrete time function { h ( k) ; k {0,,, }}

More information

ME 375 FINAL EXAM Wednesday, May 6, 2009

ME 375 FINAL EXAM Wednesday, May 6, 2009 ME 375 FINAL EXAM Wedneday, May 6, 9 Diviion Meckl :3 / Adam :3 (circle one) Name_ Intruction () Thi i a cloed book examination, but you are allowed three ingle-ided 8.5 crib heet. A calculator i NOT allowed.

More information

DIFFERENTIAL EQUATIONS

DIFFERENTIAL EQUATIONS DIFFERENTIAL EQUATIONS Laplace Tranform Paul Dawkin Table of Content Preface... Laplace Tranform... Introduction... The Definition... 5 Laplace Tranform... 9 Invere Laplace Tranform... Step Function...4

More information

Practice Problems - Week #7 Laplace - Step Functions, DE Solutions Solutions

Practice Problems - Week #7 Laplace - Step Functions, DE Solutions Solutions For Quetion -6, rewrite the piecewie function uing tep function, ketch their graph, and find F () = Lf(t). 0 0 < t < 2. f(t) = (t 2 4) 2 < t In tep-function form, f(t) = u 2 (t 2 4) The graph i the olid

More information

ME 375 EXAM #1 Tuesday February 21, 2006

ME 375 EXAM #1 Tuesday February 21, 2006 ME 375 EXAM #1 Tueday February 1, 006 Diviion Adam 11:30 / Savran :30 (circle one) Name Intruction (1) Thi i a cloed book examination, but you are allowed one 8.5x11 crib heet. () You have one hour to

More information

Midterm Test Nov 10, 2010 Student Number:

Midterm Test Nov 10, 2010 Student Number: Mathematic 265 Section: 03 Verion A Full Name: Midterm Tet Nov 0, 200 Student Number: Intruction: There are 6 page in thi tet (including thi cover page).. Caution: There may (or may not) be more than one

More information

Correction for Simple System Example and Notes on Laplace Transforms / Deviation Variables ECHE 550 Fall 2002

Correction for Simple System Example and Notes on Laplace Transforms / Deviation Variables ECHE 550 Fall 2002 Correction for Simple Sytem Example and Note on Laplace Tranform / Deviation Variable ECHE 55 Fall 22 Conider a tank draining from an initial height of h o at time t =. With no flow into the tank (F in

More information

Name: Solutions Exam 3

Name: Solutions Exam 3 Intruction. Anwer each of the quetion on your own paper. Put your name on each page of your paper. Be ure to how your work o that partial credit can be adequately aeed. Credit will not be given for anwer

More information

Digital Control System

Digital Control System Digital Control Sytem Summary # he -tranform play an important role in digital control and dicrete ignal proceing. he -tranform i defined a F () f(k) k () A. Example Conider the following equence: f(k)

More information

Module 4: Time Response of discrete time systems Lecture Note 1

Module 4: Time Response of discrete time systems Lecture Note 1 Digital Control Module 4 Lecture Module 4: ime Repone of dicrete time ytem Lecture Note ime Repone of dicrete time ytem Abolute tability i a baic requirement of all control ytem. Apart from that, good

More information

CHBE320 LECTURE V LAPLACE TRANSFORM AND TRANSFER FUNCTION. Professor Dae Ryook Yang

CHBE320 LECTURE V LAPLACE TRANSFORM AND TRANSFER FUNCTION. Professor Dae Ryook Yang CHBE3 ECTURE V APACE TRANSFORM AND TRANSFER FUNCTION Profeor Dae Ryook Yang Spring 8 Dept. of Chemical and Biological Engineering 5- Road Map of the ecture V aplace Tranform and Tranfer function Definition

More information

Given the following circuit with unknown initial capacitor voltage v(0): X(s) Immediately, we know that the transfer function H(s) is

Given the following circuit with unknown initial capacitor voltage v(0): X(s) Immediately, we know that the transfer function H(s) is EE 4G Note: Chapter 6 Intructor: Cheung More about ZSR and ZIR. Finding unknown initial condition: Given the following circuit with unknown initial capacitor voltage v0: F v0/ / Input xt 0Ω Output yt -

More information

CHE302 LECTURE V LAPLACE TRANSFORM AND TRANSFER FUNCTION. Professor Dae Ryook Yang

CHE302 LECTURE V LAPLACE TRANSFORM AND TRANSFER FUNCTION. Professor Dae Ryook Yang CHE3 ECTURE V APACE TRANSFORM AND TRANSFER FUNCTION Profeor Dae Ryook Yang Fall Dept. of Chemical and Biological Engineering Korea Univerity CHE3 Proce Dynamic and Control Korea Univerity 5- SOUTION OF

More information

Lecture 17: Analytic Functions and Integrals (See Chapter 14 in Boas)

Lecture 17: Analytic Functions and Integrals (See Chapter 14 in Boas) Lecture 7: Analytic Function and Integral (See Chapter 4 in Boa) Thi i a good point to take a brief detour and expand on our previou dicuion of complex variable and complex function of complex variable.

More information

Social Studies 201 Notes for November 14, 2003

Social Studies 201 Notes for November 14, 2003 1 Social Studie 201 Note for November 14, 2003 Etimation of a mean, mall ample ize Section 8.4, p. 501. When a reearcher ha only a mall ample ize available, the central limit theorem doe not apply to the

More information

18.03SC Final Exam = x 2 y ( ) + x This problem concerns the differential equation. dy 2

18.03SC Final Exam = x 2 y ( ) + x This problem concerns the differential equation. dy 2 803SC Final Exam Thi problem concern the differential equation dy = x y ( ) dx Let y = f (x) be the olution with f ( ) = 0 (a) Sketch the iocline for lope, 0, and, and ketch the direction field along them

More information

Linear System Fundamentals

Linear System Fundamentals Linear Sytem Fundamental MEM 355 Performance Enhancement of Dynamical Sytem Harry G. Kwatny Department of Mechanical Engineering & Mechanic Drexel Univerity Content Sytem Repreentation Stability Concept

More information

Introduction to Laplace Transform Techniques in Circuit Analysis

Introduction to Laplace Transform Techniques in Circuit Analysis Unit 6 Introduction to Laplace Tranform Technique in Circuit Analyi In thi unit we conider the application of Laplace Tranform to circuit analyi. A relevant dicuion of the one-ided Laplace tranform i found

More information

DIFFERENTIAL EQUATIONS Laplace Transforms. Paul Dawkins

DIFFERENTIAL EQUATIONS Laplace Transforms. Paul Dawkins DIFFERENTIAL EQUATIONS Laplace Tranform Paul Dawkin Table of Content Preface... Laplace Tranform... Introduction... The Definition... 5 Laplace Tranform... 9 Invere Laplace Tranform... Step Function...

More information

Chapter 13. Root Locus Introduction

Chapter 13. Root Locus Introduction Chapter 13 Root Locu 13.1 Introduction In the previou chapter we had a glimpe of controller deign iue through ome imple example. Obviouly when we have higher order ytem, uch imple deign technique will

More information

MODERN CONTROL SYSTEMS

MODERN CONTROL SYSTEMS MODERN CONTROL SYSTEMS Lecture 1 Root Locu Emam Fathy Department of Electrical and Control Engineering email: emfmz@aat.edu http://www.aat.edu/cv.php?dip_unit=346&er=68525 1 Introduction What i root locu?

More information

ANSWERS TO MA1506 TUTORIAL 7. Question 1. (a) We shall use the following s-shifting property: L(f(t)) = F (s) L(e ct f(t)) = F (s c)

ANSWERS TO MA1506 TUTORIAL 7. Question 1. (a) We shall use the following s-shifting property: L(f(t)) = F (s) L(e ct f(t)) = F (s c) ANSWERS O MA56 UORIAL 7 Quetion. a) We hall ue the following -Shifting property: Lft)) = F ) Le ct ft)) = F c) Lt 2 ) = 2 3 ue Ltn ) = n! Lt 2 e 3t ) = Le 3t t 2 ) = n+ 2 + 3) 3 b) Here u denote the Unit

More information

Moment of Inertia of an Equilateral Triangle with Pivot at one Vertex

Moment of Inertia of an Equilateral Triangle with Pivot at one Vertex oment of nertia of an Equilateral Triangle with Pivot at one Vertex There are two wa (at leat) to derive the expreion f an equilateral triangle that i rotated about one vertex, and ll how ou both here.

More information

Lecture 9: Shor s Algorithm

Lecture 9: Shor s Algorithm Quantum Computation (CMU 8-859BB, Fall 05) Lecture 9: Shor Algorithm October 7, 05 Lecturer: Ryan O Donnell Scribe: Sidhanth Mohanty Overview Let u recall the period finding problem that wa et up a a function

More information

Chapter 2 Sampling and Quantization. In order to investigate sampling and quantization, the difference between analog

Chapter 2 Sampling and Quantization. In order to investigate sampling and quantization, the difference between analog Chapter Sampling and Quantization.1 Analog and Digital Signal In order to invetigate ampling and quantization, the difference between analog and digital ignal mut be undertood. Analog ignal conit of continuou

More information

e st t u(t 2) dt = lim t dt = T 2 2 e st = T e st lim + e st

e st t u(t 2) dt = lim t dt = T 2 2 e st = T e st lim + e st Math 46, Profeor David Levermore Anwer to Quetion for Dicuion Friday, 7 October 7 Firt Set of Quetion ( Ue the definition of the Laplace tranform to compute Lf]( for the function f(t = u(t t, where u i

More information

Bogoliubov Transformation in Classical Mechanics

Bogoliubov Transformation in Classical Mechanics Bogoliubov Tranformation in Claical Mechanic Canonical Tranformation Suppoe we have a et of complex canonical variable, {a j }, and would like to conider another et of variable, {b }, b b ({a j }). How

More information

SECTION x2 x > 0, t > 0, (8.19a)

SECTION x2 x > 0, t > 0, (8.19a) SECTION 8.5 433 8.5 Application of aplace Tranform to Partial Differential Equation In Section 8.2 and 8.3 we illutrated the effective ue of aplace tranform in olving ordinary differential equation. The

More information

Online Appendix for Managerial Attention and Worker Performance by Marina Halac and Andrea Prat

Online Appendix for Managerial Attention and Worker Performance by Marina Halac and Andrea Prat Online Appendix for Managerial Attention and Worker Performance by Marina Halac and Andrea Prat Thi Online Appendix contain the proof of our reult for the undicounted limit dicued in Section 2 of the paper,

More information

6.302 Feedback Systems Recitation 6: Steady-State Errors Prof. Joel L. Dawson S -

6.302 Feedback Systems Recitation 6: Steady-State Errors Prof. Joel L. Dawson S - 6302 Feedback ytem Recitation 6: teadytate Error Prof Joel L Dawon A valid performance metric for any control ytem center around the final error when the ytem reache teadytate That i, after all initial

More information

Control Systems Engineering ( Chapter 7. Steady-State Errors ) Prof. Kwang-Chun Ho Tel: Fax:

Control Systems Engineering ( Chapter 7. Steady-State Errors ) Prof. Kwang-Chun Ho Tel: Fax: Control Sytem Engineering ( Chapter 7. Steady-State Error Prof. Kwang-Chun Ho kwangho@hanung.ac.kr Tel: 0-760-453 Fax:0-760-4435 Introduction In thi leon, you will learn the following : How to find the

More information

Linear Motion, Speed & Velocity

Linear Motion, Speed & Velocity Add Important Linear Motion, Speed & Velocity Page: 136 Linear Motion, Speed & Velocity NGSS Standard: N/A MA Curriculum Framework (006): 1.1, 1. AP Phyic 1 Learning Objective: 3.A.1.1, 3.A.1.3 Knowledge/Undertanding

More information

These are practice problems for the final exam. You should attempt all of them, but turn in only the even-numbered problems!

These are practice problems for the final exam. You should attempt all of them, but turn in only the even-numbered problems! Math 33 - ODE Due: 7 December 208 Written Problem Set # 4 Thee are practice problem for the final exam. You hould attempt all of them, but turn in only the even-numbered problem! Exercie Solve the initial

More information

CHAPTER 8 OBSERVER BASED REDUCED ORDER CONTROLLER DESIGN FOR LARGE SCALE LINEAR DISCRETE-TIME CONTROL SYSTEMS

CHAPTER 8 OBSERVER BASED REDUCED ORDER CONTROLLER DESIGN FOR LARGE SCALE LINEAR DISCRETE-TIME CONTROL SYSTEMS CHAPTER 8 OBSERVER BASED REDUCED ORDER CONTROLLER DESIGN FOR LARGE SCALE LINEAR DISCRETE-TIME CONTROL SYSTEMS 8.1 INTRODUCTION 8.2 REDUCED ORDER MODEL DESIGN FOR LINEAR DISCRETE-TIME CONTROL SYSTEMS 8.3

More information

Root Locus Diagram. Root loci: The portion of root locus when k assume positive values: that is 0

Root Locus Diagram. Root loci: The portion of root locus when k assume positive values: that is 0 Objective Root Locu Diagram Upon completion of thi chapter you will be able to: Plot the Root Locu for a given Tranfer Function by varying gain of the ytem, Analye the tability of the ytem from the root

More information

Math 201 Lecture 17: Discontinuous and Periodic Functions

Math 201 Lecture 17: Discontinuous and Periodic Functions Math 2 Lecture 7: Dicontinuou and Periodic Function Feb. 5, 22 Many example here are taken from the textbook. he firt number in () refer to the problem number in the UA Cutom edition, the econd number

More information

Massachusetts Institute of Technology Dynamics and Control II

Massachusetts Institute of Technology Dynamics and Control II I E Maachuett Intitute of Technology Department of Mechanical Engineering 2.004 Dynamic and Control II Laboratory Seion 5: Elimination of Steady-State Error Uing Integral Control Action 1 Laboratory Objective:

More information

EE C128 / ME C134 Problem Set 1 Solution (Fall 2010) Wenjie Chen and Jansen Sheng, UC Berkeley

EE C128 / ME C134 Problem Set 1 Solution (Fall 2010) Wenjie Chen and Jansen Sheng, UC Berkeley EE C28 / ME C34 Problem Set Solution (Fall 200) Wenjie Chen and Janen Sheng, UC Berkeley. (0 pt) BIBO tability The ytem h(t) = co(t)u(t) i not BIBO table. What i the region of convergence for H()? A bounded

More information

Sampling and the Discrete Fourier Transform

Sampling and the Discrete Fourier Transform Sampling and the Dicrete Fourier Tranform Sampling Method Sampling i mot commonly done with two device, the ample-and-hold (S/H) and the analog-to-digital-converter (ADC) The S/H acquire a CT ignal at

More information

SOLUTIONS TO ALGEBRAIC GEOMETRY AND ARITHMETIC CURVES BY QING LIU. I will collect my solutions to some of the exercises in this book in this document.

SOLUTIONS TO ALGEBRAIC GEOMETRY AND ARITHMETIC CURVES BY QING LIU. I will collect my solutions to some of the exercises in this book in this document. SOLUTIONS TO ALGEBRAIC GEOMETRY AND ARITHMETIC CURVES BY QING LIU CİHAN BAHRAN I will collect my olution to ome of the exercie in thi book in thi document. Section 2.1 1. Let A = k[[t ]] be the ring of

More information

The Laplace Transform , Haynes Miller and Jeremy Orloff

The Laplace Transform , Haynes Miller and Jeremy Orloff The Laplace Tranform 8.3, Hayne Miller and Jeremy Orloff Laplace tranform baic: introduction An operator take a function a input and output another function. A tranform doe the ame thing with the added

More information

The Laplace Transform (Intro)

The Laplace Transform (Intro) 4 The Laplace Tranform (Intro) The Laplace tranform i a mathematical tool baed on integration that ha a number of application It particular, it can implify the olving of many differential equation We will

More information

Social Studies 201 Notes for March 18, 2005

Social Studies 201 Notes for March 18, 2005 1 Social Studie 201 Note for March 18, 2005 Etimation of a mean, mall ample ize Section 8.4, p. 501. When a reearcher ha only a mall ample ize available, the central limit theorem doe not apply to the

More information

CHAPTER 4 DESIGN OF STATE FEEDBACK CONTROLLERS AND STATE OBSERVERS USING REDUCED ORDER MODEL

CHAPTER 4 DESIGN OF STATE FEEDBACK CONTROLLERS AND STATE OBSERVERS USING REDUCED ORDER MODEL 98 CHAPTER DESIGN OF STATE FEEDBACK CONTROLLERS AND STATE OBSERVERS USING REDUCED ORDER MODEL INTRODUCTION The deign of ytem uing tate pace model for the deign i called a modern control deign and it i

More information

An Inequality for Nonnegative Matrices and the Inverse Eigenvalue Problem

An Inequality for Nonnegative Matrices and the Inverse Eigenvalue Problem An Inequality for Nonnegative Matrice and the Invere Eigenvalue Problem Robert Ream Program in Mathematical Science The Univerity of Texa at Dalla Box 83688, Richardon, Texa 7583-688 Abtract We preent

More information

Singular perturbation theory

Singular perturbation theory Singular perturbation theory Marc R. Rouel June 21, 2004 1 Introduction When we apply the teady-tate approximation (SSA) in chemical kinetic, we typically argue that ome of the intermediate are highly

More information

ME2142/ME2142E Feedback Control Systems

ME2142/ME2142E Feedback Control Systems Root Locu Analyi Root Locu Analyi Conider the cloed-loop ytem R + E - G C B H The tranient repone, and tability, of the cloed-loop ytem i determined by the value of the root of the characteritic equation

More information

1 Routh Array: 15 points

1 Routh Array: 15 points EE C28 / ME34 Problem Set 3 Solution Fall 2 Routh Array: 5 point Conider the ytem below, with D() k(+), w(t), G() +2, and H y() 2 ++2 2(+). Find the cloed loop tranfer function Y () R(), and range of k

More information

The Laplace Transform

The Laplace Transform Chapter 7 The Laplace Tranform 85 In thi chapter we will explore a method for olving linear differential equation with contant coefficient that i widely ued in electrical engineering. It involve the tranformation

More information

online learning Unit Workbook 4 RLC Transients

online learning Unit Workbook 4 RLC Transients online learning Pearon BTC Higher National in lectrical and lectronic ngineering (QCF) Unit 5: lectrical & lectronic Principle Unit Workbook 4 in a erie of 4 for thi unit Learning Outcome: RLC Tranient

More information

Design By Emulation (Indirect Method)

Design By Emulation (Indirect Method) Deign By Emulation (Indirect Method he baic trategy here i, that Given a continuou tranfer function, it i required to find the bet dicrete equivalent uch that the ignal produced by paing an input ignal

More information

MATEMATIK Datum: Tid: eftermiddag. A.Heintz Telefonvakt: Anders Martinsson Tel.:

MATEMATIK Datum: Tid: eftermiddag. A.Heintz Telefonvakt: Anders Martinsson Tel.: MATEMATIK Datum: 20-08-25 Tid: eftermiddag GU, Chalmer Hjälpmedel: inga A.Heintz Telefonvakt: Ander Martinon Tel.: 073-07926. Löningar till tenta i ODE och matematik modellering, MMG5, MVE6. Define what

More information

SIMON FRASER UNIVERSITY School of Engineering Science ENSC 320 Electric Circuits II. R 4 := 100 kohm

SIMON FRASER UNIVERSITY School of Engineering Science ENSC 320 Electric Circuits II. R 4 := 100 kohm SIMON FRASER UNIVERSITY School of Engineering Science ENSC 320 Electric Circuit II Solution to Aignment 3 February 2003. Cacaded Op Amp [DC&L, problem 4.29] An ideal op amp ha an output impedance of zero,

More information

S_LOOP: SINGLE-LOOP FEEDBACK CONTROL SYSTEM ANALYSIS

S_LOOP: SINGLE-LOOP FEEDBACK CONTROL SYSTEM ANALYSIS S_LOOP: SINGLE-LOOP FEEDBACK CONTROL SYSTEM ANALYSIS by Michelle Gretzinger, Daniel Zyngier and Thoma Marlin INTRODUCTION One of the challenge to the engineer learning proce control i relating theoretical

More information

Lecture Notes II. As the reactor is well-mixed, the outlet stream concentration and temperature are identical with those in the tank.

Lecture Notes II. As the reactor is well-mixed, the outlet stream concentration and temperature are identical with those in the tank. Lecture Note II Example 6 Continuou Stirred-Tank Reactor (CSTR) Chemical reactor together with ma tranfer procee contitute an important part of chemical technologie. From a control point of view, reactor

More information

EE Control Systems LECTURE 6

EE Control Systems LECTURE 6 Copyright FL Lewi 999 All right reerved EE - Control Sytem LECTURE 6 Updated: Sunday, February, 999 BLOCK DIAGRAM AND MASON'S FORMULA A linear time-invariant (LTI) ytem can be repreented in many way, including:

More information

ECE382/ME482 Spring 2004 Homework 4 Solution November 14,

ECE382/ME482 Spring 2004 Homework 4 Solution November 14, ECE382/ME482 Spring 2004 Homework 4 Solution November 14, 2005 1 Solution to HW4 AP4.3 Intead of a contant or tep reference input, we are given, in thi problem, a more complicated reference path, r(t)

More information

V = 4 3 πr3. d dt V = d ( 4 dv dt. = 4 3 π d dt r3 dv π 3r2 dv. dt = 4πr 2 dr

V = 4 3 πr3. d dt V = d ( 4 dv dt. = 4 3 π d dt r3 dv π 3r2 dv. dt = 4πr 2 dr 0.1 Related Rate In many phyical ituation we have a relationhip between multiple quantitie, and we know the rate at which one of the quantitie i changing. Oftentime we can ue thi relationhip a a convenient

More information

The Hassenpflug Matrix Tensor Notation

The Hassenpflug Matrix Tensor Notation The Haenpflug Matrix Tenor Notation D.N.J. El Dept of Mech Mechatron Eng Univ of Stellenboch, South Africa e-mail: dnjel@un.ac.za 2009/09/01 Abtract Thi i a ample document to illutrate the typeetting of

More information

LAPLACE TRANSFORM REVIEW SOLUTIONS

LAPLACE TRANSFORM REVIEW SOLUTIONS LAPLACE TRANSFORM REVIEW SOLUTIONS. Find the Laplace tranform for the following function. If an image i given, firt write out the function and then take the tranform. a e t inh4t From #8 on the table:

More information

Analysis of Step Response, Impulse and Ramp Response in the Continuous Stirred Tank Reactor System

Analysis of Step Response, Impulse and Ramp Response in the Continuous Stirred Tank Reactor System ISSN: 454-50 Volume 0 - Iue 05 May 07 PP. 7-78 Analyi of Step Repone, Impule and Ramp Repone in the ontinuou Stirred Tank Reactor Sytem * Zohreh Khohraftar, Pirouz Derakhhi, (Department of hemitry, Science

More information

Convex Hulls of Curves Sam Burton

Convex Hulls of Curves Sam Burton Convex Hull of Curve Sam Burton 1 Introduction Thi paper will primarily be concerned with determining the face of convex hull of curve of the form C = {(t, t a, t b ) t [ 1, 1]}, a < b N in R 3. We hall

More information

IEOR 3106: Fall 2013, Professor Whitt Topics for Discussion: Tuesday, November 19 Alternating Renewal Processes and The Renewal Equation

IEOR 3106: Fall 2013, Professor Whitt Topics for Discussion: Tuesday, November 19 Alternating Renewal Processes and The Renewal Equation IEOR 316: Fall 213, Profeor Whitt Topic for Dicuion: Tueday, November 19 Alternating Renewal Procee and The Renewal Equation 1 Alternating Renewal Procee An alternating renewal proce alternate between

More information

March 18, 2014 Academic Year 2013/14

March 18, 2014 Academic Year 2013/14 POLITONG - SHANGHAI BASIC AUTOMATIC CONTROL Exam grade March 8, 4 Academic Year 3/4 NAME (Pinyin/Italian)... STUDENT ID Ue only thee page (including the back) for anwer. Do not ue additional heet. Ue of

More information

Department of Mechanical Engineering Massachusetts Institute of Technology Modeling, Dynamics and Control III Spring 2002

Department of Mechanical Engineering Massachusetts Institute of Technology Modeling, Dynamics and Control III Spring 2002 Department of Mechanical Engineering Maachuett Intitute of Technology 2.010 Modeling, Dynamic and Control III Spring 2002 SOLUTIONS: Problem Set # 10 Problem 1 Etimating tranfer function from Bode Plot.

More information

What lies between Δx E, which represents the steam valve, and ΔP M, which is the mechanical power into the synchronous machine?

What lies between Δx E, which represents the steam valve, and ΔP M, which is the mechanical power into the synchronous machine? A 2.0 Introduction In the lat et of note, we developed a model of the peed governing mechanim, which i given below: xˆ K ( Pˆ ˆ) E () In thee note, we want to extend thi model o that it relate the actual

More information

Lecture 10 Filtering: Applied Concepts

Lecture 10 Filtering: Applied Concepts Lecture Filtering: Applied Concept In the previou two lecture, you have learned about finite-impule-repone (FIR) and infinite-impule-repone (IIR) filter. In thee lecture, we introduced the concept of filtering

More information

The Riemann Transform

The Riemann Transform The Riemann Tranform By Armando M. Evangelita Jr. armando78973@gmail.com Augut 28, 28 ABSTRACT In hi 859 paper, Bernhard Riemann ued the integral equation f (x ) x dx to develop an explicit formula for

More information

NCAAPMT Calculus Challenge Challenge #3 Due: October 26, 2011

NCAAPMT Calculus Challenge Challenge #3 Due: October 26, 2011 NCAAPMT Calculu Challenge 011 01 Challenge #3 Due: October 6, 011 A Model of Traffic Flow Everyone ha at ome time been on a multi-lane highway and encountered road contruction that required the traffic

More information

EE Control Systems LECTURE 14

EE Control Systems LECTURE 14 Updated: Tueday, March 3, 999 EE 434 - Control Sytem LECTURE 4 Copyright FL Lewi 999 All right reerved ROOT LOCUS DESIGN TECHNIQUE Suppoe the cloed-loop tranfer function depend on a deign parameter k We

More information

EXAM 4 -B2 MATH 261: Elementary Differential Equations MATH 261 FALL 2012 EXAMINATION COVER PAGE Professor Moseley

EXAM 4 -B2 MATH 261: Elementary Differential Equations MATH 261 FALL 2012 EXAMINATION COVER PAGE Professor Moseley EXAM 4 -B MATH 6: Elementary Differential Equation MATH 6 FALL 0 EXAMINATION COVER PAGE Profeor Moeley PRINT NAME ( ) Lat Name, Firt Name MI (What you wih to be called) ID # EXAM DATE Friday, Nov. 9, 0

More information

Main Topics: The Past, H(s): Poles, zeros, s-plane, and stability; Decomposition of the complete response.

Main Topics: The Past, H(s): Poles, zeros, s-plane, and stability; Decomposition of the complete response. EE202 HOMEWORK PROBLEMS SPRING 18 TO THE STUDENT: ALWAYS CHECK THE ERRATA on the web. Quote for your Parent' Partie: 1. Only with nodal analyi i the ret of the emeter a poibility. Ray DeCarlo 2. (The need

More information

NAME (pinyin/italian)... MATRICULATION NUMBER... SIGNATURE

NAME (pinyin/italian)... MATRICULATION NUMBER... SIGNATURE POLITONG SHANGHAI BASIC AUTOMATIC CONTROL June Academic Year / Exam grade NAME (pinyin/italian)... MATRICULATION NUMBER... SIGNATURE Ue only thee page (including the bac) for anwer. Do not ue additional

More information

MATH 251 Examination II April 6, 2015 FORM A. Name: Student Number: Section:

MATH 251 Examination II April 6, 2015 FORM A. Name: Student Number: Section: MATH 251 Examination II April 6, 2015 FORM A Name: Student Number: Section: Thi exam ha 12 quetion for a total of 100 point. In order to obtain full credit for partial credit problem, all work mut be hown.

More information

EXAM 4 -A2 MATH 261: Elementary Differential Equations MATH 261 FALL 2010 EXAMINATION COVER PAGE Professor Moseley

EXAM 4 -A2 MATH 261: Elementary Differential Equations MATH 261 FALL 2010 EXAMINATION COVER PAGE Professor Moseley EXAM 4 -A MATH 6: Elementary Differential Equation MATH 6 FALL 00 EXAMINATION COVER PAGE Profeor Moeley PRINT NAME ( ) Lat Name, Firt Name MI (What you wih to be called) ID # EXAM DATE Friday, Nov. 9,

More information

Problem Set 8 Solutions

Problem Set 8 Solutions Deign and Analyi of Algorithm April 29, 2015 Maachuett Intitute of Technology 6.046J/18.410J Prof. Erik Demaine, Srini Devada, and Nancy Lynch Problem Set 8 Solution Problem Set 8 Solution Thi problem

More information

Spring 2014 EE 445S Real-Time Digital Signal Processing Laboratory. Homework #0 Solutions on Review of Signals and Systems Material

Spring 2014 EE 445S Real-Time Digital Signal Processing Laboratory. Homework #0 Solutions on Review of Signals and Systems Material Spring 4 EE 445S Real-Time Digital Signal Proceing Laboratory Prof. Evan Homework # Solution on Review of Signal and Sytem Material Problem.. Continuou-Time Sinuoidal Generation. In practice, we cannot

More information

Chapter 7. Root Locus Analysis

Chapter 7. Root Locus Analysis Chapter 7 Root Locu Analyi jw + KGH ( ) GH ( ) - K 0 z O 4 p 2 p 3 p Root Locu Analyi The root of the cloed-loop characteritic equation define the ytem characteritic repone. Their location in the complex

More information

Clustering Methods without Given Number of Clusters

Clustering Methods without Given Number of Clusters Clutering Method without Given Number of Cluter Peng Xu, Fei Liu Introduction A we now, mean method i a very effective algorithm of clutering. It mot powerful feature i the calability and implicity. However,

More information

Lecture 7: Testing Distributions

Lecture 7: Testing Distributions CSE 5: Sublinear (and Streaming) Algorithm Spring 014 Lecture 7: Teting Ditribution April 1, 014 Lecturer: Paul Beame Scribe: Paul Beame 1 Teting Uniformity of Ditribution We return today to property teting

More information

TRIPLE SOLUTIONS FOR THE ONE-DIMENSIONAL

TRIPLE SOLUTIONS FOR THE ONE-DIMENSIONAL GLASNIK MATEMATIČKI Vol. 38583, 73 84 TRIPLE SOLUTIONS FOR THE ONE-DIMENSIONAL p-laplacian Haihen Lü, Donal O Regan and Ravi P. Agarwal Academy of Mathematic and Sytem Science, Beijing, China, National

More information

MA 266 FINAL EXAM INSTRUCTIONS May 2, 2005

MA 266 FINAL EXAM INSTRUCTIONS May 2, 2005 MA 66 FINAL EXAM INSTRUCTIONS May, 5 NAME INSTRUCTOR. You mut ue a # pencil on the mark ene heet anwer heet.. If the cover of your quetion booklet i GREEN, write in the TEST/QUIZ NUMBER boxe and blacken

More information

Problem 1. Construct a filtered probability space on which a Brownian motion W and an adapted process X are defined and such that

Problem 1. Construct a filtered probability space on which a Brownian motion W and an adapted process X are defined and such that Stochatic Calculu Example heet 4 - Lent 5 Michael Tehranchi Problem. Contruct a filtered probability pace on which a Brownian motion W and an adapted proce X are defined and uch that dx t = X t t dt +

More information

Pulsed Magnet Crimping

Pulsed Magnet Crimping Puled Magnet Crimping Fred Niell 4/5/00 1 Magnetic Crimping Magnetoforming i a metal fabrication technique that ha been in ue for everal decade. A large capacitor bank i ued to tore energy that i ued to

More information

Lecture #9 Continuous time filter

Lecture #9 Continuous time filter Lecture #9 Continuou time filter Oliver Faut December 5, 2006 Content Review. Motivation......................................... 2 2 Filter pecification 2 2. Low pa..........................................

More information

Eigenvalues and eigenvectors

Eigenvalues and eigenvectors Eigenvalue and eigenvector Defining and computing uggeted problem olution For each matri give below, find eigenvalue and eigenvector. Give a bai and the dimenion of the eigenpace for each eigenvalue. P:

More information

Constant Force: Projectile Motion

Constant Force: Projectile Motion Contant Force: Projectile Motion Abtract In thi lab, you will launch an object with a pecific initial velocity (magnitude and direction) and determine the angle at which the range i a maximum. Other tak,

More information

LECTURE 12: LAPLACE TRANSFORM

LECTURE 12: LAPLACE TRANSFORM LECTURE 12: LAPLACE TRANSFORM 1. Definition and Quetion The definition of the Laplace tranform could hardly be impler: For an appropriate function f(t), the Laplace tranform of f(t) i a function F () which

More information

ME 375 FINAL EXAM SOLUTIONS Friday December 17, 2004

ME 375 FINAL EXAM SOLUTIONS Friday December 17, 2004 ME 375 FINAL EXAM SOLUTIONS Friday December 7, 004 Diviion Adam 0:30 / Yao :30 (circle one) Name Intruction () Thi i a cloed book eamination, but you are allowed three 8.5 crib heet. () You have two hour

More information

L 2 -transforms for boundary value problems

L 2 -transforms for boundary value problems Computational Method for Differential Equation http://cmde.tabrizu.ac.ir Vol. 6, No., 8, pp. 76-85 L -tranform for boundary value problem Arman Aghili Department of applied mathematic, faculty of mathematical

More information

The Laplace Transform

The Laplace Transform The Laplace Tranform Prof. Siripong Potiuk Pierre Simon De Laplace 749-827 French Atronomer and Mathematician Laplace Tranform An extenion of the CT Fourier tranform to allow analyi of broader cla of CT

More information