フィルターのクリア

after how many terms does an equation have the same five decimals as pi/4?

1 回表示 (過去 30 日間)
Nora Al Allaf
Nora Al Allaf 2020 年 9 月 25 日
編集済み: madhan ravi 2020 年 9 月 25 日
Hi,
so it's given that s = 1 − 1/3 + 1/5 − 1/7 + 1/9 − 1/11 + · · · + (−1)^n / (2n + 1)
what I need to do is, with a while-loop, see after how many terms (n) the equation above gives the same 5 first decimals as pi/4, which is 0.78539...
p = 0;
i = 0;
while 1 == 1 % Infinite loop
p = p + ((-1)^i)/(2*i + 1);
i = i + 1;
if
break
end
end
I just don't really know what to write in the if statement, tried so much but nothing is really working, would appreciate some help -_-

採用された回答

madhan ravi
madhan ravi 2020 年 9 月 25 日
編集済み: madhan ravi 2020 年 9 月 25 日
if abs(p - pi/4) < 1e-5
Look through the tag floating-point to know why tolerance is used to compare decimals.

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by