A linear system, borrowed from control theory
The state space model comes from a part of engineering that predates deep learning by decades. It describes a system with an internal state evolving continuously in response to an input.
The form is two equations. The rate of change of the state equals a matrix A applied to the current state, plus a matrix B applied to the current input. The output equals a matrix C applied to the state.
A governs how the state evolves on its own, B how input enters it, C how the output is read from it. The state is a compressed summary of everything the system has seen, and its size is fixed by design.
To use this on token sequences it has to be discretised, converting the continuous dynamics into a step-by-step update with a step size usually written as delta. After discretisation the equations become a recurrence: the new state is a matrix applied to the old state plus a matrix applied to the new input, and the output is read from the state.
Which is exactly the shape the previous lesson arrived at from the other direction.

