Consider $$f(x,y,k) = kx-y$$ and its level set $f(x,y,k) = 0$
Now for example assume that I have found a point on this level set $(9,81,9)$, how can I then estimate $k$ in $(8,76,k)$? This translates to if we know $81/9=9$, how can we calculate $76/8 = ?$
I can calculate gradient $$\nabla f = [k,-1,x]$$
To remain on surface (locally), I shall go perpendicular to gradient. So $$[\Delta_x,\Delta_y,\Delta_k][k,-1,x]^T = 0$$
Now this lets us derive a wealth of algorithms which we can iterateively take small steps:
- Take step along a line in the tangent plane.
- Make correction in gradient direction to come back to surface.
But the problem I hit is when I want to go one step further into higher order models.
For example if I want to use a second order polynomial model...
All second order partial differentials are zero!
How can I modify $f$ or my algorithm to somehow add information of higher order than $1$ ?
Own work:
I've been thinking I can do $f \to f^3$. This is sure to generate a higher order power series expansion everywhere, right?