Skip to main content

Questions tagged [summation]

Questions using the Sum command, especially for series and other algebraic objects, and related functions such as SumConvergence

7 votes
2 answers
227 views

f[n_Integer] := Nest[-D[#, x]/2 &, Cos[x], n] Sum[f[n], {n, 0, Infinity}](*does not work*) The sum of that series can be manually found as $$s(x) = \frac{4}{5}...
metroidman's user avatar
  • 1,349
4 votes
2 answers
352 views

Given the following sum Sum[Sin[x^2*(2*t - 1)*y]^2/Sin[2*x^2*y*t]^2, {t, 1, L - 1}] where $x\le L-2$ and $x$, $y$, and $t$ are all positive (non-zero) integers. ...
Rob's user avatar
  • 954
2 votes
2 answers
488 views

The following summation, when calculated by hand converges to 0: $$ \sum_{n = - \infty}^{\infty} a^n = 0, n \in \mathbb{Z} $$ But, Mathematica complains that the sum does not converge: ...
Sâu's user avatar
  • 605
2 votes
1 answer
220 views

I recently saw q3964942, in which the asker asserted the titled identity $$\sum_{m=0}^n\binom mi{n-m\choose k-i}={n+1\choose k+1}$$ to which angryavian had commented on 2020-12-28 Shouldn't your ...
DroneBetter's user avatar
3 votes
2 answers
136 views

I recently wrote the page a little-known permutation generator, in which I investigated sums of products of reciprocals of coordinates over simplex-shaped regions. (These turned out to be the $r$-...
DroneBetter's user avatar
4 votes
2 answers
274 views

I recently learned an interesting limit and was trying to understand the asymptotics. Unfortunately I'm getting nowhere. Take ...
Mike Lawler's user avatar
1 vote
0 answers
159 views

As noted in this math.se question from 2018 (which was using WolframAlpha and Mathematica 7.0, though it persists in 14.0.0), Mathematica's evaluation of the following sum depends on where the ...
DroneBetter's user avatar
1 vote
2 answers
51 views

I would like to include terms that factorize a sum within the sum. For instance, from k Sum[Subscript[x, i], {i, 1, L}] getting ...
T.A.'s user avatar
  • 11
1 vote
2 answers
164 views

I'm trying to write a code that can approximate the following formula, $$\sum_{n=1}^\infty \frac1n=\prod_{i=1}^\infty\frac{1}{1-\frac{1}{p_i}}\tag{A}$$ In this M.SE question I was convinced that $(\...
user475550's user avatar
1 vote
2 answers
176 views

From real analysis, I'm trying to learn more about this famous equation in this post of Mathematics.SE: $$\sum_{n=1}^\infty \frac1n=\prod_{i=1}^\infty\frac{1}{1-\frac{1}{p_i}}\tag{1}$$ I won't ask ...
user475550's user avatar
2 votes
2 answers
277 views

When entering Sum[k^3*Exp[k], {k, 0, ∞},Regularization->"Dirichlet"] Mathematica returns the expression unevaluated. But other regularization methods ...
Anixx's user avatar
  • 3,992
1 vote
0 answers
105 views

I want to plot the following function: $F(x, \omega) = \sum_{m = - \infty}^{\infty}\sum_{n = 1}^{\infty} \theta(\omega m - \xi_{mn}) \cos(x \xi_{mn})$ Where $\xi_{mn}$ is defined as the BesselJZero[m,...
Santos's user avatar
  • 23
7 votes
2 answers
279 views

Give a $N \times N$ matrix $M$ in MMA, I am interested in finding a very particular sum using its matrix elements: $ \sum_{i \neq j \neq k \neq l}^{N} M_{ij}M_{jk}M_{kl}M_{li}$, which is of some use ...
Erosannin's user avatar
  • 1,226
1 vote
1 answer
123 views

Consider a case where I have an array a[i,j]. Each of these a[i,j]consists of a $2 \times 2$ matrix. I would like to compute the ...
Erosannin's user avatar
  • 1,226
0 votes
1 answer
123 views

I want to evaluate a larger number of terms with infinite summations. For example, there appear summations like Sum[HarmonicNumber[j]^2/j^4, {j, 1, Infinity}] ...
jkb1603's user avatar
  • 259

15 30 50 per page
1
2 3 4 5
69