Problem 57512. Easy Sequences 89: Double Summation of a Trigonometric Product
Given and angle A in radians and a positive integer x, evaluate the following product summation:
which 'directly' translates to Matlab as:
>> PS = @(A,x) sum(arrayfun(@(n) sum(arrayfun(@(m) prod(arrayfun(@(k) 2*sin(k*pi/m+A),0:m-1)),1:n)),1:x));
For example
and
:
>> x = 3; A = 1;
>> PS(A,x)
ans =
8.9683
Please present your answer rounded-off to nearest 4 decimal places.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers1
Suggested Problems
-
Find relatively common elements in matrix rows
2090 Solvers
-
2390 Solvers
-
Find the area of the four walls
282 Solvers
-
There are 10 types of people in the world
1156 Solvers
-
Sums of cubes and squares of sums
267 Solvers
More from this Author116
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!