COMPREHENSIVE EXAMPLES OF INTEGRATION TECHNIQUES
Example 1: Basic Integration
Integral: (int x^2 , dx)
Solution:
1. Increase the exponent by 1: (x^{2+1} = x^3).
2. Divide by the new exponent: (frac{x^3}{3}).
3. Add the constant of integration (C).
[
int x^2 , dx = frac{x^3}{3} + C
]
Example 2: Integration with a Constant
Integral: (int 3x , dx)
Solution:
1. Factor out the constant: (3 int x , dx).
2. Integrate (x): (int x , dx = frac{x^2}{2}).
3. Multiply by the constant: (3 cdot frac{x^2}{2} = frac{3x^2}{2}).
4. Add the constant of integration (C).
[
int 3x , dx = frac{3x^2}{2} + C
]
Example 3: Integration by Substitution
Integral: (int (2x+1)^5 cdot 2 , dx)
Solution:
1. Let (u = 2x + 1), then (du = 2 , dx) or (frac{du}{2} = dx).
2. Substitute (u) and (frac{du}{2}) into the integral: (int u^5 cdot frac{du}{2}).
3. Factor out the constant: (frac{1}{2} int u^5 , du).
4. Integrate (u^5): (frac{1}{2} cdot frac{u^6}{6} = frac{u^6}{12}).
5. Substitute back (u = 2x + 1).
[
int (2x+1)^5 cdot 2 , dx = frac{(2x+1)^6}{12} + C
]
Example 4: Definite Integration
Integral: (int_0^1 (3x^2 + 2x + 1) , dx)
Solution:
1. Integrate each term separately:
[
int 3x^2 , dx = frac{3x^3}{3} = x^3
]
[
int 2x , dx = frac{2x^2}{2} = x^2
]
[
int 1 , dx = x
]
2. Combine the results: (x^3 + x^2 + x).
3. Evaluate at the bounds (0) and (1):
[
left. x^3 + x^2 + x right|_0^1 = (1^3 + 1^2 + 1) - (0^3 + 0^2 + 0) = 1 + 1 + 1 = 3
]
[
int_0^1 (3x^2 + 2x + 1) , dx = 3
]
Example 5: Integration by Parts
Integral: (int x e^x , dx)
Solution:
1. Choose (u = x) and (dv = e^x , dx).
2. Compute (du = dx) and (v = e^x).
3. Use the integration by parts formula: (int u , dv = uv - int v , du).
4. Substitute and simplify:
[
int x e^x , dx = x e^x - int e^x , dx
]
[
= x e^x - e^x + C
]
[
int x e^x , dx = e^x (x - 1) + C
]
These examples cover a range of techniques, including basic integration, integration by substitution,
definite integration, and integration by parts.
Example 6: Integration with Trigonometric Functions
Integral: (int sin(x) , dx)
Solution:
1. The integral of (sin(x)) is (-cos(x)).
2. Add the constant of integration (C).
[
int sin(x) , dx = -cos(x) + C
]
Example 7: Integration of an Exponential Function
Integral: (int e^{3x} , dx)
Solution:
1. Let (u = 3x), then (du = 3 , dx) or (frac{du}{3} = dx).
2. Substitute (u) and (frac{du}{3}) into the integral: (int e^u cdot frac{du}{3}).
3. Factor out the constant: (frac{1}{3} int e^u , du).
4. Integrate (e^u): (frac{1}{3} e^u).
5. Substitute back (u = 3x).
[
int e^{3x} , dx = frac{1}{3} e^{3x} + C
]
Example 8: Integration by Parts (Advanced)
Integral: (int x ln(x) , dx)
Solution:
1. Choose (u = ln(x)) and (dv = x , dx).
2. Compute (du = frac{1}{x} , dx) and (v = frac{x^2}{2}).
3. Use the integration by parts formula: (int u , dv = uv - int v , du).
4. Substitute and simplify:
[
int x ln(x) , dx = frac{x^2}{2} ln(x) - int frac{x^2}{2} cdot frac{1}{x} , dx
]
[
= frac{x^2}{2} ln(x) - frac{1}{2} int x , dx
]
[
= frac{x^2}{2} ln(x) - frac{1}{2} cdot frac{x^2}{2} + C
]
[
= frac{x^2}{2} ln(x) - frac{x^2}{4} + C
]
[
int x ln(x) , dx = frac{x^2}{2} ln(x) - frac{x^2}{4} + C
]
Example 9: Trigonometric Substitution
Integral: (int frac{1}{sqrt{1 - x^2}} , dx)
Solution:
1. Recognize that this is the derivative of (arcsin(x)).
2. Therefore, the integral is:
[
int frac{1}{sqrt{1 - x^2}} , dx = arcsin(x) + C
]
Example 10: Integration of a Rational Function
Integral: (int frac{2x}{x^2 + 1} , dx)
Solution:
1. Let (u = x^2 + 1), then (du = 2x , dx).
2. Substitute (u) and (du) into the integral: (int frac{1}{u} , du).
3. Integrate (frac{1}{u}): (ln|u|).
4. Substitute back (u = x^2 + 1).
[
int frac{2x}{x^2 + 1} , dx = ln|x^2 + 1| + C
]
Example 11: Improper Integral
Integral: (int_1^infty frac{1}{x^2} , dx)
Solution:
1. Recognize this as an improper integral. Rewrite as a limit:
[
int_1^infty frac{1}{x^2} , dx = lim_{b to infty} int_1^b frac{1}{x^2} , dx
]
2. Integrate (frac{1}{x^2}): (int frac{1}{x^2} , dx = -frac{1}{x}).
3. Evaluate at the bounds:
[
left. -frac{1}{x} right|_1^b = -frac{1}{b} + frac{1}{1}
]
4. Take the limit as (b to infty):
[
lim_{b to infty} left(-frac{1}{b} + 1right) = 0 + 1 = 1
]
[
int_1^infty frac{1}{x^2} , dx = 1
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 12: Integration of a Trigonometric Identity
Integral: (int cos^2(x) , dx)
Solution:
1. Use the trigonometric identity (cos^2(x) = frac{1 + cos(2x)}{2}).
2. Rewrite the integral:
[
int cos^2(x) , dx = int frac{1 + cos(2x)}{2} , dx
]
3. Split the integral:
[
int frac{1}{2} , dx + int frac{cos(2x)}{2} , dx
]
4. Integrate each term separately:
[
int frac{1}{2} , dx = frac{x}{2}
]
[
int frac{cos(2x)}{2} , dx = frac{1}{2} int cos(2x) , dx = frac{1}{2} cdot frac{sin(2x)}{2} = frac{sin(2x)}{4}
]
5. Combine the results and add the constant of integration (C).
[
int cos^2(x) , dx = frac{x}{2} + frac{sin(2x)}{4} + C
]
These additional examples further illustrate the diversity of techniques used in solving integrals,
including dealing with trigonometric functions, exponential functions, rational functions, and
improper integrals.
Of course! Here are 10 more integration examples covering various techniques:
Example 13: Integration of Hyperbolic Functions
Integral: (int sinh(x) , dx)
Solution:
1. The integral of (sinh(x)) is (cosh(x)).
2. Add the constant of integration (C).
[
int sinh(x) , dx = cosh(x) + C
]
Example 14: Integration of a Product of Trigonometric Functions
Integral: (int sin(x) cos(x) , dx)
Solution:
1. Use the identity (sin(x) cos(x) = frac{1}{2} sin(2x)).
2. Rewrite the integral:
[
int sin(x) cos(x) , dx = int frac{1}{2} sin(2x) , dx
]
3. Factor out the constant: (frac{1}{2} int sin(2x) , dx).
4. Integrate (sin(2x)):
[
int sin(2x) , dx = -frac{cos(2x)}{2}
]
5. Multiply by the constant: (frac{1}{2} cdot -frac{cos(2x)}{2} = -frac{cos(2x)}{4}).
6. Add the constant of integration (C).
[
int sin(x) cos(x) , dx = -frac{cos(2x)}{4} + C
]
Example 15: Integration Using Partial Fractions
Integral: (int frac{1}{x^2 - 1} , dx)
Solution:
1. Factor the denominator: (x^2 - 1 = (x - 1)(x + 1)).
2. Decompose into partial fractions:
[
frac{1}{x^2 - 1} = frac{A}{x - 1} + frac{B}{x + 1}
]
Solve for (A) and (B):
[
1 = A(x + 1) + B(x - 1)
]
Setting (x = 1):
[
1 = 2A Rightarrow A = frac{1}{2}
]
Setting (x = -1):
[
1 = -2B Rightarrow B = -frac{1}{2}
]
3. Integrate each term:
[
int frac{1/2}{x - 1} , dx + int frac{-1/2}{x + 1} , dx = frac{1}{2} ln|x - 1| - frac{1}{2} ln|x + 1|
]
4. Combine the results:
[
= frac{1}{2} (ln|x - 1| - ln|x + 1|) + C
]
[
int frac{1}{x^2 - 1} , dx = frac{1}{2} ln left| frac{x - 1}{x + 1} right| + C
]
Example 16: Integration Using Trigonometric Substitution
Integral: (int sqrt{1 - x^2} , dx)
Solution:
1. Use the substitution (x = sin(theta)), (dx = cos(theta) , dtheta).
2. Substitute and simplify:
[
int sqrt{1 - sin^2(theta)} cos(theta) , dtheta = int cos^2(theta) , dtheta
]
3. Use the identity (cos^2(theta) = frac{1 + cos(2theta)}{2}):
[
int frac{1 + cos(2theta)}{2} , dtheta
]
4. Split the integral:
[
int frac{1}{2} , dtheta + int frac{cos(2theta)}{2} , dtheta
]
5. Integrate each term:
[
frac{1}{2} theta + frac{1}{4} sin(2theta) + C
]
6. Substitute back (theta = arcsin(x)) and use (sin(2theta) = 2sin(theta)cos(theta)):
[
= frac{1}{2} arcsin(x) + frac{1}{4} cdot 2x sqrt{1 - x^2} + C
]
[
= frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
[
int sqrt{1 - x^2} , dx = frac{1}{2} arcsin(x) + frac{x sqrt{1 - x^2}}{2} + C
]
Example 17: Integration of a Rational Function with a Quadratic Denominator
Integral: (int frac{1}{x^2 + 4} , dx)
Solution:
1. Recognize that this is of the form (int frac{1}{x^2 + a^2} , dx), where (a = 2).
2. The integral is (frac{1}{a} arctanleft(frac{x}{a}right) + C).
3. Substitute (a = 2).
[
int frac{1}{x^2 + 4} , dx = frac{1}{2} arctanleft(frac{x}{2}right) + C
]
Example 18: Integration of an Inverse Trigonometric Function
Integral: (int arctan(x) , dx)
Solution:
1. Use integration by parts. Let (u = arctan(x)) and (dv = dx).
2. Compute (du = frac{1}{1 + x^2} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int arctan(x) , dx = x arctan(x) - int frac{x}{1 + x^2} , dx
]
4. Use the substitution (u = 1 + x^2), (du = 2x , dx), then (frac{du}{2} = x , dx):
[
= x arctan(x) - int frac{1}{2} cdot frac{du}{u} = x arctan(x) - frac{1}{2} ln|u| + C
]
5. Substitute back (u = 1 + x^2):
[
= x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
[
int arctan(x) , dx = x arctan(x) - frac{1}{2} ln(1 + x^2) + C
]
Example 19: Integration of a Polynomial Raised to a Power
Integral: (int (x^3 + 1)^2 , dx)
Solution:
1. Expand the integrand:
[
(x^3 + 1)^2 = x^6 + 2x^3 + 1
]
2. Integrate each term separately:
[
int x^6 , dx = frac{x^7}{7}
]
[
int 2x^3 , dx = frac{2x^4}{4} = frac{x^4}{2}
]
[
int 1 , dx = x
]
3. Combine the results and add the constant of integration (C).
[
int (x^3 + 1)^2 , dx = frac{x^7}{7} + frac{x^4}{2} + x + C
]
Example 20: Integration by Trigonometric Identities
Integral: (int sec^2(x) , dx)
Solution:
1. Recognize that the integral of (sec^2(x)) is (tan(x)).
2. Add the constant of integration (C).
[
int sec^2(x) , dx = tan(x) + C
]
Example 21: Integration Using Substitution
Integral: (
int x e^{x^2} , dx)
Solution:
1. Let (u = x^2), then (du = 2x , dx) or (frac{du}{2} = x , dx).
2. Substitute (u) and (frac{du}{2}) into the integral:
[
int x e^{x^2} , dx = int e^u cdot frac{du}{2}
]
3. Factor out the constant: (frac{1}{2} int e^u , du).
4. Integrate (e^u): (frac{1}{2} e^u).
5. Substitute back (u = x^2).
[
int x e^{x^2} , dx = frac{1}{2} e^{x^2} + C
]
Example 22: Integration of Logarithmic Functions
Integral: (int ln(x) , dx)
Solution:
1. Use integration by parts. Let (u = ln(x)) and (dv = dx).
2. Compute (du = frac{1}{x} , dx) and (v = x).
3. Apply the integration by parts formula:
[
int ln(x) , dx = x ln(x) - int x cdot frac{1}{x} , dx
]
4. Simplify the integral:
[
= x ln(x) - int 1 , dx
]
5. Integrate (1):
[
= x ln(x) - x + C
]
[
int ln(x) , dx = x ln(x) - x + C
]
Example 23: Integration of a Polynomial Function
Integral: (int (3x^2 + 4x + 5) , dx)
Solution:
1. Integrate each term separately:
[
int 3x^2 , dx = x^3
]
[
int 4x , dx = 2x^2
]
[
int 5 , dx = 5x
]
2. Combine the results and add the constant of integration (C).
[
int (3x^2 + 4x + 5) , dx = x^3 + 2x^2 + 5x + C
]
Example 24: Integration of a Composite Exponential Function
Integral: (int e^{2x+3} , dx)
Solution:
1. Let (u = 2x + 3), then (du = 2 , dx) or (frac{du}{2} = dx).
2. Substitute (u) and (frac{du}{2}) into the integral:
[
int e^{2x+3} , dx = int e^u cdot frac{du}{2}
]
3. Factor out the constant: (frac{1}{2} int e^u , du).
4. Integrate (e^u): (frac{1}{2} e^u).
5. Substitute back (u = 2x + 3).
[
int e^{2x+3} , dx = frac{1}{2} e^{2x+3} + C
]
These examples demonstrate a wide range of integration techniques and functions, helping to build a
strong foundation in integral calculus.