Similar to the way C(n, k) represents the number of ways to choose k items from n items, is there a compact notation to represent those specific choices? Like this:
Choose({a, b, c, d}, 3) = {{b, c, d}, {a, c, d}, {a, b, d}, {a, b, c}}
Similar to the way C(n, k) represents the number of ways to choose k items from n items, is there a compact notation to represent those specific choices? Like this:
Choose({a, b, c, d}, 3) = {{b, c, d}, {a, c, d}, {a, b, d}, {a, b, c}}
You can use the elementary symmetric polynomial.
For your example we have
$$e_3(x_a,x_b,x_c,x_d)=x_ax_bx_c+x_ax_bx_d+x_ax_cx_d+x_bx_cx_d$$
where, for example, $x_ax_bx_c$ represents the subset $\{a,b,c\}$.
In general if set elements are $\{1,\ldots,n\}$ then $e_k(x_1,\ldots,x_n)$ is easily seen to be given by the $z^k$ coefficient of $\prod_{k=1}^{n}(1+zx_k)$ i.e.
$$\prod_{k=1}^{n}(1+zx_k)=\sum_{k=0}^{n}e_kz^k$$
so, we may use the "evaluate $z^k$ coefficient operator": $[z^k]$ to give your shorthand for $e_k$:
In your case
$$e_3(x_a,x_b,x_c,x_d)=[z^3](1+zx_a)(1+zx_b)(1+zx_c)(1+zx_d)$$
So I would suggest you could use either side of $(1)$.
It's, comparatively, not that compact for small sets but you can see that $(1)$ is the same for arbitrary set size: $n$.