We've mastered the Laplace transform. Now we unlock two powerful tools: handling discontinuous inputs with step functions and modeling system impulse response with convolution.
The Unit Step Function
Definition
$$u(t - \tau) = \begin{cases} 0, & t < \tau \\ 1, & t \geq \tau \end{cases}$$
A switch that turns ON at time $\tau$. Special case: $u(t)$ turns on at $t = 0$.
Physical Interpretation
The step function models a sudden change: a light switch flipping on, a constant force suddenly applied to a system, or a voltage step in a circuit.
Using Step Functions to Build Piecewise Functions
$$f(t) \cdot u(t-a) = \begin{cases} 0, & t < a \\ f(t), & t \geq a \end{cases}$$
Multiply any function by $u(t-a)$ to "turn it on" at $t = a$.
Converting Piecewise Functions to Step Functions
General Conversion Formula
$$f(t) = \begin{cases} f_1(t), & 0 \leq t < a \\ f_2(t), & t \geq a \end{cases} = f_1(t) + [f_2(t) - f_1(t)]u(t-a)$$
Worked Example
$$f(t) = \begin{cases} 2, & 0 \leq t < 3 \\ 5, & t \geq 3 \end{cases}$$
Start at $2$, then add $(5 - 2) = 3$ at $t = 3$:
$$f(t) = 2 + 3u(t-3)$$
Key insight: We can express ANY piecewise function as a linear combination of step functions. This is crucial for applying the Laplace transform!
Multiplication by $e^{-\tau s}$ in the s-domain = delay by $\tau$ in the time domain. This is one of the most powerful tools in control theory and signal processing!
First vs Second Shifting: Side by Side
First Shifting (s-shift)
Exponential multiplication in time
$$e^{at}f(t) \leftrightarrow F(s-a)$$
Shift the entire s-domain graph left or right by $a$.
Integration from 0 to $t$ (causal systems: nothing happens before $t = 0$).
Properties of Convolution
Commutative: $f * g = g * f$
Associative: $(f * g) * h = f * (g * h)$
Distributive: $f * (g + h) = f * g + f * h$
Intuitive Meaning
The result at time $t$ is a weighted average of the input $f(\tau)$ at all past times $\tau$, weighted by how the system $g$ responds to impulses that happened at time $\tau$.
The Convolution Theorem: Time to s-Domain Magic
The Theorem
$$\mathcal{L}\{(f * g)(t)\} = F(s) \cdot G(s)$$
where $F(s) = \mathcal{L}\{f(t)\}$ and $G(s) = \mathcal{L}\{g(t)\}$.
$u(t-\tau)$ represents a switch turning on at $t = \tau$. Piecewise functions → linear combinations of steps.
Second Shifting
$e^{-\tau s}F(s) \leftrightarrow f(t-\tau)u(t-\tau)$. Time delay in s-domain is exponential multiplication.
Convolution
$(f*g)(t) = \int_0^t f(\tau)g(t-\tau)d\tau$. Product in s-domain maps to time-domain convolution.
Convolution Theorem
$\mathcal{L}^{-1}\{F(s) \cdot G(s)\} = (f*g)(t)$. Powerful for inverse transforms of products.
Impulse Response
$g(t) = \mathcal{L}^{-1}\{G(s)\}$ tells us how a system responds to an instantaneous impulse.
System Output
$y(t) = (f*g)(t)$ is the output when input is $f(t)$ and impulse response is $g(t)$.
⚠️ Common Mistakes to Avoid
Forgetting the $u(t-\tau)$ factor: Shifted functions MUST include the step function. Otherwise they're active for all $t < 0$ too!
Confusing second shifting with first shifting: First = exponential in $t$. Second = delay in $t$.
Forgetting the limits of integration: Convolution is $\int_0^t$, not $\int_0^\infty$. We only "look back" to $t = 0$.
Thinking convolution is multiplication: $\mathcal{L}^{-1}\{F \cdot G\} = (f*g)$, NOT $f(t) \cdot g(t)$!
Next Up: Chapter Review & Exam Prep
We've now mastered the Laplace transform from start to finish: definition, inverse, ODEs, step functions, and convolution. Time to review and prepare for assessments!