Unit Step Function Laplace Transform

Heaviside steps, the second shifting theorem, and piecewise inputs written as u(t − a)
Laplace transform of u(t - 3)
Laplace transform of f(t) = (t-2)^2 for t >= 2, 0 otherwise
Laplace transform of f(t) = 3 on [0,4) and 0 for t >= 4
Inverse Laplace transform of e^(-5s)/(s^2 + 1)

The Heaviside Step Function

The unit step (Heaviside) function switches on at t=at = a:

u(ta)={0,t<a1,ta(a0)u(t-a) = \begin{cases} 0, & t < a \\ 1, & t \ge a \end{cases} \qquad (a \ge 0)

Its transform follows straight from the definition, and the integral converges only for s>0s > 0:

L{u(ta)}=0estu(ta)dt=aestdt=[ests]a=eass\mathcal{L}\{u(t-a)\} = \int_0^{\infty} e^{-st}u(t-a)\,dt = \int_a^{\infty} e^{-st}\,dt = \left[\frac{-e^{-st}}{s}\right]_a^{\infty} = \frac{e^{-as}}{s}

Writing piecewise functions with steps is the whole point. A function that is 00, then turns on at aa and off at bb, is a window:

u(ta)u(tb)u(t-a) - u(t-b)

So f(t)=3f(t) = 3 on [0,4)[0,4) and 00 afterwards becomes 33u(t4)3 - 3u(t-4). Building this expression correctly is the step where most of the work — and most of the errors — live. The value assigned at the single point t=at = a never affects the transform.

The Second Shifting Theorem

If L{f(t)}=F(s)\mathcal{L}\{f(t)\} = F(s), then a delayed copy of ff transforms to

L{u(ta)f(ta)}=easF(s)\mathcal{L}\{u(t-a)f(t-a)\} = e^{-as}F(s)

Read the left side carefully: the function must be f(ta)f(t-a), shifted by the same aa as the step. A factor of ease^{-as} in the ss-domain always means a time delay of aa.

When the function is not pre-shifted, use the equivalent form

L{u(ta)g(t)}=easL{g(t+a)}\mathcal{L}\{u(t-a)g(t)\} = e^{-as}\,\mathcal{L}\{g(t+a)\}

Inverting runs the same theorem backwards: L1{easF(s)}=u(ta)f(ta)\mathcal{L}^{-1}\{e^{-as}F(s)\} = u(t-a)f(t-a). For example L1{e5ss2+1}=u(t5)sin(t5)\mathcal{L}^{-1}\left\{\dfrac{e^{-5s}}{s^2+1}\right\} = u(t-5)\sin(t-5).

Convolution handles a product of transforms: L1{F(s)G(s)}=(fg)(t)=0tf(τ)g(tτ)dτ\mathcal{L}^{-1}\{F(s)G(s)\} = (f*g)(t) = \int_0^t f(\tau)g(t-\tau)\,d\tau. This is why ease^{-as} times F(s)F(s) is a shift — convolving with δ(ta)\delta(t-a) translates ff.

All of this assumes ff is piecewise continuous and of exponential order, so the transform exists.

Common Mistakes to Avoid

  • Using f(t)f(t) where the theorem needs f(ta)f(t-a). L{u(t2)t2}e2s2/s3\mathcal{L}\{u(t-2)t^2\} \neq e^{-2s}\cdot 2/s^3; you must first rewrite t2=(t2)2+4(t2)+4t^2 = (t-2)^2 + 4(t-2) + 4.
  • Getting the window backwards. "On during [a,b][a,b]" is u(ta)u(tb)u(t-a) - u(t-b); reversing the order flips the sign of the whole pulse.
  • Forgetting s>0s > 0. The improper integral diverges otherwise, and the est0e^{-st} \to 0 step at the upper limit is only valid there.
  • Multiplying the shifts instead of adding. Each switch contributes its own additive term; steps do not compose by multiplication.
  • Confusing the two shifting theorems. easF(s)e^{-as}F(s) is a shift in tt; F(sa)F(s-a) corresponds to eatf(t)e^{at}f(t), a shift in ss.
  • Reassembling an inverse without the u(ta)u(t-a) factor, which would incorrectly switch the term on for all tt.

示例题目

Step 1: By definition, L{u(t3)}=0estu(t3)dt\mathcal{L}\{u(t-3)\} = \displaystyle\int_0^{\infty} e^{-st}u(t-3)\,dt
Step 2: The step is 00 below t=3t = 3, so the lower limit becomes 33: 3estdt\displaystyle\int_3^{\infty} e^{-st}\,dt
Step 3: =[ests]3= \left[\dfrac{-e^{-st}}{s}\right]_3^{\infty}; for s>0s > 0 the upper limit gives 00
Step 4: =0(e3ss)=e3ss= 0 - \left(\dfrac{-e^{-3s}}{s}\right) = \dfrac{e^{-3s}}{s}
Answer: e3ss\dfrac{e^{-3s}}{s}, valid for s>0s > 0

Step 1: Write it with a step: f(t)=u(t2)(t2)2f(t) = u(t-2)(t-2)^2
Step 2: This is already in the form u(ta)g(ta)u(t-a)g(t-a) with a=2a = 2 and g(t)=t2g(t) = t^2
Step 3: G(s)=L{t2}=2!s3=2s3G(s) = \mathcal{L}\{t^2\} = \dfrac{2!}{s^3} = \dfrac{2}{s^3}
Step 4: Second shifting theorem: multiply by eas=e2se^{-as} = e^{-2s}
Answer: 2e2ss3\dfrac{2e^{-2s}}{s^3}

Step 1: As a window: f(t)=3[u(t)u(t4)]=33u(t4)f(t) = 3\big[u(t) - u(t-4)\big] = 3 - 3u(t-4)
Step 2: L{3}=3s\mathcal{L}\{3\} = \dfrac{3}{s}
Step 3: L{3u(t4)}=3e4ss\mathcal{L}\{3u(t-4)\} = 3 \cdot \dfrac{e^{-4s}}{s}
Step 4: Subtract by linearity: 3s3e4ss\dfrac{3}{s} - \dfrac{3e^{-4s}}{s}
Answer: 3(1e4s)s\dfrac{3\left(1 - e^{-4s}\right)}{s}

常见问题

L{u(t - a)} = e^(-as)/s for s > 0. With a = 0 this reduces to L{1} = 1/s, since u(t) is just the constant 1 on the domain of the transform.

It states that L{u(t-a) f(t-a)} = e^(-as) F(s). In words, delaying a signal by a in the time domain multiplies its transform by e^(-as). Reading it backwards inverts any transform containing an exponential factor.

Rewrite the function in powers of (t - a) first, or use the alternative form L{u(t-a) g(t)} = e^(-as) L{g(t + a)}. For example, u(t-2)t^2 needs t^2 expressed as (t-2)^2 + 4(t-2) + 4.

Convolution says the inverse of a product F(s)G(s) is the integral from 0 to t of f(tau)g(t-tau) d tau. Since e^(-as) is the transform of the shifted impulse, multiplying by it convolves f with delta(t - a), which simply translates f — exactly the second shifting theorem.

相关学习指南

免费试用 AI-Math

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

开始解题