1. Calculus I

Introduction To Integrals

Present antiderivatives and indefinite integrals as inverse differentiation, including basic integration rules and substitution method.

Introduction to Integrals

Hey students! šŸ‘‹ Welcome to one of the most exciting chapters in calculus - integrals! Think of integration as the reverse of differentiation, like how subtraction undoes addition. In this lesson, you'll discover how to find antiderivatives and master the fundamental techniques that will unlock a whole new world of mathematical problem-solving. By the end, you'll understand what integrals represent, how to apply basic integration rules, and when to use the powerful substitution method. Get ready to see how integration connects to real-world applications like calculating areas, distances, and even predicting population growth! šŸš€

What Are Integrals and Antiderivatives?

students, let's start with a simple question: if the derivative of $x^2$ is $2x$, what function has a derivative of $2x$? The answer is $x^2$! This reverse process is called finding an antiderivative or indefinite integral.

An antiderivative of a function $f(x)$ is any function $F(x)$ whose derivative equals $f(x)$. In mathematical notation, if $F'(x) = f(x)$, then $F(x)$ is an antiderivative of $f(x)$.

The indefinite integral is written as: $$\int f(x) \, dx = F(x) + C$$

Where:

  • The $\int$ symbol is called the integral sign
  • $f(x)$ is the integrand (the function we're integrating)
  • $dx$ indicates we're integrating with respect to $x$
  • $C$ is the constant of integration

But why do we need that $+C$? šŸ¤” Here's the thing - when we differentiate any constant, we get zero. So if $F(x) = x^2$, then both $x^2 + 5$ and $x^2 - 3$ have the same derivative: $2x$. The constant $C$ represents all possible constants that could have been there originally.

Think of it like this: if someone tells you they drove at 60 mph for 2 hours, you know they traveled 120 miles. But you don't know where they started or ended up - that's what the constant represents in integration!

Basic Integration Rules

Just like differentiation has rules, integration has corresponding rules that work in reverse. Let me show you the most important ones, students:

The Power Rule for Integration

If you remember the power rule for derivatives: $\frac{d}{dx}[x^n] = nx^{n-1}$, then the power rule for integration reverses this:

$$\int x^n \, dx = \frac{x^{n+1}}{n+1} + C \quad \text{(where } n \neq -1\text{)}$$

Example: $\int x^3 \, dx = \frac{x^4}{4} + C$

Let's verify: $\frac{d}{dx}\left[\frac{x^4}{4}\right] = \frac{4x^3}{4} = x^3$ āœ“

Constant Multiple Rule

$$\int k \cdot f(x) \, dx = k \int f(x) \, dx$$

This means constants can be pulled out of integrals. For example: $\int 5x^2 \, dx = 5 \int x^2 \, dx = 5 \cdot \frac{x^3}{3} + C = \frac{5x^3}{3} + C$

Sum and Difference Rules

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

Real-world example: Imagine you're tracking the temperature change in your room throughout the day. If the temperature increases at a rate of $3t + 2$ degrees per hour (where $t$ is time), then the total temperature change after $t$ hours would be:

$$\int (3t + 2) \, dt = \int 3t \, dt + \int 2 \, dt = 3 \cdot \frac{t^2}{2} + 2t + C = \frac{3t^2}{2} + 2t + C$$

Common Basic Integrals

Here are some fundamental integrals you should memorize:

  • $\int 1 \, dx = x + C$
  • $\int x \, dx = \frac{x^2}{2} + C$
  • $\int e^x \, dx = e^x + C$
  • $\int \frac{1}{x} \, dx = \ln|x| + C$ (for $x \neq 0$)
  • $\int \sin x \, dx = -\cos x + C$
  • $\int \cos x \, dx = \sin x + C$

The Substitution Method (u-Substitution)

students, sometimes integrals look more complicated than the basic rules can handle. That's where u-substitution comes to the rescue! This technique is like the chain rule in reverse.

The key idea is to substitute a part of the integrand with a new variable $u$ to simplify the integral. Here's the step-by-step process:

Step-by-Step u-Substitution:

  1. Identify the substitution: Look for a function and its derivative within the integrand
  2. Set up the substitution: Let $u$ equal the inner function
  3. Find $du$: Differentiate $u$ to get $du$
  4. Substitute: Replace all $x$ terms with $u$ terms
  5. Integrate: Use basic integration rules
  6. Back-substitute: Replace $u$ with the original expression

Example 1: Basic Substitution

Let's integrate $\int 2x(x^2 + 1)^5 \, dx$

Step 1: Notice that we have $x^2 + 1$ raised to a power, and its derivative $2x$ is also present.

Step 2: Let $u = x^2 + 1$

Step 3: Then $\frac{du}{dx} = 2x$, so $du = 2x \, dx$

Step 4: Substitute: $\int 2x(x^2 + 1)^5 \, dx = \int u^5 \, du$

Step 5: Integrate: $\int u^5 \, du = \frac{u^6}{6} + C$

Step 6: Back-substitute: $\frac{(x^2 + 1)^6}{6} + C$

Example 2: Real-World Application

Suppose you're modeling the growth rate of a bacterial colony. The rate of growth is given by $\frac{dN}{dt} = 6t e^{3t^2}$ bacteria per hour, where $t$ is time in hours. To find the total number of bacteria $N(t)$, we need to integrate:

$$N(t) = \int 6t e^{3t^2} \, dt$$

Using u-substitution:

  • Let $u = 3t^2$
  • Then $du = 6t \, dt$
  • The integral becomes: $\int e^u \, du = e^u + C = e^{3t^2} + C$

This tells us that the bacterial population grows exponentially with the square of time! 🦠

When to Use u-Substitution

Look for these patterns, students:

  • A function and its derivative both appear in the integrand
  • Composite functions (functions within functions)
  • Products where one factor is the derivative of part of the other factor

Pro tip: If you're not sure what to substitute, try letting $u$ be the "inside" function of a composition, or the more complicated part of the integrand.

Conclusion

students, you've just mastered the fundamentals of integration! We've explored how integrals are the reverse of derivatives, learned essential integration rules like the power rule and constant multiple rule, and discovered the powerful technique of u-substitution. These tools form the foundation for solving countless real-world problems, from calculating areas under curves to modeling population growth and analyzing motion. Remember that integration is like detective work - you're finding the original function when given its rate of change. With practice, you'll develop an intuition for recognizing patterns and choosing the right technique. Keep practicing these methods, and soon you'll be ready to tackle even more advanced integration techniques!

Study Notes

• Antiderivative: A function $F(x)$ whose derivative is $f(x)$; written as $\int f(x) \, dx = F(x) + C$

• Constant of Integration: The $+C$ term that accounts for all possible constant values in the original function

• Power Rule for Integration: $\int x^n \, dx = \frac{x^{n+1}}{n+1} + C$ (where $n \neq -1$)

• Constant Multiple Rule: $\int k \cdot f(x) \, dx = k \int f(x) \, dx$

• Sum/Difference Rule: $\int [f(x) \pm g(x)] \, dx = \int f(x) \, dx \pm \int g(x) \, dx$

• Key Basic Integrals:

  • $\int 1 \, dx = x + C$
  • $\int x^n \, dx = \frac{x^{n+1}}{n+1} + C$
  • $\int e^x \, dx = e^x + C$
  • $\int \frac{1}{x} \, dx = \ln|x| + C$
  • $\int \sin x \, dx = -\cos x + C$
  • $\int \cos x \, dx = \sin x + C$

• u-Substitution Steps:

  1. Identify inner function and its derivative
  2. Set $u =$ inner function
  3. Find $du$ by differentiating
  4. Substitute all $x$ terms with $u$ terms
  5. Integrate using basic rules
  6. Back-substitute $u$ with original expression

• u-Substitution Pattern: Look for a function and its derivative both appearing in the integrand

Practice Quiz

5 questions to test your understanding

Introduction To Integrals — Mathematics | A-Warded