Regularization
Details
- Regularization affects only results for divergent sums and products.
- The following settings can be used to specify regularization procedures for sums of the form
: -
"Abel" 
"Borel" 
"Cesaro" 
"Dirichlet" 
- For alternating sums
, the setting "Euler" gives
. - The following setting can be used to specify a regularization procedure for products
: -
"Dirichlet" 
- Regularization->None specifies that no regularization should be used.
- For multiple sums and products, the same regularization is by default used for each variable.
- Regularization->{reg1,reg2,…} specifies regularization regi for the i
variable.
Examples
open all close allBasic Examples (3)
The following sum does not converge:
Sum[(-1) ^ n, {n, 0, Infinity}]Using Abel regularization will produce a finite value:
Sum[(-1) ^ n, {n, 0, Infinity}, Regularization -> "Abel"]In this case the Abel-regularized sum does not exist:
Sum[(-2) ^ n, {n, 0, Infinity}, Regularization -> "Abel"]However, the stronger Borel regularization produces a finite value:
Sum[(-2) ^ n, {n, 0, Infinity}, Regularization -> "Borel"]A regularized value of a divergent product:
Product[k ^ 2, {k, 1, Infinity}, Regularization -> "Dirichlet"]Scope (5)
Apply Abel regularization to sum a divergent polynomial-exponential series:
Sum[(-1)^n (n + 1)^3, {n, 0, ∞}, Regularization -> "Abel"]Use Borel regularization to sum a divergent hypergeometric series:
Sum[(Gamma[3 n + (1/2)] (-1)^n ((2 z^3 / 2/3))^-n/2^n 3^3 n Gamma[n + (1/2)] Gamma[n + 1]), {n, 0, ∞}, Regularization -> "Borel"]Apply Cesaro regularization to sum a divergent trigonometric series:
Sum[Sin[n], {n, 0, ∞}, Regularization -> "Cesaro"]Sum a divergent logarithmic series using Dirichlet regularization:
Sum[Log[n], {n, 1, ∞}, Regularization -> "Dirichlet"]Apply Euler regularization to sum a divergent geometric series:
Sum[(-3)^n, {n, 0, ∞}, Regularization -> "Euler"]History
Text
Wolfram Research (2008), Regularization, Wolfram Language function, https://reference.wolfram.com/language/ref/Regularization.html.
CMS
Wolfram Language. 2008. "Regularization." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/Regularization.html.
APA
Wolfram Language. (2008). Regularization. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/Regularization.html
BibTeX
@misc{reference.wolfram_2026_regularization, author="Wolfram Research", title="{Regularization}", year="2008", howpublished="\url{https://reference.wolfram.com/language/ref/Regularization.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_regularization, organization={Wolfram Research}, title={Regularization}, year={2008}, url={https://reference.wolfram.com/language/ref/Regularization.html}, note=[Accessed: 13-June-2026]}