Mar 20, 2007 16:59
help! my teacher didnt explain arithmetic sequences very well, so im a bit confused.
how would you figure out something like
a=5, d= -3 : find the nth term, when the initial term and difference are given.
how do you just figure something like that out?
Leave a comment
Comments 4
We think about this like robots. We calculate the first few terms:
T_1 = 5
T_2 = T_1 + -3 = 5 + -3
T_3 = T_2 + -3 = (5 + -3) + -3
T_4 = T_3 + -3 = ((5 + -3) + -3) + -3
etc.
Well, already I see a pattern. In the second term, I'd added one -3. In the fourth term, I'd added three -3s. I bet that in the n'th term, I will have added (n-1) -3s. In other words, I conjecture that:
T_n = 5 + (n-1)(-3)
Proof is via an easy induction.
Reply
--> a + (n-1)d
5 + (n-1)-3
5 + 3n + 3
3n + 8 --If that's what you mean...? Unless they expect the proof for this formula, then yeah, as posted above. That's the best way to understand how it works.
It's later incorporated in finding the sum of terms in a sequence:
Sn = 1/2*n [2a + (n-1)d]
So... anyone care to find proof for this formula? I would very much like to see a derived proof.
Reply
The sum of the first (n-1) integers is n(n-1)/2 (this is a common formula, of which there are many proofs). So the sum should be:
na + [n(n-1)d]/2, and we take out an n, giving us:
n(a + [(n-1)d]/2), and we add the fractions so as to factor out the 1/2, getting us:
(n/2)[2a + (n-1)d]
Reply
Yeah, that makes sense. Thanks.
Reply
Leave a comment