Summation Limits: Understanding When a>b

  • Context: Undergrad 
  • Thread starter Thread starter EngWiPy
  • Start date Start date
  • Tags Tags
    Limits Summation
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
5 replies · 2K views
EngWiPy
Messages
1,361
Reaction score
61
Hello,

If we get a summation [tex]\sum_{r=a}^{b}[/tex], where a > b, how to treat this summation?

Regards
 
Mathematics news on Phys.org
I don't know if it is official notation, but I think it is usually interpret it as just

[tex]\sum_{r = b}^a[/tex]
 
Really? I'd interpret it as 0. That is, I take
[tex]\sum_{n=a}^bf(n)[/tex]
as shorthand for
[tex]\sum_{n\in\mathbb{Z},a\le n\le b}f(n)[/tex]
 
CRGreathouse said:
Really? I'd interpret it as 0. That is, I take
[tex]\sum_{n=a}^bf(n)[/tex]
as shorthand for
[tex]\sum_{n\in\mathbb{Z},a\le n\le b}f(n)[/tex]

What is zero, the whole summation, or the index r?
 
saeddawoud said:
What is zero, the whole summation, or the index r?

The whole summation.

To perform a sum, you start with zero, then for each value of n that satisfies the condition specified, you add f(n). In this case, there are no such values of n, so the answer remains zero.

That's my interpretation at least. But there may be other opinions.

Incidentally, some computer languages such as C work similarly. A loop of the form for(n=10; n<0; n++) is never executed.
 
Most of the time, it's best to assume the summation is zero, but it really depends on your application. If a sum like this pops up somewhere for some reason, you should interpret it in context to see if it makes sense at all.

In some cases, for instance in finite calculus, it might be more useful to interpret it slightly differently. It is well known that

[tex]\int_a^b f(x) dx = -\!\!\!\int_b^a f(x) dx,[/tex]

and since integrals are sort of like infinite sums, perhaps sums should work similarly. If [tex]a < b < c[/tex], we have

[tex]\sum_{k = a}^b f(k) + \sum_{k = b + 1}^c f(k) = \sum_{k = a}^c f(k).[/tex]

It might be nice to extend this to cases other than [tex]a < b < c[/tex]. For example, we would have

[tex]\sum_{k = a}^{b - 1} f(k) + \sum_{k = b}^a f(k) = \sum_{k = a}^a f(k) = f(a),[/tex]

which would imply that

[tex]\sum_{k = b}^a = f(a) - \sum_{k = a}^{b - 1} = -\!\!\!\sum_{k = a + 1}^{b - 1}.[/tex]

We would then have

[tex]\sum_{k = a}^{a - 1} f(k) = 0,[/tex]

but

[tex]\sum_{k = a}^{a - 2} f(k) = -f(a - 1).[/tex]

Which interpretation you should choose is up to the application.
 
Last edited: