enter preformatted text here
find the recurrence relation.
a(n)=a(n−1)+n with a(0)=0
Do I have to make a replace? Can someone help with initial steps?
Thanks.
Do like this....
enter preformatted text here
find the recurrence relation.
a(n)=a(n−1)+n with a(0)=0
Do I have to make a replace? Can someone help with initial steps?
Thanks.
Do like this....
$a_n = a_{n-1} + n=$
$a_{n-2}+ (n-1) + n=$
$a_{n-3} + (n-2) + (n-1) + n=$
.....
$ a_2 + 3 + 4...... + (n-2) + (n-1) + n=$
$a_1 + 2 + 3 + 4...... + (n-2) + (n-1) + n=$
$a_0 + 1 + 2+ 3 + 4...... + (n-2) + (n-1) + n=$
$0+1 + 2+ 3 + 4...... + (n-2) + (n-1) + n=$
$\frac {n(n+1)}2$.