t1 = 1; t2= 1; tn-1 = tn-1 - tn? (Recursion formula)
its good to put subscripts in {curlys} to set it apart
ohh.. okay
t{1} = 1 t{2} = 1 t{n-1} = .....
otherwise it just looks like normal mathing
I tried: t{n - 1} = t{n-1} - t{n} t{2 - 1} = t3-1 - t2 t{1} = t{2} - t{2} t{1} = 1 - 1 t{1} = 0
ohhh, i see.
and the answers are: 1, 1, 0, -1, -1, 0
t{n} = t{n-1} - t{n-1} is always 0, since you are subtracting the same amount from itself. it looks like a wierd recursion
ohh, i see..
is there a larger problem that this goes to?
ohhhhh!!! Aww man, I wrote the question wrong all this time. It's: t{1} = 1; t{2} = 1; t{n+2} = t{n+1}-t{n}?
that does look better ;)
ohh, sorry D:
t{1} = 1 t{2} = 1 t{n+2} = t{n+1}-t{n} t{3} = t{2} - t{1} = 0 t{4} = t{3} - t{2} = -1 t{5} = t{4} - t{3} = -1 t{6} = t{5} - t{4} = 0
ooouu, thank you amistre64! :D
Join our real-time social learning platform and learn together with your friends!