In the sequence of positive number x1, x2, x3,. . . what is the value of x1??
I didn't know where to begin with this one! Any advice would be appreciated.
StaceyKoprince Wrote:We're asked to find the first term in the sequence and given a couple of recursive equations. To start, know that you can't solve recursive equations with just one recursive equation and nothing else (no starting point, no other equation, etc.). One piece of info isn't enough.
(1) can't do anything with this by itself. Eliminate A and D.
(2) Again, with just this equation, we can't calculate anything. Eliminate B.
(1) + (2) Now maybe we can do something. We can combine our equations here. If we use j = 5 for the first equation, we get x-sub-5 = (x-sub-4)/2. The second equation tells us that x-sub-5 = (x-sub-4)/(x-sub-4 + 1). Combine parts to get 2 = x-sub-4 + 1 or 1 = x-sub-4.
Now that I have a value for x-sub-4, I have a starting point! If you completely understand how recursive sequences work (ie, a starting point is sufficient), you can stop here. The actual math is below.
From eqn 1: x-sub-4 = (x-sub-3)/2 = 1. Therefore, x-sub-3 = 2
repeat: x-sub-3 = (x-sub-2)/2 = 2. Therefore, x-sub-2 = 4
repeat: x-sub-2 = (x-sub-1)/2 = 4. Therefore, x-sub-1 = 8
sudaif Wrote:maybe the instructors missed my query. would appreciate some feedback. thank you!
Since these are recursive sequences, would it be okay if in the statement 1 + statement 2 scenario, I took statement 1 as x-sub-2=x-sub-1/2 and statement 2 as x-sub-2=x-sub-1/((x-sub-1)+1).