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

조회 수: 1 (최근 30일)
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 CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by