Follow data forward through the network, compute the loss, then watch gradients flow backward via the chain rule. Step through each phase neuron by neuron.
These are the four input features the network receives. Each value is fed into the input layer and passed forward without any transformation.
Backpropagation is just the chain rule applied recursively. Each layer receives a gradient from the layer above, multiplies it by the local derivative, and passes it further back. No magic, just calculus and matrix multiplication.