How to get the sum of the series: 1 + 1/2 + 1/3 + 1/4 + ... + 1/n?

140 ビュー (過去 30 日間)
Rajdeep Mattu
Rajdeep Mattu 2020 年 7 月 7 日
回答済み: Image Analyst 2020 年 7 月 7 日
I understand the answer is going to be 2 because I've worked with series before, but this is the first time doing it on MATLAB.There is going to be a while loop since this is an infinite series that converges to 2.
Here's what I've got but I'm getting nowhere.
ksum = 1;
n = 0;
while ksum <= 2
n = n + 1;
ksum = ksum + 1/n;
end
Help, please!
  4 件のコメント
KSSV
KSSV 2020 年 7 月 7 日
Sum is not 2..how it is 2?
n = 10^5 ;
s = 0 ;
for i = 1:n
s = s+1/i ;
end
s
Rajdeep Mattu
Rajdeep Mattu 2020 年 7 月 7 日
Oh shoot, yeah, you guys are right about that. I thought it converges to 2, but I must've confused it with a different series.
Well to learn MATLAB better, say I wanted to know which kth term would get the sum past some random number, lets say 3, how would someone write a while loop for that?

サインインしてコメントする。

回答 (2 件)

KSSV
KSSV 2020 年 7 月 7 日
編集済み: KSSV 2020 年 7 月 7 日
n = 10^5 ;
s = 0 ;
i = 0 ;
while s <= 3 % fix the sum here
i = i+1 ;
s = s+1/i ;
end
i

Image Analyst
Image Analyst 2020 年 7 月 7 日
Try this:
n = 1000;
denominators = 1 : n;
theTerms = 1 ./ denominators;
seriesSum = sum(theTerms)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by