A transfer function is the ratio of output to input in the s-domain for a linear time-invariant (LTI) system with zero initial conditions. It encapsulates the system’s behavior in a single algebraic expression.

For a second-order linear ODE with :

Taking the Laplace transform: , so

where

is the transfer function.

What it captures

encodes everything about how the system responds to inputs:

  • The denominator poles (zeros of ) tell you the system’s natural frequencies and damping.
  • The numerator zeros (here: none) shape the response.
  • For any input , the output is .

This is the s-domain equivalent of “the system’s response is determined by its dynamics, not by what’s driving it.”

Why it’s useful

You can compute the system’s response to arbitrary input by:

  1. Taking the Laplace transform of the input: .
  2. Multiplying by : .
  3. Inverse-transforming: .

Or in the time domain via Convolution integral: where is the Impulse response.

The key insight: once you know , you can predict the system’s response to any input. The transfer function is a complete description of the system’s input-output behavior.

Poles and stability

The poles of — values of where the denominator vanishes — determine the system’s stability:

  • All poles strictly in the left half-plane (negative real parts): asymptotically stable. The unforced output decays to zero.
  • Simple (non-repeated) poles on the imaginary axis, none in the right half-plane: marginally stable. The unforced response is a bounded sinusoid that neither grows nor decays.
  • Repeated poles on the imaginary axis (e.g. a double pole at the origin or a double pole at ): unstable. A double pole at inverse-transforms to , which grows without bound; a double pole at gives terms like , also unbounded. So repeated imaginary poles fail BIBO stability even though simple imaginary poles do not.
  • Any pole in the right half-plane (positive real part): unstable. Outputs grow exponentially.

For the second-order example above, the poles are the roots of — exactly the Characteristic equation roots. So the transfer function’s poles coincide with the natural frequencies of the homogeneous system.

This is no coincidence: the transfer function is the “frequency-domain shadow” of the homogeneous solution.

Example

For the spring-mass-damper :

The poles are at . For positive damping (), both poles have negative real parts → system is stable, transient response decays.

In the wider picture

Transfer functions are the foundation of:

  • Classical control theory — design of controllers (PID, lead-lag, etc.) is done in the transfer-function domain.
  • Signal processing — filters are described by their transfer functions, with poles and zeros placed to shape the frequency response.
  • Circuit analysis — RLC circuits’ input-output relationships are transfer functions in .

For the time-domain equivalent (the system’s response to a delta input), see Impulse response. For applying to general inputs via time-domain integration, see Convolution integral.

General form from an ODE

For an LTI system described by

Laplace-transforming both sides with zero initial conditions and applying the differentiation property gives

The numerator polynomial encodes the right-hand side of the ODE (input and its derivatives), the denominator encodes the left-hand side. The roots of the numerator are the system’s zeros; the roots of the denominator are the poles — see Pole and zero.

The poles coincide with the characteristic-equation roots of the homogeneous ODE: they are the system’s natural frequencies of free response.

Frequency response from H(s)

For a stable system, the frequency response is just restricted to the imaginary axis of the s-plane:

This is one of the most-used identities in the course. Compute algebraically from the ODE, substitute , and you have the system’s response to every sinusoidal input — magnitude and phase .

For unstable systems, doesn’t equal — the imaginary axis isn’t inside the ROC and the Fourier transform of doesn’t exist.

In microelectronics: RC filter transfer functions (Electronics I)

In Electronics I the transfer function shows up directly as the voltage ratio of the coupling/bypass RC networks in an amplifier. Treat each capacitor as an impedance , write the output as a complex Voltage divider, and the result is a first-order whose corner frequency is . The two cases are the RC lowpass filter (capacitor across the output, passes DC, rolls off the highs) and the RC highpass filter (capacitor in series, blocks DC, passes the highs — exactly what coupling capacitors do). These are the building blocks of the low-frequency end of an Amplifier frequency response.