MAT187 L20 - Improper Integrals with Infinite Bounds

#MAT187 PCE


Improper Integrals

For a function f(x) that is continuous on [a,) for some aR, we can define an improper integral to be:
af(x)dx=limtatf(x)dx

If the improper integral diverges, that doesn't necessarily mean that the function "blows up"—rather, it means that the integral is not finite, i.e. it doesn't converge.

For example, the function limt0tsin(x)dx diverges, but does not "blow up". Instead, it oscillates to infinity.

Note that you cannot say 0f(x)dx.

This is not valid because technically isn't a defined number.


Applications

A very common use case for improper integrals is the normal distribution curves (e.g., the bell curve). This can be represented by the function f(x)=ex2.

	left=-2; right=2;
    top=2; bottom=-1;
	---
	y=e^{-x^2}

Example: Car Warranties

Imagine, if you will, a company that produces car parts. The failure rate of the parts is represented by a continuous function f(t), so the cost of the parts replacements is given by abf(t)dt, from time t=a to t=b.

Example: CPU Failure Rate

Consider Intel, a CPU company. Suppose their Core i9-14900K CPUs fail at a rate that increases as time goes on, and is thus represented by ab0.2e0.2tdt.

Note that this rate is abnormally high for CPUs, which generally have a failure rate <5%.

This is because the 14th and 13th gen of Intel CPUs are prone to degrading. Oops!