I am trying to describe the following situation:
$ X = \{x_i \dots x_n\} $ This is the set of all job applicants.
$Y$ is a subset of $X$ where $M = 1$. Each $x_i$ has an associated $m_i$ that can be $\{0,1\}$ representing whether or not an applicant is "hireable".
Each applicant also has an "applicant strength rating" ($\alpha_i$). $Z$ would be the set I would get if I took $Y$, ordered it in decreasing $\alpha_i$ order, and chose the top $\beta$ individuals, with $\beta > 0$.
I would like to succinctly describe set $Z$. So far, I have:
$$ \forall ~ X \in \mathbb{N}^n, ~ X=\{x_1 \dots x_n\} \\ Y \subset {X | M = 1} \\ Z ={\rm argmax}_{Y, ~ |Y|=\beta}~\sum_{y \in Y} y $$