Commonly we use $\sum$ symbol to compactly describe the sum of a collection or a series, e.g. $\sum_{i=1}^{5} = 1 + 2 + 3 + 4 + 5$. Is it possible to describe the summation with a number removed from the series, like $1+2+4+5$, is it possible to use $\sum$ to describe this summation?
2026-04-15 10:20:46.1776248446
Summation with exclusion
3.3k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
Here are two ways: $$\sum_{\substack{i=1\\i \ne 3}}^5 i$$ $$\sum_{i \in \{1,\dots,5\}\setminus \{3\}} i$$
If the ground set $\{1,\dots,5\}$ is clear from the context, you can even get by with just $$\sum_{i \ne 3} i$$