You are not logged in.
Pages: 1
My teacher gave me this problem and I can't figure it out.
Jn= J(n-1) + n, j=2
I've gotten:
j1 = 1
j2 = 2 + 2
j3 = 2+3+2
j4 = 2+4+3+2
J5 = 2+5+4+3+2
Did I do this right so far and is if so, where do I go from here?
What does j=2 mean?
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
Hi steewan;
Every recurrence must always have an initial condition. It appears that yours is J(0)=1. In which case J(2) is incorrect.
Also you are not computing that recurrence correctly.
where do I go from here?
Depends on what you are being asked to do. Were you asked to solve the recurrence? To plot it? To determine it's limit?
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
My teacher gave me this problem and I can't figure it out.
Jn= J(n-1) + n, j1=2
I've gotten:
j1 = 2
j2 = 2 + 2
j3 = 2+3+2
j4 = 2+4+3+2
J5 = 2+5+4+3+2Did I do this right so far and is if so, where do I go from here?
Last edited by scientia (2012-11-06 11:12:49)
Offline
Pages: 1