Advanced Engineering Mathematics

Laplace Transform

From time domain to s-domain — solving differential equations algebraically

1. Building Intuition

The Fourier Transform decomposes signals into pure oscillations (sine waves). But what about signals that grow or decay? The Laplace Transform extends this idea by replacing pure oscillation eiωt with a damped oscillation e-(σ+jω)t.

The real power of Laplace: it converts calculus (differential equations) into algebra. Derivatives become multiplications by s. Solve the algebra, then transform back — no integration required.

The s-plane maps system behavior. Poles (×) determine response character — their real part controls decay rate, imaginary part controls oscillation frequency. Zeros (○) shape the response. Poles in the left half-plane mean stability.

2. The Mathematics

The Laplace Transform maps a function of time f(t) into a function of complex frequency s = σ + jω:

Laplace Transform

The key property that makes ODE solving trivial: differentiation in the time domain becomes multiplication by s in the s-domain (minus initial conditions):

Derivative Property
Second Derivative

For a linear system with input X(s) and output Y(s), the transfer functioncompletely characterizes the system's behavior:

Transfer Function

3. Applications

Fourier analysis uses pure sinusoids (top). Laplace uses exponentially damped sinusoids (bottom), capturing both oscillation frequency ω and decay rate σ. The yellow envelope shows e-σt.

Control Systems

Transfer functions, Bode plots, stability analysis via pole placement. The foundation of PID controller design.

Circuit Analysis

Impedance of capacitors (1/sC) and inductors (sL) in s-domain. Solve circuits algebraically.

Mechanical Systems

Spring-mass-damper models become simple polynomials in s. Natural frequency and damping ratio from pole locations.

Signal Processing

Filter design (Butterworth, Chebyshev) is done in the s-domain, then discretized for digital implementation.

4. Worked Examples

Example 1: Solving y'' + 3y' + 2y = 0

Given initial conditions y(0) = 1, y'(0) = 0. Apply Laplace Transform:

Inverse transform using the table (L-1{1/(s+a)} = e-at):

Solution

Example 2: RC Circuit Step Response

An RC circuit with R = 1kΩ, C = 1μF has transfer function:

For a unit step input (Vin = 1/s), the output is:

Step Response

Example 3: Spring-Mass-Damper System

A mass m on a spring (constant k) with damper (coefficient b): mx'' + bx' + kx = F(t)

The poles s = (-b ± √(b²-4mk)) / 2m determine the behavior: underdamped (b² < 4mk, oscillatory decay), critically damped (b² = 4mk, fastest non-oscillatory), overdamped (b² > 4mk, slow exponential decay).

5. Resources