Formula index

FORMULA / 002

Laplace transform: the nature of the s-domain

Extends Fourier analysis with exponential weighting and explains ROC, poles, and stability.

laplacepolesstability
Ready
\[X(s)=\int_{0^-}^{\infty}x(t)e^{-st}\,dt\]
Use s = sigma + j omega to connect decay, oscillation, and impulse response.
01

Problem Definition

Problem statement and variable definition

A power rail may ring after a load step; whether it decays or grows is more important than its frequency alone.

Core variable legend

SymbolQuantityUnitMeaning
$s$Complex frequency1/sCombines exponential decay and oscillation.
$\sigma$Real part of s1/sControls growth or decay.
$\omega$Imaginary part of srad/sControls oscillation frequency.
$p_i$Pole1/sNatural mode of the system.
02

Analytical Derivation

Model assumptions and analytical derivation

Model simplifications

ItemAssumption
Assumption 1Continuous-time LTI model.
Assumption 2Causal response unless stated otherwise.
Assumption 3Initial conditions are included through the one-sided transform when needed.

Start with the exponential test signal

\[e^{-st}=e^{-\sigma t}e^{-j\omega t}\]

The transform probes both convergence and frequency content.

Separate real and imaginary parts of s.

Define the one-sided transform

\[X(s)=\int_{0^-}^{\infty}x(t)e^{-st}\,dt\]

The lower limit captures impulse and initial-condition effects.

Use the engineering one-sided convention.

Connect poles to natural modes

\[h(t)=\sum_i A_i e^{p_i t}u(t)\]

Each pole creates a mode whose envelope is set by its real part.

Apply inverse transform residues.
$\Re\{p_i\}<0$$e^{p_i t}\to0$

Modes decay, so a causal LTI system can be stable.

$\Re\{p_i\}>0$$e^{p_i t}\to\infty$

Any small disturbance grows and the model is unstable.

03

Parametric Verification

Parametric simulation and numerical verification

Use the sliders to change the physical parameters and watch the formula expose its behavior. The metric panel keeps sample count and compute latency visible so the visualization remains an engineering instrument, not only a picture.

04

Engineering Application

Engineering application and implementation notes

Design rules

  1. When reviewing a transfer function, inspect pole locations before gain numbers.
  2. Keep damping margin for component tolerance and temperature drift.
  3. Do not infer stability from magnitude response alone; phase and pole locations matter.

Core algorithm

python
import numpy as np

def modal_response(poles, residues, t):
    y = np.zeros_like(t, dtype=complex)
    for p, r in zip(poles, residues):
        y += r * np.exp(p * t)
    return np.real(y)