Thread Closed

recursive question

 
Share Thread
Dec3-05, 02:59 PM   #1
 

recursive question


Suppoese

T(0) = 1
T(n) = T(n-1) + root(T(n-1))

how many recursion does T(n) need to grow to the number k?
can I get this? root(k) < m < c root(k)
c is constant and m is the times we need for T(n) goes to k.

Any help appreciated!!
PhysOrg.com science news on PhysOrg.com

>> City-life changes blackbird personalities, study shows
>> Origins of 'The Hoff' crab revealed (w/ Video)
>> Older males make better fathers: Mature male beetles work harder, care less about female infidelity
Dec3-05, 08:05 PM   #2
 
Recognitions:
Gold Membership Gold Member
Science Advisor Science Advisor
Retired Staff Staff Emeritus
Quote by flying2000
Suppoese
T(0) = 1
T(n) = T(n-1) + root(T(n-1))
how many recursion does T(n) need to grow to the number k?
can I get this? root(k) < m < c root(k)
c is constant and m is the times we need for T(n) goes to k.
Any help appreciated!!
Since you haven't said what what "k" is there is no way to answer this.
Thread Closed

Similar discussions for: recursive question
Thread Forum Replies
Recursive Relations. Set Theory, Logic, Probability, Statistics 0
recursive definition Calculus & Beyond Homework 3
recursive algorithm Calculus & Beyond Homework 6
recursive question General Math 1
non-recursive formula General Math 3