2
$\begingroup$

I was trying to find the integral of $\frac{\sin x}{x}$ recently, and nothing I tried appeared to get me any closer to a solution, so I looked it up and apparently it's a Non-integrable function.

What makes a function Non-integrable and is there a way to solve it? Why can't it be solved with the "normal" methods.

Forgive my error-ridden terminology, I'm new.

  • 0
    It pretty much means there's no good antiderivative for it based on the function itself. Try graphing it and you'll see.2017-01-24
  • 0
    Sorry, but what do you mean by no "good" antiderivative?2017-01-24
  • 0
    Basically, you simply can't integrate it no matter what. The antiderivative doesn't exist.2017-01-24
  • 3
    The term you're looking for is a function that doesn't have an elementary antiderivative. These are functions who have an antiderivative but you can't express it in terms of finite amounts of addition, multiplication, exponentation and trig function.2017-01-24
  • 0
    A non integrable function is one where the definite integral can't be assigned a value. For example the Dirichlet function isn't integrable. You just can't assign that integral a number.2017-01-24
  • 0
    How else could you go about expressing the antiderivative?2017-01-24
  • 0
    You don't really. We generally just make up a name for special functions who come up a lot. Specifically the integral of $e^{-x^2}$ which is a very important part of statistics. That is usually called the erf function.2017-01-24
  • 0
    Thanks, that helps, I had been thinking, that I just somehow couldn't solve it with what I've been taught.2017-01-24
  • 0
    Possible duplicate of [Does $ \int_0^{\infty}\frac{\sin x}{x}dx $ have an improper Riemann integral or a Lebesgue integral?](https://math.stackexchange.com/questions/67198/does-int-0-infty-frac-sin-xxdx-have-an-improper-riemann-integral-or)2017-09-03

3 Answers 3

3

Whether the anti-derivative of a function can be expressed in terms of elementary functions is solved by Risch algorithm. $(\sin x)/x$ is one of those functions without a elementary anti-derivative.

With that being said, $(\sin x)/x$ still has an anti-derivative, namely $$ g(x) = \int_0^x \frac{\sin t}{t} \mathrm dt $$ Then $g'(x) = (\sin x)/x$.

In some sense $(\sin x)/x$ is not integrable, since $$ \int_{-\infty}^\infty \left| \frac{\sin x}{x} \right| \mathrm dx = +\infty $$ so the Lebesgue integral of $(\sin x)/x$ does not exist.

5

$\frac{\sin x}{x}$ is integrable (since it is continuous), it is just that its indefinite integral cannot be expressed as an elementary function. So its integral defines a special function Sine integral.

  • 0
    Just to clarify. $\frac{sin(x)}{x}$ can't be expressed in finitely many combinations of elementary functions.2017-01-24
  • 0
    The correct way to say is that it cannot be expressed as an elementary function. The elementary function itself is a finite combination of... My statement was not clear either, so I corrected it.2017-01-24
  • 0
    Yea. That's a lot nicer.2017-01-24
4

"Integrability" (more specifically, Lebesgue integrability) is a technical condition similar to absolute convergence of a sequence where a function is only considered integrable on $(a,b)$ if $$ \int_a^b|f(x)|dx < \infty.$$ By comparison with $1/x,$ $\sin(x)/x$ fails this criterion on $(-\infty, \infty)$ and is thus considered a non-integrable function on $(-\infty, \infty).$ This is likely the sense that was meant when you read that $\sin(x)/x$ is not integrable.

However, just like series can be convergent but not absolutely convergent, it turns out that since $\sin(x)/x$ oscillates as $|x|\rightarrow\infty$, the 'area under the curve' cancels out over the oscillations and is finite. The integral $$ \int_{-\infty}^\infty \frac{\sin(x)}{x}dx$$ can be defined as an improper Riemann integral and happens to equal $\pi.$ This is just a warning that 'not integrable' (in the Lebesgue sense) doesn't mean that the definite integral doesn't have a value.

All of this has little to do with your concern of finding an antiderivative for $\sin(x)/x$ and thus computing the integral over an interval using the fundamental theorem of calculus. As others have mentioned, it turns out that the antiderivative cannot be expressed as an elementary function, so it's no surprise you haven't been successful in applying various integration tricks.

Even though you cannot compute the integral in the usual way by taking an antiderivative, remember that, since $\sin(x)/x$ is a nice bounded, continuous function, the definite integral $\int_a^b\frac{\sin(x)}{x}dx$ exists a well-defined number (area under the curve) for any $a$ and $b$. Likewise, as others have mentioned, an antiderivative function $\mathrm{Si}(x) = \int_0^x\frac{\sin(t)}{t}dt$ exists and we have $$\int_a^b\frac{\sin(x)}{x}dx = \mathrm{Si}(b)-\mathrm{Si}(a).$$ It's just that $\mathrm{Si}(x)$ does not have a nice expression in terms of elementary functions like $\sin$, $\cos,$ $\ln$, $e^x,$ etc like you would usually compute with integration techniques.... it's its 'own thing' (called the sine-integral function).

Functions without an elementary antiderivative are usually called 'functions without an elementary antiderivative' and not called 'not integrable', although the latter would be perfectly reasonable terminology if it weren't already reserved for the technical condition I mentioned above.

  • 1
    This is a great answer.2017-01-26