The Transfer Function of an LTI system is the Z Transform of the Impulse Response
where and are polynomials with coefficients determined by the system’s DT LTI System. It completely characterizes the system’s input-output relationship in the z-domain. The poles of determine the system’s fundamental modes.
Intuition
For a system , where represents the operator the describes the entire discrete system between and , you can also express said relationship as . For example, for an Accumulator, you have , so , and the equation in terms of is . We care about the Transfer Function because it describes the entire system; how the system transfers the input signal to the output signal. The impulse response does too, but it and the transfer function are isomorphic via the Z Transform, so this naturally follows.
- When you use the impulse response function, you use Discrete Convolution, whereas with the transfer function, you use multiplication.
- The order of the polynomial of the transfer function tells you the order of the system
- If the polynomial is in the numerator, you have a Feed-Forward system. If the polynomial is in the denominator, then you have a Feedback system.
- Sometimes you can compute the Operator Reciprocal of a denominator polynomial as equivalent to a numerator polynomial infinite series, meaning that some feedback systems are equivalent to infinitely large feedforward systems. This is reminiscent of Loop Unrolling / Tail Call Optimization on a Recursive function.