Double sum with odd number

8 views (last 30 days)
Loïc M.
Loïc M. on 27 Jun 2023
Commented: VBBV on 27 Jun 2023
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));
  3 Comments
Loïc M.
Loïc M. on 27 Jun 2023
I don't know. Here is the complete equation
Torsten
Torsten on 27 Jun 2023
Edited: Torsten on 27 Jun 2023
From the equation, I don't know either. But you should try to find it out.

Sign in to comment.

Answers (1)

VBBV
VBBV on 27 Jun 2023
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)))
ss = 0.0272
  3 Comments
Loïc M.
Loïc M. on 27 Jun 2023
I don't know. Here is the complete equation
VBBV
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];

Sign in to comment.

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!