How do you make a function composition that has a built in function like Maximize inside? For a simple example say with Minimize, let
f[x_]:=x^2
min[x_]:=Minimize[f[x]]
Something of this idea (obviously not syntax correct, I cant find a way to make it work), how would I go about doing this? Such that I can reference to the Minimized function later in the file and change it by changing the f(x) function.