Is it possible to use sigma notation for non-integer steps, for example I want to sum $\ln(x)^2$ from $2$ to $20$ with steps of $0.5$, is there a way I could write this in sigma notation or some other form of notation.
2026-04-01 23:51:56.1775087516
On
On
Sigma notation for sum of $\ln(x)^2$ from $2$ to $20$ with non-integer steps
1.8k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
4
There are 4 best solutions below
0
On
Just use $\frac{x}{2}$ instead of $x$ in this example to get integers. This trick can always be used when we have to sum up finite many rationals or rationals with a limited denominator.
0
On
You could change $\ln(x)^2$ into $\ln\left(\frac{x}{2}\right)^2$ to achieve the steps of $0.5$ in this case. You want $\frac{x}{2}$ to go from $2$ to $20$ as well (with steps of $0.5$), so $x$ must go from $4$ to $40$. Therefore, the sum becomes$\sum_\limits{x = 4}^{40}\ln\left(\frac{x}{2}\right)^2$.
In this particular case that you have the constant difference, I would go with the other answers; it's the simplest and most non-confusing manner to write what you want to convey. However, if you have any arbitrary set $S$, and wanted to sum based on its elements, you can write something like $$\sum_{s\in S}f(s).$$ In particular you might have $S=\{2,2.5,3,\dots,20\}$.