A model has two parameters and the loss
L(a,b)=a2+4b2+2ab−6a−16b
Gradient descent starts at (a0,b0)=(1,1) with learning rate α=0.1, updating both parameters simultaneously from the same gradient:
a←a−α∂a∂L,b←b−α∂b∂L
What is (a2,b2) after two steps?