I have a summation which should go over a set, excluding one of the elements which returns the maximum value. What I first wrote was:
$$ \sum_{\substack {j \in M \\ j \neq \arg\max_{j} \{f_j\}}} f_j $$
but since $\arg \max$ may return more than one element, and so it can be a set, I changed my notation to:
$$ \sum_{\substack {j \in M \\ j \notin \arg\max_{j} \{f_j\}}} f_j $$
Still, this is not correct since only one $j$ should be excluded from the summation, not all of them (if there exist more than one element which maximizes $f$).
My question is, how to write it correctly, to mean that only one of the elements which maximizes $f$ should be excluded from the sum function. In my case, it does not matter which one.