Command Palette

Search for a command to run...

Integrals

Properties of Indefinite Integral

Power Rule

This is one of the most basic and important rules in integration. If you encounter an integral in power form, use this formula:

xndx=1n+1xn+1+C,where n1\int x^n \, dx = \frac{1}{n+1}x^{n+1} + C, \quad \text{where } n \neq -1

Simply put, add one to the exponent, then divide by that new exponent.

For example, let's solve x5dx\int x^5 \, dx.

Here, n=5n=5, so:

x5dx=15+1x5+1+C\int x^5 \, dx = \frac{1}{5+1}x^{5+1} + C
=16x6+C= \frac{1}{6}x^6 + C

Constant Multiple Rule

If the function to be integrated has a coefficient or constant, you can "pull" that constant out of the integral to simplify the calculation.

af(x)dx=af(x)dx\int a \cdot f(x) \, dx = a \int f(x) \, dx

Remember, a is a constant number. This property is very useful for simplifying an integral before solving it.

Sum and Difference Rule

What if we have to integrate two functions that are added or subtracted? Easy, we can separate them into two different integrals.

[f(x)±g(x)]dx=f(x)dx±g(x)dx\int [f(x) \pm g(x)] \, dx = \int f(x) \, dx \pm \int g(x) \, dx

For example, to solve (x4x3)dx\int (x^4 - x^3) \, dx, we first separate them:

(x4x3)dx=x4dxx3dx\int (x^4 - x^3) \, dx = \int x^4 \, dx - \int x^3 \, dx
=(14+1x5)(13+1x4)+C= \left( \frac{1}{4+1}x^5 \right) - \left( \frac{1}{3+1}x^4 \right) + C
=15x514x4+C= \frac{1}{5}x^5 - \frac{1}{4}x^4 + C

Don't forget to add only one constant C at the end. Technically, each integral would produce its own constant (e.g., C1C_1 and C2C_2). However, since all these constants are of an indeterminate value, their sum or difference will also result in a new indeterminate constant. Therefore, we just write it as a single C at the end.

Substitution Rule

For integrals that look complicated, like the product of two functions where one is the derivative of the other (or a multiple of it), we can use the substitution rule. The basic idea is to simplify the integral by replacing part of the function with a new variable, usually u.

f(g(x))g(x)dx=f(u)du\int f(g(x)) \cdot g'(x) \, dx = \int f(u) \, du

This is often called u-substitution. This method is very powerful for solving complex integrals.

Exercises

  1. Find the result of 6x2dx\int 6x^2 \, dx!
  2. Find the result of (3x2+2x5)dx\int (3x^2 + 2x - 5) \, dx!
  3. Solve the integral 2x(x2+3)4dx\int 2x(x^2 + 3)^4 \, dx using the substitution rule!

Answer Key

  1. To solve 6x2dx\int 6x^2 \, dx, we can use the Constant Multiple Rule and the Power Rule.

    Step 1: Pull the constant 6 out of the integral.

    6x2dx=6x2dx\int 6x^2 \, dx = 6 \int x^2 \, dx

    Step 2: Use the power rule on x2dx\int x^2 \, dx, where n=2n=2.

    6(12+1x2+1)+C6 \left( \frac{1}{2+1}x^{2+1} \right) + C
    =6(13x3)+C= 6 \left( \frac{1}{3}x^3 \right) + C

    Step 3: Multiply the constants to get the final result.

    =2x3+C= 2x^3 + C
  2. For the integral (3x2+2x5)dx\int (3x^2 + 2x - 5) \, dx, we use the Sum and Difference Rule to break it down into three separate integrals.

    Step 1: Separate each term into its own integral.

    3x2dx+2xdx5dx\int 3x^2 \, dx + \int 2x \, dx - \int 5 \, dx

    Step 2: Solve each integral one by one using the power and constant rules.

    =3(13x3)+2(12x2)5x+C= 3\left(\frac{1}{3}x^3\right) + 2\left(\frac{1}{2}x^2\right) - 5x + C
    =x3+x25x+C= x^3 + x^2 - 5x + C

    So, the answer is x3+x25x+Cx^3 + x^2 - 5x + C.

  3. The integral 2x(x2+3)4dx\int 2x(x^2 + 3)^4 \, dx is a classic example for the Substitution Rule.

    Step 1: Choose a part of the function to be uu. A good choice is the part inside the parentheses.

    Let: u=x2+3u = x^2 + 3.

    Step 2: Find the derivative of uu with respect to xx, which is du/dxdu/dx.

    dudx=2x\frac{du}{dx} = 2x

    From this, we can write du=2xdxdu = 2x \, dx.

    Step 3: Perform the substitution. Replace x2+3x^2+3 with uu and 2xdx2x \, dx with dudu.

    (x2+3)4(2xdx)=u4du\int (x^2 + 3)^4 (2x \, dx) = \int u^4 \, du

    Step 4: Solve the simplified integral using the power rule.

    u4du=15u5+C\int u^4 \, du = \frac{1}{5}u^5 + C

    Step 5: Substitute uu back to its original form.

    =15(x2+3)5+C= \frac{1}{5}(x^2 + 3)^5 + C

    This is the final result.