Laplace of a Derivative

Turn derivatives into algebra with the L{f'} and L{f''} rules, worked step by step
Laplace transform of the derivative of cos(2t)
Laplace transform of t*e^t
Transform y'' + 4y = 0 with y(0) = 1, y'(0) = 0
Laplace transform of the constant 7

The Derivative Rules

The reason the Laplace transform is worth learning is that it converts differentiation into multiplication by ss:

L{f(t)}=sF(s)f(0)\mathcal{L}\{f'(t)\} = sF(s) - f(0)

L{f(t)}=s2F(s)sf(0)f(0)\mathcal{L}\{f''(t)\} = s^2F(s) - s f(0) - f'(0)

and in general

L{f(n)(t)}=snF(s)sn1f(0)sn2f(0)f(n1)(0)\mathcal{L}\{f^{(n)}(t)\} = s^nF(s) - s^{n-1}f(0) - s^{n-2}f'(0) - \cdots - f^{(n-1)}(0)

The hypotheses matter: ff must be continuous on [0,)[0,\infty), ff' piecewise continuous, and both of exponential order. If ff jumps at t=0t = 0, the rule needs f(0+)f(0^+) and an extra term.

The boundary values are not optional decoration — they arise from integrating by parts, and they are exactly how initial conditions enter a differential equation.

A related but different property runs the other way:

L{tf(t)}=F(s)\mathcal{L}\{t\,f(t)\} = -F'(s)

How to Use Them

Transforming an equation

  1. Write Y(s)=L{y(t)}Y(s) = \mathcal{L}\{y(t)\}.
  2. Replace yy' with sYy(0)sY - y(0) and yy'' with s2Ysy(0)y(0)s^2Y - sy(0) - y'(0).
  3. Transform the right-hand side from the table.
  4. Solve the resulting algebraic equation for Y(s)Y(s).
  5. Invert to get y(t)y(t).

The whole point is step 4: a differential equation becomes a linear equation.

Useful transforms for the right-hand side

f(t)f(t)F(s)F(s)
constant cccs\dfrac{c}{s}
0000
tnt^nn!sn+1\dfrac{n!}{s^{n+1}}
eate^{at}1sa\dfrac{1}{s-a}
cosat\cos atss2+a2\dfrac{s}{s^2+a^2}
sinat\sin atas2+a2\dfrac{a}{s^2+a^2}
teatte^{at}1(sa)2\dfrac{1}{(s-a)^2}

Checking a rule

Any derivative rule can be verified two ways: transform ff' directly from the table, and separately compute sF(s)f(0)sF(s) - f(0). They must agree — Example 1 below does exactly that.

Common Mistakes to Avoid

  • Dropping the initial values: L{f}=sF(s)\mathcal{L}\{f'\} = sF(s) is wrong; the f(0)-f(0) term is what carries the initial condition.
  • Wrong coefficients in the second-derivative rule: it is s2F(s)sf(0)f(0)s^2F(s) - sf(0) - f'(0). The ss multiplies f(0)f(0), never f(0)f'(0).
  • Confusing L{f(t)}\mathcal{L}\{f'(t)\} with ddsF(s)\dfrac{d}{ds}F(s): the first differentiates in time, the second in ss, and the second corresponds to multiplying by t-t.
  • Transforming a constant to itself: L{7}=7s\mathcal{L}\{7\} = \frac{7}{s}, not 77. Only L{δ(t)}\mathcal{L}\{\delta(t)\} equals a constant.
  • Applying the rule to a discontinuous ff: with a jump at t=0t=0 the derivative includes a delta and the plain formula fails.

示例题目

Step 1: Direct route: f(t)=asinatf'(t) = -a\sin at, and L{sinat}=as2+a2\mathcal{L}\{\sin at\} = \dfrac{a}{s^2+a^2}, so L{f}=a2s2+a2\mathcal{L}\{f'\} = -\dfrac{a^2}{s^2+a^2}
Step 2: Rule route: F(s)=L{cosat}=ss2+a2F(s) = \mathcal{L}\{\cos at\} = \dfrac{s}{s^2+a^2} and f(0)=cos0=1f(0) = \cos 0 = 1
Step 3: sF(s)f(0)=s2s2+a21sF(s) - f(0) = \dfrac{s^2}{s^2+a^2} - 1
Step 4: Combine over a common denominator: s2(s2+a2)s2+a2=a2s2+a2\dfrac{s^2 - (s^2+a^2)}{s^2+a^2} = -\dfrac{a^2}{s^2+a^2}
Step 5: Both routes agree
Answer: L{f}=a2s2+a2\mathcal{L}\{f'\} = -\dfrac{a^2}{s^2+a^2}, confirming the rule

Step 1: Take f(t)=etf(t) = e^{t}, so F(s)=1s1F(s) = \dfrac{1}{s-1} for s>1s > 1
Step 2: Differentiate with respect to ss: F(s)=1(s1)2F'(s) = -\dfrac{1}{(s-1)^2}
Step 3: Apply the rule: L{tet}=F(s)=1(s1)2\mathcal{L}\{te^{t}\} = -F'(s) = \dfrac{1}{(s-1)^2}
Step 4: Cross-check with the shifting theorem: L{t}=1s2\mathcal{L}\{t\} = \dfrac{1}{s^2}, and shifting ss1s \to s-1 gives 1(s1)2\dfrac{1}{(s-1)^2}
Answer: 1(s1)2\dfrac{1}{(s-1)^2} for s>1s > 1

Step 1: Transform the second derivative: L{y}=s2Ysy(0)y(0)=s2Ys\mathcal{L}\{y''\} = s^2Y - sy(0) - y'(0) = s^2Y - s
Step 2: The equation becomes s2Ys+4Y=0s^2Y - s + 4Y = 0
Step 3: Factor and solve: (s2+4)Y=s(s^2+4)Y = s, so Y(s)=ss2+4Y(s) = \dfrac{s}{s^2+4}
Step 4: Recognise the cosine form with a=2a = 2: y(t)=cos2ty(t) = \cos 2t
Step 5: Check: y=4cos2ty'' = -4\cos 2t, so y+4y=0y'' + 4y = 0 ✓, with y(0)=1y(0)=1 and y(0)=0y'(0)=0
Answer: y(t)=cos2ty(t) = \cos 2t

常见问题

L{f'(t)} = sF(s) - f(0). Differentiation in time becomes multiplication by s in the transform domain, minus the initial value. The rule comes from integrating the defining integral by parts, which is where the boundary term f(0) originates.

L{f''(t)} = s^2 F(s) - s f(0) - f'(0). Applying the first-derivative rule twice produces both initial values, with f(0) picking up a factor of s and f'(0) standing alone.

For a constant c it is c/s, valid for s > 0, which follows from linearity and L{1} = 1/s. The transform of the constant 0 is 0. Note that a constant does not transform to itself — only the Dirac delta has transform equal to 1.

Because the derivative rules consume them: y(0) and y'(0) appear directly in the transformed equation. That is an advantage, not a cost — solving for Y(s) and inverting gives the particular solution straight away, with no general solution and no constants to pin down afterwards.

相关求解器

相关学习指南

免费试用 AI-Math

任何数学问题都能获得分步解答。拍照上传或输入问题即可。

开始解题