Suppose we have a function $f : \Re^N \rightarrow \Re$ which, given a vector, returns the value of its smallest element. How can I approximate $f$ with a differentiable function(s)?
Remember to vote up questions/answers you find interesting or helpful (requires 15 reputation points)
|
1
3
|
||||
|
|
1
|
If signs aren't a big deal, use the generalized mean formula $$ \left(\frac{1}{n}\sum x_i^k\right)^{1/k} $$ for $k\to -\infty$. |
|||||||||||
|
You can accept an answer to one of your own questions by clicking the check mark next to it. This awards 15 reputation points to the person who answered and 2 reputation points to you.
|
0
|
What about $f: [x_1 \dots\ x_n] \mapsto \frac{1}{\sum_i x_i^{-1}}$? |
||
|
|
|
0
|
For two dimensions, we have min(x,y) = (x+y-|x-y|)/2, so you just need a differentiable approximation to x -> |x|. Then for higher dimesions we have min(x,y,z) = min(x, min(y,z)) etc. |
||
|
|

