Whats the difference between recursive formula and general term?

AI Thread Summary
The discussion clarifies the distinction between recursive formulas and general terms in sequences. A recursive formula defines each term based on the previous term, while a general term provides a direct expression for any term in the sequence. For example, the recursive formula tn = tn-1 + 3 can be contrasted with the general term tn = 3n + 1. The general term is often preferred for efficiency, especially when calculating distant terms like the 100th term. Understanding this difference is essential for solving sequence-related problems effectively.
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,142
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 :)
 
I tried to combine those 2 formulas but it didn't work. I tried using another case where there are 2 red balls and 2 blue balls only so when combining the formula I got ##\frac{(4-1)!}{2!2!}=\frac{3}{2}## which does not make sense. Is there any formula to calculate cyclic permutation of identical objects or I have to do it by listing all the possibilities? Thanks
Essentially I just have this problem that I'm stuck on, on a sheet about complex numbers: Show that, for ##|r|<1,## $$1+r\cos(x)+r^2\cos(2x)+r^3\cos(3x)...=\frac{1-r\cos(x)}{1-2r\cos(x)+r^2}$$ My first thought was to express it as a geometric series, where the real part of the sum of the series would be the series you see above: $$1+re^{ix}+r^2e^{2ix}+r^3e^{3ix}...$$ The sum of this series is just: $$\frac{(re^{ix})^n-1}{re^{ix} - 1}$$ I'm having some trouble trying to figure out what to...
Back
Top