A transfer function G(s) = Y(s)/U(s) is the ratio of the Laplace-transformed output to the Laplace-transformed input (assuming zero initial conditions) and completely characterizes a linear time-invariant (LTI) system's input-output behavior. Poles are values of s where G(s) → ∞ and determine the system's natural modes; zeros are values where G(s) = 0 and shape how inputs are weighted. Pole locations in the complex s-plane directly determine stability: poles in the left half-plane yield stable decaying responses, while right-half-plane poles produce unstable growing responses. Transfer functions can be derived from differential equations, electrical circuit models, or mechanical system equations using Newton's or Kirchhoff's laws.
Derive transfer functions from simple RC circuits and spring-mass-damper systems, then identify poles and zeros graphically in the s-plane. Use Python's scipy.signal or MATLAB to compute and plot step responses and verify against analytical predictions.
You know from differential equations that a linear time-invariant system can be described by equations like ÿ + 3ẏ + 2y = u(t), where y is the output and u is the input. Solving such equations in the time domain requires finding homogeneous and particular solutions and tracking initial conditions. The transfer function is the Laplace-domain equivalent that sidesteps this complexity: by transforming to the s-domain and assuming zero initial conditions, the differential equation becomes an algebraic relationship Y(s) = G(s)·U(s), where G(s) = Y(s)/U(s) is the transfer function.
G(s) is a rational function of s — a ratio of polynomials. The denominator polynomial, when set to zero, gives the characteristic equation of the system. Its roots are the poles: values of s where G(s) → ∞. The numerator polynomial's roots are the zeros: values of s where G(s) = 0. Both the poles and zeros are generally complex numbers, and they completely characterize the system's input-output behavior. A useful way to think about it: poles tell you what the system wants to do on its own (its natural modes), and zeros tell you which input frequencies the system will suppress.
Pole locations in the complex s-plane are the key to stability analysis. If all poles lie in the left half-plane (negative real part), every natural mode decays exponentially in time — the system is stable. A pole in the right half-plane (positive real part) corresponds to an exponentially growing mode, making the system unstable. A pair of purely imaginary poles (zero real part) means sustained oscillation — marginal stability. A critical nuance: a pole at exactly s = 0 (the origin) is marginally stable, not unstable in the strict sense. This distinction matters when designing integrating controllers.
Consider a simple first-order system G(s) = 1/(s + a). The single pole is at s = -a. If a > 0, the pole is in the left half-plane, and the step response is y(t) = (1/a)(1 - e^{-at}) — stable, decaying toward a steady state. If a < 0, the pole is in the right half-plane and the response grows without bound. This direct connection between pole location and time-domain behavior is what makes the s-plane so powerful: you can read off qualitative behavior (stable? oscillatory? how fast?) directly from the pole-zero plot without solving differential equations.
One important limitation to keep in mind: transfer functions are only valid under zero initial conditions and for linear time-invariant systems. They capture the forced response to inputs — not what happens if you start with nonzero stored energy in the system. For initial condition problems, you need the full Laplace solution or a state-space representation. This is not a flaw in the framework; it is a deliberate scoping choice that makes analysis tractable for the large class of systems that can be modeled as LTI.