SS Notes
Methods for computing the inverse Laplace transform — partial fraction expansion, residue method, and table lookup.
Introduction
The Laplace transform is one of the most powerful mathematical tools in engineering, converting differential equations into algebraic equations and enabling systematic analysis of linear systems. Named after Pierre-Simon Laplace, it generalizes the Fourier transform to the complex frequency plane, allowing analysis of signals and systems that the Fourier transform cannot handle (unstable systems, growing signals, transient responses with initial conditions).
For B.Tech students, the Laplace transform is essential for circuit analysis, control systems, and understanding system stability. It transforms the difficult task of solving differential equations into the much simpler task of algebraic manipulation followed by table lookup.
The Laplace Transform Definition
The bilateral (two-sided) Laplace transform is defined as:
$$X(s) = \int_{-\infty}^{\infty} x(t) e^{-st} dt$$
where $s = \sigma + j\omega$ is a complex variable. The unilateral (one-sided) version integrates from $0^-$:
$$X(s) = \int_{0^-}^{\infty} x(t) e^{-st} dt$$
The unilateral form is most common in engineering because physical signals are causal and initial conditions at $t = 0$ are naturally incorporated.
Relationship to Fourier Transform
The Fourier transform is a special case of the Laplace transform when $s = j\omega$ (purely imaginary):
$$X(j\omega) = X(s)|_{s=j\omega} = \int_{-\infty}^{\infty} x(t) e^{-j\omega t} dt$$
The Laplace transform adds the real part $\sigma$ which acts as an exponential weighting factor $e^{-\sigma t}$. This allows the integral to converge for signals where the Fourier integral diverges (e.g., growing exponentials, step functions without the impulse correction).
Region of Convergence (ROC)
The ROC is the set of values of $s$ for which the Laplace integral converges. It is always a vertical strip in the s-plane (region between vertical lines of constant $\sigma$). Key properties:
- Right-sided signals (causal): ROC is to the RIGHT of the rightmost pole
- Left-sided signals: ROC is to the LEFT of the leftmost pole
- Two-sided signals: ROC is a strip between poles
- Stability: System is BIBO stable if ROC includes the $j\omega$ axis
- Causal + Stable: ROC is the right half-plane (all poles in LHP)
The ROC must be specified for uniqueness — the same algebraic expression $X(s)$ with different ROCs corresponds to different time-domain signals.
Key Transform Pairs
| $x(t)$ | $X(s)$ | ROC |
|---|---|---|
| $\delta(t)$ | $1$ | All $s$ |
| $u(t)$ | $1/s$ | $\text{Re}(s) > 0$ |
| $tu(t)$ | $1/s^2$ | $\text{Re}(s) > 0$ |
| $t^n u(t)$ | $n!/s^{n+1}$ | $\text{Re}(s) > 0$ |
| $e^{-at}u(t)$ | $1/(s+a)$ | $\text{Re}(s) > -a$ |
| $te^{-at}u(t)$ | $1/(s+a)^2$ | $\text{Re}(s) > -a$ |
| $\cos(\omega_0 t)u(t)$ | $s/(s^2+\omega_0^2)$ | $\text{Re}(s) > 0$ |
| $\sin(\omega_0 t)u(t)$ | $\omega_0/(s^2+\omega_0^2)$ | $\text{Re}(s) > 0$ |
| $e^{-at}\cos(\omega_0 t)u(t)$ | $(s+a)/((s+a)^2+\omega_0^2)$ | $\text{Re}(s) > -a$ |
Essential Properties
Linearity
$\mathcal{L}\{af(t)+bg(t)\} = aF(s)+bG(s)$
Time Shifting
$\mathcal{L}\{f(t-a)u(t-a)\} = e^{-as}F(s)$
s-Domain Shifting (Frequency Shifting)
$\mathcal{L}\{e^{at}f(t)\} = F(s-a)$
Differentiation in Time
$\mathcal{L}\{f'(t)\} = sF(s) - f(0^-)$ $\mathcal{L}\{f''(t)\} = s^2F(s) - sf(0^-) - f'(0^-)$
Integration
$\mathcal{L}\{\int_0^t f(\tau)d\tau\} = F(s)/s$
Convolution Theorem
$\mathcal{L}\{f(t)*g(t)\} = F(s) \cdot G(s)$
Initial Value Theorem
$f(0^+) = \lim_{s\to\infty} sF(s)$
Final Value Theorem
$\lim_{t\to\infty} f(t) = \lim_{s\to 0} sF(s)$ (valid only if all poles of $sF(s)$ are in LHP)
Inverse Laplace Transform
The inverse is computed primarily through partial fraction expansion:
- Express $X(s)$ as a ratio of polynomials $N(s)/D(s)$
- Factor the denominator to find poles
- Decompose into partial fractions: $X(s) = \sum \frac{A_i}{s-p_i}$ (for distinct poles)
- Look up each term in the transform table
For repeated poles: $\frac{A}{(s+a)^n} \leftrightarrow \frac{A}{(n-1)!}t^{n-1}e^{-at}u(t)$
For complex conjugate poles: combine into second-order terms giving damped sinusoids.
Transfer Function and System Analysis
For an LTI system described by: $a_n y^{(n)} + \cdots + a_0 y = b_m x^{(m)} + \cdots + b_0 x$
The transfer function is: $$H(s) = \frac{Y(s)}{X(s)} = \frac{b_m s^m + \cdots + b_0}{a_n s^n + \cdots + a_0}$$
Poles of $H(s)$: natural frequencies of the system (determine stability and transient behavior) Zeros of $H(s)$: frequencies where output is zero regardless of input amplitude
Stability criterion: All poles must be in the left half s-plane (negative real parts) for a causal, BIBO-stable system.
Worked Examples
Example 1: Find $\mathcal{L}\{3e^{-2t}\cos(4t)u(t)\}$.
Using s-shift with $\cos(4t)u(t) \leftrightarrow s/(s^2+16)$:
$X(s) = 3 \cdot \frac{s+2}{(s+2)^2+16} = \frac{3(s+2)}{s^2+4s+20}$
Example 2: Find inverse of $X(s) = \frac{5}{(s+1)(s+3)}$.
Partial fractions: $\frac{5}{(s+1)(s+3)} = \frac{5/2}{s+1} - \frac{5/2}{s+3}$
$x(t) = \frac{5}{2}(e^{-t} - e^{-3t})u(t)$
Example 3: An RC circuit has $H(s) = \frac{1}{1+sRC}$. Find step response.
$Y(s) = H(s) \cdot \frac{1}{s} = \frac{1}{s(1+sRC)} = \frac{1}{s} - \frac{1}{s+1/RC}$
$y(t) = (1 - e^{-t/RC})u(t)$
Time constant $\tau = RC$. Settles to 1 (final value). Verified by FVT: $\lim_{s\to 0}s \cdot \frac{1}{s(1+sRC)} = 1$ ✓
Key Takeaways
- The Laplace transform converts differential equations to algebraic equations in s-domain
- $s = \sigma + j\omega$ generalizes Fourier ($s = j\omega$) by adding convergence factor $e^{-\sigma t}$
- ROC determines signal type and must be specified for uniqueness
- Transfer function $H(s) = Y(s)/X(s)$ completely characterizes an LTI system
- Stability requires all poles in the left half s-plane for causal systems
- Partial fraction expansion is the primary method for inverse transforms
- Initial and final value theorems provide quick signal behavior checks
Exam Focus
Revise definitions, diagrams, examples, and short-answer points for Inverse Laplace Transform.
Interview Use
Prepare one clear explanation, one practical example, and one common mistake for this Signals & Systems topic.
Search Terms
signal-systems, signals & systems, signal, systems, laplace, transform, inverse, inverse laplace transform
Related Signals & Systems Topics