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)โˆ’snโˆ’1f(0)โˆ’snโˆ’2fโ€ฒ(0)โˆ’โ‹ฏโˆ’f(nโˆ’1)(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), fโ€ฒf' 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{tโ€‰f(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 yโ€ฒy' with sYโˆ’y(0)sY - y(0) and yโ€ฒโ€ฒy'' with s2Yโˆ’sy(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}1sโˆ’a\dfrac{1}{s-a}
cosโกat\cos atss2+a2\dfrac{s}{s^2+a^2}
sinโกat\sin atas2+a2\dfrac{a}{s^2+a^2}
teatte^{at}1(sโˆ’a)2\dfrac{1}{(s-a)^2}

Checking a rule

Any derivative rule can be verified two ways: transform fโ€ฒf' 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.

Examples

Step 1: Direct route: fโ€ฒ(t)=โˆ’asinโกatf'(t) = -a\sin at, and L{sinโกat}=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{cosโกat}=ss2+a2F(s) = \mathcal{L}\{\cos at\} = \dfrac{s}{s^2+a^2} and f(0)=cosโก0=1f(0) = \cos 0 = 1
Step 3: sF(s)โˆ’f(0)=s2s2+a2โˆ’1sF(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)=1sโˆ’1F(s) = \dfrac{1}{s-1} for s>1s > 1
Step 2: Differentiate with respect to ss: Fโ€ฒ(s)=โˆ’1(sโˆ’1)2F'(s) = -\dfrac{1}{(s-1)^2}
Step 3: Apply the rule: L{tet}=โˆ’Fโ€ฒ(s)=1(sโˆ’1)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 sโ†’sโˆ’1s \to s-1 gives 1(sโˆ’1)2\dfrac{1}{(s-1)^2} โœ“
Answer: 1(sโˆ’1)2\dfrac{1}{(s-1)^2} for s>1s > 1

Step 1: Transform the second derivative: L{yโ€ฒโ€ฒ}=s2Yโˆ’sy(0)โˆ’yโ€ฒ(0)=s2Yโˆ’s\mathcal{L}\{y''\} = s^2Y - sy(0) - y'(0) = s^2Y - s
Step 2: The equation becomes s2Yโˆ’s+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)=cosโก2ty(t) = \cos 2t
Step 5: Check: yโ€ฒโ€ฒ=โˆ’4cosโก2ty'' = -4\cos 2t, so yโ€ฒโ€ฒ+4y=0y'' + 4y = 0 โœ“, with y(0)=1y(0)=1 and yโ€ฒ(0)=0y'(0)=0 โœ“
Answer: y(t)=cosโก2ty(t) = \cos 2t

Frequently Asked Questions

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.

Related Solvers

Related Guides

Try AI-Math for Free

Get step-by-step solutions to any math problem. Upload a photo or type your question.

Start Solving