1
$\begingroup$

I have heard that when integrating, another variable must be used. But I'm not clear when to use it, and why this can lead to confusion. I do not know if it's just a good practice or it's a rule.

What I want is to express the calculations correctly, but I do not know when to change the name of the variable. How should it be done?

For example

If I have an equation like this: $f(x)=x^2+x+1$

And I want to calculate the following integrals:

  1. $\displaystyle \int f(x)\,dx$
  2. $\displaystyle \int_{-\infty}^{+\infty} f(x)\,dx$
  3. $\displaystyle \int_{-\infty}^{0} f(x)\,dx$
  4. $\displaystyle \int_{0}^{1} f(x)\,dx$
  5. $\displaystyle \int_{1}^{+\infty} f(x)\,dx$

What is the correct notation that I should use to solve them?

Thank you very much.

  • 2
    Can you give us an example of what you mean?2017-02-21
  • 1
    "Another variable must be used"? What is the source of that statement? For example, $$\int_0^1 x\,dx=[x^2/2]_0^1=1/2$$ No other variable than $x$ is needed.2017-02-21
  • 0
    Now I am editing the question. Excuse me.2017-02-21
  • 0
    Nos. 2, 3, and 5 do not converge.2017-02-21

2 Answers 2

3

There has been much debate over whether the following is acceptable:

$$\int_0^x dx \, f(x) $$

To me, this is horribly confusing, as confusing as this:

$$\sum_{k=0}^k a_k $$

So I prefer

$$\int_0^x dt \, f(t) $$

This comes in handy if, say, you want to do a substitution like $t=x u$:

$$x \int_0^1 du \, f(x u) $$

It also comes in handy when, say, squaring integrals, like

$$\left [ \int_0^x dt \, f(t) \right ]^2 = \int_0^x dt \, f(t) \, \int_0^x dt' \, f(t') $$

1

It's just a good habit since $F(x) = \int_0^x f(x) dx$ might cause confusion whereas $F(x) = \int_0^x f(t) dt$ probably won't.