How Do You Solve the Recurrence Relation a_n = a_{n-1} + n?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
6 replies · 7K views
Darth Frodo
Messages
211
Reaction score
1

Homework Statement


[itex]a_{n} = a_{n-1} + n[/itex]
[itex]a_{0} = 0[/itex]

The Attempt at a Solution


[itex]h_{n} = h_{n-1}[/itex]
[itex]t^{2} - t = 0[/itex]
[itex]t=0 t=1[/itex]
[itex]h_{n} = B[/itex]

[itex]p_{n} = bn + c[/itex]
[itex]p_{n} = p_{n-1} + n[/itex]
[itex]bn + c = b(n-1) + n[/itex]
[itex]bn + c = (b+1)n -b[/itex]

I'm sure I've gone wrong somewhere, I just can't figure out where!
 
Physics news on Phys.org
Darth Frodo said:
[itex]bn + c = b(n-1) + n[/itex]
I think there is a "+c" missing on the right side.

I have no idea how the first 2 and the following 4 lines are related to the other groups.
 
Ok sorry I should have explained.

Basically, how I solve a nonhomogenous RR is by ignoring the nonhomogenous term, and solving the homogenous term, 1st group.

Then I solve the homogenous term by picking a particular function of the same order of the nonhomogenous part and call this Pn. This is the second group.

Then, the General Solution to the RR is [itex]h_{n} + p_{n}[/itex]


Yes you're right. So with the correction I get the following.

[itex]p_{n} = bn + c[/itex]
[itex]p_{n} = p_{n-1} + n[/itex]
[itex]bn + c = b(n-1) + c + n[/itex]
[itex]bn + c = (b+1)n -b + c[/itex]

I don't know how to solve for b and c I'm afraid.
 
Hi Darth Frodo, aren't you just trying to solve a simple arithmetic serie ?
u(n)=n
a(n)=1+2+...+n=n(n+1)/2 ?
 
The solution for a_n cannot be expressed as sum of a constant (h_n) and bn+c with constant b and c.

oli4 said:
Hi Darth Frodo, aren't you just trying to solve a simple arithmetic serie ?
Right.
 
If the problem is to solve [itex]a_n= a_{n-1}+ n[/itex], [itex]a_0= 0[/itex], then most of what you are doing is unnecessary. Instead, first calculate a few values directly:
[itex]a_1= a_0+ 1= 0+ 1= 1[/itex]
[itex]a_2= a_1+ 2= 1+ 2= 3[/itex]
[itex]a_3= a_2+ 3= 3+ 3= 6[/itex]
[itex]a_4= a_3+ 4= 6+ 4= 10[/itex]
[itex]a_5= a_4+ 5= 15[/itex]

In other words, [itex]a_n= 1+ 2+ 3+ 4+ \cdot\cdot\cdot+ n[/tex], an arithmetic series as both oli4 and mfb said, for which there is a well known formula[/itex]