Is F(n) = 3+5+7...+2n Identical to F(n) = n(n+1)?

  • Context: Undergrad 
  • Thread starter Thread starter goofyfootsp
  • Start date Start date
  • Tags Tags
    Function
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
4 replies · 3K views
goofyfootsp
Messages
12
Reaction score
0
F(n) = 2+4+6=...+2n
I know the expression that represents the given function is F(n) = n(n+1),

my question is F(n) = 3+5+7...2n the same F(n) = n(n+1)< if not can anyone expain?

Thanks
 
Mathematics news on Phys.org


This was gone into from General Math: Simple Sequences. The nth term is

[tex]\sum_1^n (2j-1)=n^2.[/tex] Or: 1=1, 1+3=2^2, 1+3+5 = 3^2, etc...
 
Last edited:


Why should they have the same sum when you are summing different numbers?

It is not to difficult to show that if you have any arithmetic sequence: an= a+ id, where a and d are fixed and i ranges from 1 to n, sums to n times the average of a1 and an: n*(a+ d+ (a+ nd))/2= n(a+ (d/2)(n+1)).

In the case of 2+ 4+ 6+ ...+ 2n, a= 0 and d= 2. The sum is n(0+ (2/2)(n+1)= n(n+1)
In the case of 1+ 3+ 5+ ...+ 2n+1, a= -1 and d= 2. The sum is n(-1+ (2/2)(n+1))= n2.
 


Thank you all for your help in explaining this, I appreciate it greatly.