Step through the forward pass of a 3-layer neural network — watch input values flow through weighted connections and activation functions layer by layer.
Layered Linear Transformations + Non-linearities
A neural network alternates linear transformations (z = Wx + b) with non-linear activation functions (a = ReLU(z)) to learn complex mappings.