MAT187 L20 - Improper Integrals with Infinite Bounds
Improper Integrals
For a function
- If this limit exists, then the improper integral converges.
- If it doesn't exist, the improper integral diverges.
For example, the function
This is not valid because technically
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
- If we want to find the probability that something falls below a certain value, whose distribution is represented by
, we need to integrate from to some value. - Thus, we should use an improper integral to evaluate this.
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
- If we want to find the total cost of car failures that will happen after a value
, we need to evaluate to "infinity". - This is represented by
.
- This is represented by
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
- The number of CPUs that fail between year 1 and year 2 is:
- Thus, the percentage of CPUs that fail between year 1 and 2 is
.
- Thus, the percentage of CPUs that fail between year 1 and 2 is
- We can also evaluate the number of CPUs that fail over an entire lifetime. This is represented by
.
This is because the 14th and 13th gen of Intel CPUs are prone to degrading. Oops!