Introduction to Laplace Transform

The Laplace transform is an integral transform that converts a function of a real variable t (usually time) into a function of a complex variable s (complex frequency). It transforms differential equations into algebraic equations, making them easier to solve.

Why Learn Laplace Transform?
  • Solves differential equations more easily
  • Essential for control systems and circuit analysis
  • Used in signal processing and communications
  • Analyzes system stability and response

Historical Context

The transform is named after Pierre-Simon Laplace, who introduced the concept in his work on probability theory. It was later popularized by Oliver Heaviside for solving electrical circuit problems.

Mathematical Definition

The Laplace transform of a function f(t) is defined as:

F(s) = ℒ{f(t)} = ∫0 f(t) e-st dt

where:

  • s = σ + jω is a complex frequency parameter
  • The integral exists for Re(s) > α (region of convergence)
  • f(t) is assumed to be piecewise continuous

Region of Convergence (ROC)

The ROC is the set of complex numbers s for which the Laplace integral converges. The ROC is crucial for the inverse Laplace transform and determines system properties like causality and stability.

Quick Check: Understanding the Definition

What is the independent variable in the Laplace domain?

A) t (time)
B) s (complex frequency)
C) ω (angular frequency)
D) f (frequency)

Properties of Laplace Transform

1. Linearity

ℒ{a·f(t) + b·g(t)} = a·F(s) + b·G(s)

The Laplace transform is a linear operator.

2. Time Shifting

ℒ{f(t - a)·u(t - a)} = e-asF(s)

where u(t) is the unit step function.

3. Frequency Shifting

ℒ{eatf(t)} = F(s - a)

4. Time Differentiation

ℒ{f'(t)} = sF(s) - f(0⁻)
ℒ{f''(t)} = s²F(s) - sf(0⁻) - f'(0⁻)

5. Time Integration

ℒ{∫0t f(τ)dτ} = F(s)/s

6. Convolution Theorem

ℒ{f(t) * g(t)} = F(s)·G(s)

where * denotes convolution.

7. Initial Value Theorem

limt→0⁺ f(t) = lims→∞ sF(s)

8. Final Value Theorem

limt→∞ f(t) = lims→0 sF(s)

Only valid if all poles of sF(s) are in the left half-plane.

Common Laplace Transform Pairs

Time Domain f(t) Laplace Domain F(s) ROC
δ(t) (Unit impulse) 1 All s
u(t) (Unit step) 1/s Re(s) > 0
t 1/s² Re(s) > 0
tn (n = 1,2,3...) n!/sn+1 Re(s) > 0
e-at 1/(s+a) Re(s) > -a
t·e-at 1/(s+a)² Re(s) > -a
sin(ωt) ω/(s²+ω²) Re(s) > 0
cos(ωt) s/(s²+ω²) Re(s) > 0
e-atsin(ωt) ω/[(s+a)²+ω²] Re(s) > -a
e-atcos(ωt) (s+a)/[(s+a)²+ω²] Re(s) > -a

Inverse Laplace Transform

The inverse Laplace transform converts a function F(s) back to its time-domain representation f(t).

f(t) = ℒ-1{F(s)} = (1/(2πj)) ∫γ-j∞γ+j∞ F(s)est ds

where γ is a real number greater than the real parts of all singularities of F(s).

Methods for Finding Inverse Transforms

1. Partial Fraction Expansion

Most common method: Decompose F(s) into simpler terms that appear in the transform table.

Example: F(s) = 3/[(s+1)(s+2)] = A/(s+1) + B/(s+2)

2. Convolution Theorem

If F(s) = G(s)H(s), then f(t) = g(t) * h(t) = ∫0t g(τ)h(t-τ)dτ

3. Residue Theorem

For complex analysis approach: f(t) = Σ Residues of F(s)est at its poles

Applications of Laplace Transform

1. Solving Differential Equations

Converts ODEs into algebraic equations that are easier to solve.

Steps:

  1. Take Laplace transform of both sides
  2. Substitute initial conditions
  3. Solve for F(s)
  4. Find inverse Laplace transform

2. Electrical Circuit Analysis

Transforms time-domain circuit equations into algebraic equations in s-domain.

Element Time Domain Laplace Domain
Resistor v(t) = Ri(t) V(s) = RI(s)
Capacitor i(t) = C dv/dt I(s) = sCV(s) - Cv(0)
Inductor v(t) = L di/dt V(s) = sLI(s) - Li(0)

3. Control Systems

Used to derive transfer functions, analyze stability, and design controllers.

Transfer Function: G(s) = Y(s)/U(s)

Stability: All poles in left half-plane (Re(p) < 0)

4. Signal Processing

Analyzes system response, filters, and signal behavior in s-domain.

Worked Examples

Example 1: Basic Transform

Find the Laplace transform of f(t) = 3e-2t + 2sin(3t)

Solution:

Using linearity property:

ℒ{3e-2t + 2sin(3t)} = 3ℒ{e-2t} + 2ℒ{sin(3t)}
= 3 × 1/(s+2) + 2 × 3/(s²+9)
= 3/(s+2) + 6/(s²+9)

Example 2: Solving an ODE

Solve: y''(t) + 3y'(t) + 2y(t) = e-t, with y(0)=0, y'(0)=0

Solution:

  1. Take Laplace transform of both sides:
  2. s²Y(s) - sy(0) - y'(0) + 3[sY(s) - y(0)] + 2Y(s) = 1/(s+1)
  3. Substitute initial conditions:
  4. s²Y(s) + 3sY(s) + 2Y(s) = 1/(s+1)
  5. Solve for Y(s):
  6. Y(s) = 1/[(s+1)(s²+3s+2)] = 1/[(s+1)²(s+2)]
  7. Partial fraction expansion:
  8. Y(s) = 1/(s+1) - 1/(s+2) + 1/(s+1)²
  9. Take inverse transform:
  10. y(t) = e-t - e-2t + t·e-t

Practice Problem

Find the Laplace transform of f(t) = 4cos(2t) + 3t²