Create a vector to prove a sum of series?

조회 수: 1 (최근 30일)
Bridgit Nata
Bridgit Nata 2016년 9월 21일
답변: James Tursa 2016년 9월 21일
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!

채택된 답변

James Tursa
James Tursa 2016년 9월 21일
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개)

카테고리

Help CenterFile Exchange에서 Signal Processing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by