vault backup: 2025-09-03 11:37:07

This commit is contained in:
arc
2025-09-03 11:37:07 -06:00
parent 95530d00c1
commit 2cf8f82069

View File

@ -17,4 +17,8 @@ Now, let $u = f(x)$ and $v = g(x)$, then $dv = g'(x)dx$ and $du = f'(x)dx$.
# Examples # Examples
> Evaluate the below antiderivative using integration by parts. > Evaluate the below antiderivative using integration by parts.
$$\int xe^{2x}dx$$ $$\int xe^{2x}dx$$
1. Define $u$ to be a value you can take the derivative of easily, in this case $u = x$, 1. Define $u$ to be a value you can take the derivative of easily, in this case $u = x$. The rest of the integral will be set to $dv$, in this case, $dv = e^{2x}dx$.
- $u = x$
- $du = \frac{d}{dx}(x)= 1dx$
- $dv = e^{2x}dx$
- $v = \frac{1}{2}e^{2x}$ - The antiderivative of $dv$.