Double sum with odd number
Show older comments
I'm not sure how to calculate this sum. Anyone has an idea, please?
n = [1:2:1000];
gamma = 1;
ss = sum(sum((2./(n.*pi)).^6.*(3.*(1 - tanh(n.*pi./(2*gamma))./(n.*pi./(2*gamma)))) - (tanh(n.*pi./(2*gamma))).^2));
Answers (1)
n = [1:2:1000];
gamma = 1;
ss = sum(sum((2./(n.*pi)).^6.*(3.*(1 - tanh(n.*pi./(2*gamma))./(n.*pi./(2*gamma))) - tanh(n.*pi./(2*gamma)).^2)))
3 Comments
VBBV
on 27 Jun 2023
The image shows odd values for n in outer summation, but does not tell anything about nature of inner summation. Can you tell more about it ? Does it mean both inner & outer summation are both odd values for n, or ?
Loïc M.
on 27 Jun 2023
VBBV
on 27 Jun 2023
Ok, it looks like its double sum over odd integer values for that term as you assumed it i.e.
n = [1:2:1000];
Categories
Find more on Mathematics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
