Help in numerical exercise

Hi everyone,
I have a vector y2 starting from 1 to 100 with properties of y2(1)=1 and y2(i+1)-y2(i)=i+1
Knowing that i=1,…,99 what it will be y2(100)?
Thank you very much!!!
Best Regards.

 采纳的回答

Roger Stafford
Roger Stafford 2014-5-2
编辑:Image Analyst 2014-5-2

1 个投票

If you look at this site in the section called Anecdotes" you will see a short cut to obtaining your answer. It doesn't require matlab at all.

4 个评论

I don't get 5050, because in Tamer's situation, the difference between two terms is not 1 but (i+1), so I get a different number. The difference between adjacent numbers increases as the number of terms grows, unless Tamer didn't transcribe it correctly. y2(2) and y2(1) are separated by 1+1 = 2 while y2(100) and y2(99) are separated by 99+1 = 100.
I do get 5050, rearranging the equation to have y2(i+1) on the LHS, then looping.
Gauss’ ‘shortcut’ solution is brilliant and insightful. But then, so was Gauss.
Hi Star Strider, I am a novice in Matlab, can you please show me what you typed to get the right answer (5050). thanks a lot!!
You're right. I messed up.

请先登录,再进行评论。

更多回答(1 个)

Why not make a simple for loop and find out?
y2(1)=1;
for i = 1 : 99
y2(i+1) =
and so on.... It's the best way to learn!

类别

帮助中心File Exchange 中查找有关 Startup and Shutdown 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by