Sigma Notation Help: 5+10+17+26

  • Context: High School 
  • Thread starter Thread starter 123mathguy
  • Start date Start date
  • Tags Tags
    Sigma
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
11 replies · 3K views
123mathguy
Messages
2
Reaction score
0
can some one show me how to write
5+10+17+26 in sigma notation
 
Mathematics news on Phys.org
I can get the nth term that is

Tn=2+[tex]\sum_{k=1}^n2k+1[/tex]

but I don't know how to get from the Tn to Sn.
 
Last edited:
How CRGreatHouse see that or how did he trasform from the nth term to the Sn term?
 
[tex]\S_n=sum_{b=1}^nT_b[/tex]

where

[tex]\T_b=2+sum_{k=1}^b2k+1[/tex]
 
this is what I can do at most!
 
cks said:
How CRGreatHouse see that or how did he trasform from the nth term to the Sn term?

I noticed that the second differences were constant, which means that a quadratic can be uniquely fitted to it. The sequence is 5, 10, 17, 26; the first differences are 5, 7, 9; the second differences are 2, 2. I then solved the system a+b+c=5, 4a+2b+c=10, 9a+3b+c=17. (I could have used 16a+4b+c=26 but didn't need it.)
 
Last edited:
I try some examples and see that when there's a difference of 2, then we can somewhat say that the nth term contains k^2,

well, but i fail to guess how you come out with the linear system, a+b+c=5, 4a+2b+c=10, 9a+3b+c=17.

Sorry, I have been trying hard to think about it.
 
cks said:
well, but i fail to guess how you come out with the linear system, a+b+c=5, 4a+2b+c=10, 9a+3b+c=17.

I'm looking for a solution to y = ax^2 + bx + c with (x, y) = (1, 5), (2, 10), and (3, 17). Substitute and you get the linear system above.
 
In general, you can use "Newton's Difference Formula":
If you have a sequence {an} so that a0= a, the first difference, a1- a0, is b, the "second difference" (subtract the first two first differences) is c, etc. then an= a+ bn+ (c/2)n(n-1)+ ... It looks a lot like a Taylor's series formula but you use n(n-1)(n-2)...(n-k) instead of xk.