Create a vector to prove a sum of series?
1 view (last 30 days)
Show older comments
How can I prove the following series:
π^2/6 = 1 + 1/4 + 1/9 + 1/16 + ...
by creating a vector using colon operators and the function sum.
Thank you so much!
0 Comments
Accepted Answer
James Tursa
on 21 Sep 2016
Sounds like homework, but I will give you some hints:
v = 1:n; % <-- make a vector with the numbers 1, 2, 3, ..., n
1 ./ whatever % <-- does the divide element-by-element
whatever .^ 2 % <-- does the squaring element-by-element
So you should be able to combine the above operations appropriately to get the approximation you are after. (Although, as a nit, this will not "prove" it).
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!