필터 지우기
필터 지우기

I am trying to get the answer for the sum to infinity for a geometric series. My output should be 3/2 and a loop should be used. I've done that but it won't work. Please help

조회 수: 3 (최근 30일)
Sequence = [1 1/3 1/9 1/27];
FirstTerm = Sequence(1);
CommonRatio = Sequence(2)/Sequence(1);
n = 0;
if (Sequence(2)/Sequence(1)) == (Sequence(end)/Sequence(end-1))
CommonRatio;
for i = 0:1:10000
n = n+1;
Sum2Infinity = FirstTerm * CommonRatio.^n;
end
end
disp(Sum2Infinity)

채택된 답변

Torsten
Torsten 2023년 3월 28일
편집: Torsten 2023년 3월 28일
Sum2Infinity = 0.0;
for i = 0:1:10000
Sum2Infinity = Sum2Infinity + FirstTerm * CommonRatio^i;
end

추가 답변 (0개)

카테고리

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

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by