SS Notes
Complete study of the unit step function — definition, properties, relationship to impulse and ramp, Laplace transform, and applications in system analysis.
Introduction
The unit step function (also called the Heaviside step function, named after Oliver Heaviside who pioneered its use in circuit analysis) is one of the three fundamental building blocks of signals and systems, alongside the impulse and sinusoidal signals. It represents the simplest possible switching action — a signal that is "off" for all time before zero and "on" for all time after zero. Every time a switch is flipped, a device is powered on, or a system starts operating, the unit step models that transition.
For B.Tech students, the step function serves three critical roles: (1) it enables the representation of causal signals (signals that start at $t = 0$), (2) its integral gives the ramp and its derivative gives the impulse, connecting the basic signal family, and (3) the step response of a system is one of the most important characterizations of system behavior — it tells you how quickly and smoothly a system responds to a sudden change.
Mathematical Definition
Continuous-Time Unit Step
The continuous-time unit step function is defined as:
$$u(t) = \begin{cases} 1 & t > 0 \\ 0 & t < 0 \end{cases}$$
The value at exactly $t = 0$ is often left undefined or set to $1/2$ (the average of the left and right limits). In most engineering applications, the choice at a single point doesn't matter since we deal with integrals.
Discrete-Time Unit Step
$$u[n] = \begin{cases} 1 & n \geq 0 \\ 0 & n < 0 \end{cases}$$
This is the sequence $\{\ldots, 0, 0, \mathbf{1}, 1, 1, 1, \ldots\}$ with the bold value at $n = 0$.
Note: In discrete time, $u[0] = 1$ is well-defined (no ambiguity like the continuous case).
Relationships to Other Signals
Step and Impulse
The derivative of the step is the impulse:
$$\frac{d}{dt}u(t) = \delta(t)$$
The step is the integral (running sum) of the impulse:
$$u(t) = \int_{-\infty}^{t} \delta(\tau) \, d\tau$$
In discrete time: $$u[n] = \sum_{k=-\infty}^{n} \delta[k] = \sum_{k=0}^{\infty} \delta[n-k]$$
$$\delta[n] = u[n] - u[n-1]$$
Step and Ramp
The integral of the step is the ramp:
$$r(t) = \int_{-\infty}^{t} u(\tau) \, d\tau = t \cdot u(t)$$
The derivative of the ramp is the step:
$$\frac{d}{dt}r(t) = u(t)$$
Signal Family Hierarchy
$$\cdots \xrightarrow{d/dt} r(t) \xrightarrow{d/dt} u(t) \xrightarrow{d/dt} \delta(t) \xrightarrow{d/dt} \delta'(t) \xrightarrow{d/dt} \cdots$$
Each differentiation moves right; each integration moves left. Higher-order signals (parabolic, cubic) continue to the left.
Properties of the Unit Step
Neither Even nor Odd
$u(t)$ is neither even nor odd. Its even-odd decomposition is:
$$u(t) = \underbrace{\frac{1}{2}}_{\text{even (constant)}} + \underbrace{\frac{1}{2}\text{sgn}(t)}_{\text{odd}}$$
where $\text{sgn}(t)$ is the signum function.
Multiplication Property (Causal Truncation)
Multiplying any signal by $u(t)$ makes it causal (zero for $t < 0$):
$$x(t) \cdot u(t) = \begin{cases} x(t) & t \geq 0 \\ 0 & t < 0 \end{cases}$$
This is why you see $u(t)$ attached to exponentials: $e^{-at}u(t)$ means "exponential decay starting at $t = 0$."
Integration with Step
$$\int_{-\infty}^{\infty} x(t)u(t) \, dt = \int_0^{\infty} x(t) \, dt$$
The step function effectively changes the lower limit of integration to 0.
Transforms of the Unit Step
Laplace Transform
$$\mathcal{L}\{u(t)\} = \int_0^{\infty} e^{-st} dt = \frac{1}{s}, \quad \text{Re}(s) > 0$$
This is one of the most fundamental Laplace transform pairs. The ROC (Region of Convergence) is the right half-plane.
Fourier Transform
$$\mathcal{F}\{u(t)\} = \pi\delta(\omega) + \frac{1}{j\omega}$$
The $\pi\delta(\omega)$ term represents the DC component (the step has a nonzero average value), and $1/(j\omega)$ represents the remaining part. This can be derived from the Laplace transform by substituting $s = j\omega$ and carefully handling the convergence issue.
Z-Transform (Discrete)
$$\mathcal{Z}\{u[n]\} = \sum_{n=0}^{\infty} z^{-n} = \frac{1}{1-z^{-1}} = \frac{z}{z-1}, \quad |z| > 1$$
The Step Response
The step response $s(t)$ of a system is the output when the input is $u(t)$:
$$s(t) = h(t) * u(t) = \int_{-\infty}^{t} h(\tau) \, d\tau$$
where $h(t)$ is the impulse response. The step response is the running integral of the impulse response.
Conversely: $h(t) = \frac{d}{dt}s(t)$ — the impulse response is the derivative of the step response.
What the Step Response Reveals
For a typical stable system, the step response shows:
- Rise time: How quickly the output reaches the final value
- Overshoot: How much the output exceeds the final value
- Settling time: How long until the output stays within a band (e.g., ±2%) of the final value
- Steady-state value: The final (DC) output level
Constructing Signals with Steps
Rectangular Pulse
$$\text{rect}\left(\frac{t}{T}\right) = u(t + T/2) - u(t - T/2)$$
A step at $t = -T/2$ turns the signal "on," and subtracting a step at $t = T/2$ turns it "off."
Piecewise-Defined Signals
Any signal defined differently on different intervals can be expressed using step functions:
$$x(t) = \begin{cases} f_1(t) & t_1 \leq t < t_2 \\ f_2(t) & t_2 \leq t < t_3 \end{cases}$$
becomes: $x(t) = f_1(t)[u(t-t_1) - u(t-t_2)] + f_2(t)[u(t-t_2) - u(t-t_3)]$
Example: Staircase Signal
$$x(t) = u(t) + u(t-1) + u(t-2) + u(t-3)$$
This creates a staircase that rises by 1 at each integer: 0 for $t<0$, 1 for $0 \leq t < 1$, 2 for $1 \leq t < 2$, 3 for $2 \leq t < 3$, and 4 for $t \geq 3$.
Worked Examples
Example 1: Express $x(t) = e^{-2t}$ for $t \geq 1$ and zero for $t < 1$.
Solution: $x(t) = e^{-2t}u(t-1) = e^{-2}e^{-2(t-1)}u(t-1)$
Note: When taking the Laplace transform, writing it as $e^{-2}e^{-2(t-1)}u(t-1)$ allows direct application of the time-shifting property.
Example 2: Find the Laplace transform of $x(t) = (3 - 2t)u(t)$.
Solution: $X(s) = \mathcal{L}\{3u(t)\} - \mathcal{L}\{2t \cdot u(t)\} = \frac{3}{s} - \frac{2}{s^2}$
Example 3: A system has impulse response $h(t) = e^{-3t}u(t)$. Find the step response.
Solution: $s(t) = \int_{-\infty}^{t} h(\tau)d\tau = \int_0^t e^{-3\tau}d\tau = \frac{1}{3}(1 - e^{-3t})u(t)$
The system starts at 0 and rises exponentially toward a final value of $1/3$.
Applications
- Circuit analysis: Switching transients — response when a switch closes at $t = 0$
- Control systems: Step response characterizes system speed, damping, and steady-state accuracy
- Digital systems: Clock edges modeled as step transitions
- Signal gating: Multiplying by $u(t)$ creates causal signals for analysis
- System testing: Step input is the standard test signal for evaluating transient behavior
- Modeling: Sudden changes in input (applying voltage, opening a valve, starting a motor) are step inputs
Key Takeaways
- The unit step $u(t)$ equals 1 for $t > 0$ and 0 for $t < 0$ — representing instantaneous switching
- Derivative gives impulse: $du/dt = \delta(t)$; integral gives ramp: $\int u = r(t)$
- Laplace transform: $\mathcal{L}\{u(t)\} = 1/s$; Z-transform: $\mathcal{Z}\{u[n]\} = z/(z-1)$
- Multiplying by $u(t)$ makes any signal causal — essential for physical (realizable) signals
- The step response $s(t) = h(t)*u(t)$ reveals rise time, overshoot, and settling time
- Any piecewise signal can be constructed from shifted, scaled step functions
Exam Focus
Revise definitions, diagrams, examples, and short-answer points for Unit Step Signal.
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, basic, signals, unit, step
Related Signals & Systems Topics