Problem 415. Sum the Infinite Series

Given that 0 < x and x < 2*pi where x is in radians, write a function
 [c,s] = infinite_series(x);

that returns with the sums of the two infinite series

 c = cos(2*x)/1/2 + cos(3*x)/2/3 + cos(4*x)/3/4 + ... + cos((n+1)*x)/n/(n+1) + ...
 s = sin(2*x)/1/2 + sin(3*x)/2/3 + sin(4*x)/3/4 + ... + sin((n+1)*x)/n/(n+1) + ...

Solution Stats

12.76% Correct | 87.24% Incorrect
Last Solution submitted on Jan 08, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers125

Suggested Problems

More from this Author3

Problem Tags

Community Treasure Hunt

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

Start Hunting!