Suppose I have a function $f(x)$ for which I want to find minimums.
I understand that differentiation with respect to $x$ will give direction $+/-$ in $x$ axis to follow in order to minimize.
Choosing a fixed step is understandable, but why do we update by $x'=x - f'(x)\cdot\text{step}$?
$f'(x)$ is the slope and is relevant to $y$ axis.
A more understandable procedure to me is this update $x'=x -\text{sign}(f'(x))\cdot\text{step}$.
Thnaks.
joseph.