A matrix is an action. When you multiply a vector by a matrix, you are transforming that vector (rotating, stretching, or squashing it).
- y = Wx + b: The most important equation in AI. It takes an input vector (x), transforms it via a weight matrix (W), and shifts it by a bias (b). A neural network is just this equation repeated with non-linear functions in between.