The rule is old value minus a chosen rational step size times the gradient. With eta fixed at one half, every row remains exact rational arithmetic.
highlighted = computed this step
The update rule
Gradient descent uses w_new = w_old - eta*gradient. In this book, eta is the exact rational 1/2.
wnew=wold−η⋅∇w,η=1/2
A single parameter row
For w11, the old value is 1 and the gradient is -2. The exact move eta*gradient is -1.
1−1/2⋅−2=2
Summary
The rule is a signed exact subtraction. Negative gradients increase a parameter here because subtracting a negative amount adds.
1−1/2⋅(−2)=2