For fun, related to this question about minimizing implicit functions, how can I find the minimum of an explicit one expressed as a vector?
For instance, an ellipse:
orbit[t_] :=
{
a Cos[2 \[Pi] t/10],
b Sin[2 \[Pi] t/10]
}
I am finding hard to adapt those solutions for vectors, apart from the obvious solution of minimizing two functions, but I'd like a more elegant vector-like solution if possible, something like
Maximize[{magicHere, orbit[t]}, t]
t. – senseiwa Jan 08 '19 at 15:59NMaximizeshould do the trick? – senseiwa Jan 10 '19 at 14:58