Whats the difference between recursive formula and general term?

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
2 replies · 13K views
supernova1203
Messages
209
Reaction score
0
To solve this question i came up with what i think is the recursive formula, the question is in the attachment, the recursive formula i came up with is

Tn=tn-1+2 when t1=8

using the formula i can solve the questions but then it asks me to come up with a general term as well...what is the difference between the recursive formula and the general term? Are they the same thing as i think they are?
 

Attachments

  • L 16 (1).jpg
    L 16 (1).jpg
    17.6 KB · Views: 1,172
Physics news on Phys.org
When you're asked to find the general term, you are asked for an expression that usually involves variables. This general term can be defined recursively or non-recursively. For instance, if you have a sequence defined as follows:
1, 4, 7, 10, ...

1 is the 1st term (or t1).
4 is the 2nd term (or t2).
7 is the 3rd term (or t3).
10 is the 4th term (or t4).

I want to find the nth term of the sequence, or tn. I note that each successive term is 3 more than the previous, so I could define it recursively as thus:
tn = tn-1 + 3, with t1 = 1

Or I could define it non-recursively, which I think is the better way to go:
tn = 3n + 1

I like the 2nd way better in this case (and in your problem), because you're not required to find the previous terms. Say you want to find the 100th term. It will be quicker to use the non-recursive formula.
 
eumyang said:
When you're asked to find the general term, you are asked for an expression that usually involves variables. This general term can be defined recursively or non-recursively. For instance, if you have a sequence defined as follows:
1, 4, 7, 10, ...

1 is the 1st term (or t1).
4 is the 2nd term (or t2).
7 is the 3rd term (or t3).
10 is the 4th term (or t4).

I want to find the nth term of the sequence, or tn. I note that each successive term is 3 more than the previous, so I could define it recursively as thus:
tn = tn-1 + 3, with t1 = 1

Or I could define it non-recursively, which I think is the better way to go:
tn = 3n + 1

I like the 2nd way better in this case (and in your problem), because you're not required to find the previous terms. Say you want to find the 100th term. It will be quicker to use the non-recursive formula.


ah... ty :)