1

I'm currently trying to simplify a calculation that takes the minimum of all elements in a set. However the elements should not be taken as they are but be modifiable:

$$ S = \{{A}, {B}, {C}\}\\ min(({f}_{A} \cdot {m}_{A}), ({f}_{B} \cdot {m}_{B}), ({f}_{C} \cdot {m}_{C})) $$

Is there any way to write this shorter for all elements, if it was a sum not a minimum it would be some like this:

$$ \sum\limits_{x \in S}^x {f}_{x} \cdot {m}_{x} $$

Thanks for your help!

1 Answers1

3

A common way to write this would be $$\min_{x\in S}\{f_x\cdot m_x\}$$ Or sometimes with $()$ instead of $\{\}$.