Ploting a series and finding lim to infinity

3 次查看(过去 30 天)
Hello everyone, having compute the following series:
n=1:100;
a(1)=1/3;
a(2)=2/7;
a(n+2)=a(n+1)/(n+1)*a(n);
I want to plot the following ratio: a(n+1) / a(n) with the highest possible n and its limit towards infinity.
Thank you in advance!

回答(1 个)

madhan ravi
madhan ravi 2020-5-30
编辑:madhan ravi 2020-5-30
N = 1e2; % an inf number
a = zeros(1,N);
a(1) = 1/3;
a(2) = 2/7;
for n = 1:N-2
a(n+2) = a(n+1) / (n+1) * a(n); % not sure whether if it should be ((n+1) * a(n))
end
seq = a(2:end) ./ a(1:end-1);
plot(seq)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by