Say I have $n$ pairs $(x_1,y_1),(x_2,y_2),\ldots,(x_n,y_n)$, how do I specify for instance all the pairs where $y$ value is zero succinctly? I'm using it for the underscript of a sum to subset it.
2026-03-12 23:47:02.1773359222
How to specify a pair of elements with a particular property as underscript?
17 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
I would just define an indexing set and iterate over that instead. Let: $$ A = \{k \in \{1, \ldots, n\} \mid y_k = 0\} $$ Then we want: $$ \sum_{k \in A} f(x_k, y_k) $$