Concept Flow - Minimizing multivariate functions (minimize)
Define function f(x, y)
Choose initial guess (x0, y0)
Call minimize(f, x0)
Algorithm iterates to find minimum
Check convergence
Return minimum
End
We start by defining the function to minimize, pick a starting point, then use minimize to find the lowest value by iterating until it converges.