100% FREE Updated: Mar 2026 Calculus Differential and Integral Calculus

Integration and its Applications

Comprehensive study notes on Integration and its Applications for CMI Data Science preparation. This chapter covers key concepts, formulas, and examples needed for your exam.

Integration and its Applications

Overview

Welcome to the chapter on Integration and its Applications, a fundamental cornerstone in your journey through advanced mathematics for Data Science. While often seen as a purely theoretical concept, integration is an indispensable tool that underpins many critical areas within statistical modeling, machine learning, and data analysis. This chapter will equip you with the essential techniques and conceptual understanding required to approach and solve complex problems involving continuous data, distributions, and cumulative effects.

For a Masters in Data Science, a solid grasp of integration is not merely academic; it is directly relevant to your ability to interpret and manipulate probabilistic models, understand the behavior of continuous variables, and derive key insights from complex datasets. You will find integration crucial for tasks such as calculating probabilities from probability density functions (PDFs), determining expected values, and understanding the theoretical foundations of various machine learning algorithms.

Mastering the concepts here will significantly enhance your problem-solving toolkit, preparing you for more advanced topics in statistical inference, stochastic processes, and machine learning theory. Furthermore, a strong command of these principles is frequently assessed in CMI examinations, making this chapter vital for both conceptual understanding and exam success.

---

Chapter Contents

| # | Topic | What You'll Learn |
|---|-------|-------------------|
| 1 | The Indefinite and Definite Integral | Master core integration concepts and fundamental techniques. |
| 2 | Applications of Integration | Apply integration to solve real-world data problems. |

---

Learning Objectives

❗ By the End of This Chapter

After studying this chapter, you will be able to:

  • Define and compute both indefinite and definite integrals, including using the Fundamental Theorem of Calculus.

  • Interpret the meaning of definite integrals in the context of continuous functions and data distributions.

  • Apply integration techniques to calculate probabilities from continuous probability density functions (PDFs).

  • Utilize integration to determine expected values, variances, and other statistical moments for continuous random variables.

---

Now let's begin with The Indefinite and Definite Integral...

Part 1: The Indefinite and Definite Integral

Introduction

Integration is a fundamental concept in calculus, serving as the inverse operation to differentiation. In the context of a Masters in Data Science, understanding integrals is crucial for areas such as probability theory (calculating probabilities for continuous random variables), signal processing, optimization, and machine learning algorithms that involve continuous sums or area calculations. This topic covers the essential definitions, properties, and basic applications of both indefinite and definite integrals, laying the groundwork for more advanced concepts.
πŸ“– Integral

The integral is a mathematical operation that essentially sums up an infinite number of infinitesimally small parts to find a total quantity, such as area, volume, or total change. It is the inverse process of differentiation.

---

---

Key Concepts

1. The Indefinite Integral

The indefinite integral, also known as the antiderivative, reverses the process of differentiation. If we differentiate a function F(x)F(x) to get f(x)f(x), then the indefinite integral of f(x)f(x) is F(x)+CF(x) + C, where CC is the constant of integration.

πŸ“ Indefinite Integral Notation
∫f(x) dx=F(x)+C\int f(x) \, dx = F(x) + C

Variables:

    • ∫\int = integral symbol

    • f(x)f(x) = integrand (the function to be integrated)

    • dxdx = indicates that xx is the variable of integration

    • F(x)F(x) = an antiderivative of f(x)f(x)

    • CC = constant of integration (accounts for any constant term that would vanish upon differentiation)


When to use: To find a family of functions whose derivative is f(x)f(x).

Basic Integration Formulas:

  • Power Rule:

  • ∫xn dx=xn+1n+1+C(nβ‰ βˆ’1)\int x^n \, dx = \frac{x^{n+1}}{n+1} + C \quad (n \neq -1)

    This rule applies to polynomial terms.

  • Exponential Function:

  • ∫ex dx=ex+C\int e^x \, dx = e^x + C

    The integral of exe^x is itself.

  • Reciprocal Function:

  • ∫1x dx=ln⁑∣x∣+C\int \frac{1}{x} \, dx = \ln|x| + C

    This is the special case for n=βˆ’1n=-1 in the power rule.

  • Trigonometric Functions:

  • ∫sin⁑x dx=βˆ’cos⁑x+C\int \sin x \, dx = -\cos x + C

    ∫cos⁑x dx=sin⁑x+C\int \cos x \, dx = \sin x + C

    Worked Example: Indefinite Integral

    Problem: Find the indefinite integral of f(x)=3x2+1xβˆ’2f(x) = 3x^2 + \frac{1}{x} - 2.

    Solution:

    Step 1: Apply linearity and individual integration rules.

    ∫(3x2+1xβˆ’2) dx=∫3x2 dx+∫1x dxβˆ’βˆ«2 dx\int \left(3x^2 + \frac{1}{x} - 2\right) \, dx = \int 3x^2 \, dx + \int \frac{1}{x} \, dx - \int 2 \, dx

    Step 2: Integrate each term using the basic formulas.

    =3(x2+12+1)+ln⁑∣xβˆ£βˆ’2x+C= 3 \left(\frac{x^{2+1}}{2+1}\right) + \ln|x| - 2x + C

    Step 3: Simplify the expression.

    =3(x33)+ln⁑∣xβˆ£βˆ’2x+C= 3 \left(\frac{x^3}{3}\right) + \ln|x| - 2x + C
    =x3+ln⁑∣xβˆ£βˆ’2x+C= x^3 + \ln|x| - 2x + C

    Answer: x3+ln⁑∣xβˆ£βˆ’2x+Cx^3 + \ln|x| - 2x + C

    ---

    2. The Definite Integral

    The definite integral calculates the net signed area between the graph of a function f(x)f(x) and the x-axis over a specified interval [a,b][a, b]. Unlike the indefinite integral, it yields a specific numerical value, not a family of functions.

    πŸ“ Definite Integral Notation
    ∫abf(x) dx\int_a^b f(x) \, dx

    Variables:

      • aa = lower limit of integration

      • bb = upper limit of integration

      • f(x)f(x) = integrand

      • dxdx = variable of integration


    When to use: To calculate a specific value like area under a curve, total change, or cumulative sum over an interval.

    The link between indefinite and definite integrals is established by the Fundamental Theorem of Calculus (Part 2).

    πŸ“ Fundamental Theorem of Calculus (Part 2)
    ∫abf(x) dx=F(b)βˆ’F(a)\int_a^b f(x) \, dx = F(b) - F(a)

    Variables:

      • f(x)f(x) = a continuous function on the interval [a,b][a, b]

      • F(x)F(x) = any antiderivative of f(x)f(x), i.e., Fβ€²(x)=f(x)F'(x) = f(x)


    When to use: To evaluate definite integrals by finding an antiderivative and evaluating it at the limits.

    Properties of Definite Integrals:

  • Reversing Limits: ∫abf(x) dx=βˆ’βˆ«baf(x) dx\int_a^b f(x) \, dx = -\int_b^a f(x) \, dx

  • Zero Interval: ∫aaf(x) dx=0\int_a^a f(x) \, dx = 0

  • Linearity: ∫ab[kβ‹…f(x)Β±g(x)] dx=k∫abf(x) dx±∫abg(x) dx\int_a^b [k \cdot f(x) \pm g(x)] \, dx = k \int_a^b f(x) \, dx \pm \int_a^b g(x) \, dx

  • Interval Additivity: ∫acf(x) dx=∫abf(x) dx+∫bcf(x) dx\int_a^c f(x) \, dx = \int_a^b f(x) \, dx + \int_b^c f(x) \, dx, where a<b<ca < b < c.
  • Worked Example: Definite Integral

    Problem: Evaluate the definite integral ∫12(2x+1) dx\int_1^2 (2x + 1) \, dx.

    Solution:

    Step 1: Find the indefinite integral (antiderivative) of the integrand.

    Let f(x)=2x+1f(x) = 2x + 1. Its antiderivative F(x)F(x) is:

    F(x)=∫(2x+1) dx=2(x22)+x=x2+xF(x) = \int (2x + 1) \, dx = 2 \left(\frac{x^2}{2}\right) + x = x^2 + x

    Step 2: Apply the Fundamental Theorem of Calculus.

    ∫12(2x+1) dx=F(2)βˆ’F(1)\int_1^2 (2x + 1) \, dx = F(2) - F(1)

    Step 3: Substitute the limits of integration into F(x)F(x).

    F(2)=(2)2+2=4+2=6F(2) = (2)^2 + 2 = 4 + 2 = 6
    F(1)=(1)2+1=1+1=2F(1) = (1)^2 + 1 = 1 + 1 = 2

    Step 4: Calculate the difference.

    F(2)βˆ’F(1)=6βˆ’2=4F(2) - F(1) = 6 - 2 = 4

    Answer: 44

    ---

    3. Basic Application: Area Under a Curve

    One of the most direct applications of the definite integral is calculating the area under a curve. If f(x)β‰₯0f(x) \ge 0 for all xx in [a,b][a, b], then the area AA of the region bounded by y=f(x)y = f(x), the x-axis, and the vertical lines x=ax=a and x=bx=b is given by:

    A=∫abf(x) dxA = \int_a^b f(x) \, dx

    ---

    Problem-Solving Strategies

    πŸ’‘ CMI Strategy

    • Identify Integral Type: Determine if it's an indefinite integral (requires +C+C) or a definite integral (yields a number).

    • Simplify Integrand: Use algebraic manipulation (e.g., expanding, combining terms) to simplify the function before integrating.

    • Apply Linearity: Break down complex integrals into sums or differences of simpler integrals, and pull out constants.

    • Use FTC for Definite Integrals: Always find the antiderivative first, then evaluate it at the upper and lower limits.

    ---

    Common Mistakes

    ⚠️ Avoid These Errors
      • ❌ Forgetting the constant of integration (+C+C): This is a critical error for indefinite integrals.
    βœ… Always include +C+C for indefinite integrals.
      • ❌ Incorrectly applying limits in definite integrals: Mixing up upper and lower limits, or making sign errors in F(b)βˆ’F(a)F(b) - F(a).
    βœ… Carefully substitute F(b)F(b) and F(a)F(a) and perform the subtraction F(b)βˆ’F(a)F(b) - F(a) accurately.
      • ❌ Integrating products/quotients term by term: ∫f(x)g(x) dxβ‰ βˆ«f(x) dx∫g(x) dx\int f(x)g(x) \, dx \neq \int f(x) \, dx \int g(x) \, dx.
    βœ… Simplify the integrand first (e.g., expand products) or use appropriate advanced techniques (like integration by parts or substitution, which are covered in subsequent topics).

    ---

    Practice Questions

    :::question type="MCQ" question="Which of the following is the indefinite integral of f(x)=4x3βˆ’1x2f(x) = 4x^3 - \frac{1}{x^2}?" options=["x4+1x+Cx^4 + \frac{1}{x} + C","12x2+2x3+C12x^2 + \frac{2}{x^3} + C","x4βˆ’1x+Cx^4 - \frac{1}{x} + C","x4+1x3+Cx^4 + \frac{1}{x^3} + C"] answer="x4+1x+Cx^4 + \frac{1}{x} + C" hint="Rewrite 1/x21/x^2 as xβˆ’2x^{-2} and apply the power rule." solution="Step 1: Rewrite the integrand.

    f(x)=4x3βˆ’xβˆ’2f(x) = 4x^3 - x^{-2}

    Step 2: Integrate each term using the power rule.
    ∫4x3 dx=4(x3+13+1)=4x44=x4\int 4x^3 \, dx = 4 \left(\frac{x^{3+1}}{3+1}\right) = 4 \frac{x^4}{4} = x^4

    βˆ«βˆ’xβˆ’2 dx=βˆ’(xβˆ’2+1βˆ’2+1)=βˆ’(xβˆ’1βˆ’1)=xβˆ’1=1x\int -x^{-2} \, dx = -\left(\frac{x^{-2+1}}{-2+1}\right) = -\left(\frac{x^{-1}}{-1}\right) = x^{-1} = \frac{1}{x}

    Step 3: Combine the results and add the constant of integration.
    ∫(4x3βˆ’1x2) dx=x4+1x+C\int \left(4x^3 - \frac{1}{x^2}\right) \, dx = x^4 + \frac{1}{x} + C

    Answer: x4+1x+C\boxed{x^4 + \frac{1}{x} + C}"
    :::

    :::question type="NAT" question="Calculate the value of ∫01(ex+3) dx\int_0^1 (e^x + 3) \, dx. Round your answer to two decimal places." answer="4.72" hint="Find the antiderivative of ex+3e^x + 3 and then apply the Fundamental Theorem of Calculus." solution="Step 1: Find the antiderivative of f(x)=ex+3f(x) = e^x + 3.

    F(x)=∫(ex+3) dx=ex+3xF(x) = \int (e^x + 3) \, dx = e^x + 3x

    Step 2: Apply the Fundamental Theorem of Calculus.
    ∫01(ex+3) dx=F(1)βˆ’F(0)\int_0^1 (e^x + 3) \, dx = F(1) - F(0)

    Step 3: Evaluate F(x)F(x) at the limits.
    F(1)=e1+3(1)=e+3F(1) = e^1 + 3(1) = e + 3

    F(0)=e0+3(0)=1+0=1F(0) = e^0 + 3(0) = 1 + 0 = 1

    Step 4: Calculate the definite integral.
    F(1)βˆ’F(0)=(e+3)βˆ’1=e+2F(1) - F(0) = (e + 3) - 1 = e + 2

    Step 5: Use the approximate value eβ‰ˆ2.71828e \approx 2.71828.
    e+2β‰ˆ2.71828+2=4.71828e + 2 \approx 2.71828 + 2 = 4.71828

    Rounding to two decimal places, we get 4.724.72.
    Answer: 4.72\boxed{4.72}"
    :::

    :::question type="MSQ" question="Which of the following statements about definite integrals are TRUE?" options=["∫abf(x) dx=∫baf(x) dx\int_a^b f(x) \, dx = \int_b^a f(x) \, dx","If f(x)β‰₯0f(x) \ge 0 on [a,b][a,b], then ∫abf(x) dxβ‰₯0\int_a^b f(x) \, dx \ge 0.","∫abkβ‹…f(x) dx=k∫abf(x) dx\int_a^b k \cdot f(x) \, dx = k \int_a^b f(x) \, dx for any constant kk.","∫abc dx=c(bβˆ’a)\int_a^b c \, dx = c(b-a) for any constant cc." ] answer="B,C,D" hint="Recall the basic properties of definite integrals." solution="1. This statement is FALSE. The property is ∫abf(x) dx=βˆ’βˆ«baf(x) dx\int_a^b f(x) \, dx = -\int_b^a f(x) \, dx.

  • This statement is TRUE. If the function is non-negative, the area under the curve is also non-negative.

  • This statement is TRUE. It is a property of linearity for definite integrals.

  • This statement is TRUE. The integral of a constant cc from aa to bb is c(bβˆ’a)c(b-a).

  • ∫abc dx=[cx]ab=c(b)βˆ’c(a)=c(bβˆ’a)\int_a^b c \, dx = [cx]_a^b = c(b) - c(a) = c(b-a)

    Answer: B,C,D\boxed{B,C,D}"
    :::

    :::question type="SUB" question="Prove that ∫ab(f(x)+g(x)) dx=∫abf(x) dx+∫abg(x) dx\int_a^b (f(x) + g(x)) \, dx = \int_a^b f(x) \, dx + \int_a^b g(x) \, dx, assuming Fβ€²(x)=f(x)F'(x) = f(x) and Gβ€²(x)=g(x)G'(x) = g(x)." answer="The proof demonstrates the linearity property of definite integrals using the Fundamental Theorem of Calculus." hint="Use the Fundamental Theorem of Calculus (Part 2) and the linearity of differentiation." solution="Step 1: Let H(x)H(x) be an antiderivative of f(x)+g(x)f(x) + g(x).
    By the linearity of differentiation, if Fβ€²(x)=f(x)F'(x) = f(x) and Gβ€²(x)=g(x)G'(x) = g(x), then the derivative of F(x)+G(x)F(x) + G(x) is f(x)+g(x)f(x) + g(x).
    So, an antiderivative of f(x)+g(x)f(x) + g(x) is F(x)+G(x)F(x) + G(x).

    Step 2: Apply the Fundamental Theorem of Calculus to the left side of the equation.

    ∫ab(f(x)+g(x)) dx=[F(x)+G(x)]ab\int_a^b (f(x) + g(x)) \, dx = [F(x) + G(x)]_a^b

    Step 3: Evaluate the antiderivative at the limits.

    =(F(b)+G(b))βˆ’(F(a)+G(a))= (F(b) + G(b)) - (F(a) + G(a))

    Step 4: Rearrange the terms.

    =F(b)+G(b)βˆ’F(a)βˆ’G(a)= F(b) + G(b) - F(a) - G(a)

    =(F(b)βˆ’F(a))+(G(b)βˆ’G(a))= (F(b) - F(a)) + (G(b) - G(a))

    Step 5: Apply the Fundamental Theorem of Calculus in reverse to each term.

    F(b)βˆ’F(a)=∫abf(x) dxF(b) - F(a) = \int_a^b f(x) \, dx

    G(b)βˆ’G(a)=∫abg(x) dxG(b) - G(a) = \int_a^b g(x) \, dx

    Step 6: Substitute these back into the expression.

    =∫abf(x) dx+∫abg(x) dx= \int_a^b f(x) \, dx + \int_a^b g(x) \, dx

    Thus, ∫ab(f(x)+g(x)) dx=∫abf(x) dx+∫abg(x) dx\int_a^b (f(x) + g(x)) \, dx = \int_a^b f(x) \, dx + \int_a^b g(x) \, dx is proven.
    Answer: TheΒ proofΒ demonstratesΒ theΒ linearityΒ propertyΒ ofΒ definiteΒ integralsΒ usingΒ theΒ FundamentalΒ TheoremΒ ofΒ Calculus.\boxed{\text{The proof demonstrates the linearity property of definite integrals using the Fundamental Theorem of Calculus.}}"
    :::

    ---

    ---

    Summary

    ❗ Key Takeaways for CMI

    • Indefinite Integral: Represents the family of antiderivatives of a function f(x)f(x), denoted as ∫f(x) dx=F(x)+C\int f(x) \, dx = F(x) + C. Always remember the constant of integration CC.

    • Definite Integral: Represents the net signed area under the curve f(x)f(x) from x=ax=a to x=bx=b, denoted as ∫abf(x) dx\int_a^b f(x) \, dx. It yields a numerical value.

    • Fundamental Theorem of Calculus (Part 2): Connects indefinite and definite integrals, stating ∫abf(x) dx=F(b)βˆ’F(a)\int_a^b f(x) \, dx = F(b) - F(a), where F(x)F(x) is any antiderivative of f(x)f(x).

    • Basic Formulas: Master the power rule, exponential, and reciprocal function integrals, as well as basic trigonometric integrals.

    • Applications: The definite integral is primarily used for calculating areas, total change, and cumulative sums.

    ---

    What's Next?

    πŸ’‘ Continue Learning

    This foundational topic connects to:

      • Advanced Integration Techniques: Learn methods like integration by substitution and integration by parts for more complex functions.

      • Applications of Integration: Explore how integrals are used to calculate volumes, arc lengths, surface areas, and work.

      • Differential Equations: Many solutions to differential equations involve integration.

      • Probability and Statistics: Continuous probability distributions heavily rely on definite integrals to calculate probabilities.


    Master these connections for comprehensive CMI preparation!

    ---

    πŸ’‘ Moving Forward

    Now that you understand The Indefinite and Definite Integral, let's explore Applications of Integration which builds on these concepts.

    ---

    Part 2: Applications of Integration

    Introduction

    Integration is a fundamental concept in calculus that can be thought of as the inverse process of differentiation. While differentiation helps us find rates of change, integration allows us to find the total quantity or accumulated change when we know its rate of change. In essence, integration sums up infinitesimally small parts to find the whole.

    In the context of a Masters in Data Science, applications of integration are vast and crucial. For instance, if we know the rate at which a population is growing, integration can help us determine the total population at a future time. If we have the marginal cost function for a product, integration can yield the total cost. In physics and engineering, particularly in kinematics, integration is indispensable for relating acceleration, velocity, and displacement, which are critical for modeling dynamic systems. Understanding these applications is vital for CMI, as it frequently tests the ability to translate real-world scenarios into mathematical models solvable by integration.

    πŸ“– Indefinite Integral

    The indefinite integral of a function f(x)f(x), denoted by ∫f(x)dx\int f(x) dx, is a function F(x)F(x) such that Fβ€²(x)=f(x)F'(x) = f(x). It is expressed as F(x)+CF(x) + C, where CC is the constant of integration.

    ∫f(x)dx=F(x)+C\int f(x) dx = F(x) + C

    ---

    Key Concepts

    1. Displacement, Velocity, and Acceleration

    One of the most direct and frequently tested applications of integration in CMI is in kinematics, the study of motion. Here, integration helps us move from acceleration to velocity, and from velocity to displacement.

    * Acceleration (a(t)a(t)) is the rate of change of velocity.
    * Velocity (v(t)v(t)) is the rate of change of displacement.
    * Displacement (s(t)s(t)) is the change in position.

    The relationships are as follows:

    If we know the acceleration a(t)a(t) of an object as a function of time, we can find its velocity v(t)v(t) by integrating a(t)a(t) with respect to time.

    Step 1: Integrate acceleration to find velocity

    v(t)=∫a(t)dt+C1v(t) = \int a(t) dt + C_1

    Here, C1C_1 is the constant of integration, which can be determined using an initial condition (e.g., the velocity at t=0t=0, denoted as v(0)v(0) or v0v_0). So, C1=v0C_1 = v_0.

    Step 2: Integrate velocity to find displacement

    s(t)=∫v(t)dt+C2s(t) = \int v(t) dt + C_2

    Similarly, C2C_2 is the constant of integration, determined by an initial condition (e.g., the displacement at t=0t=0, denoted as s(0)s(0) or s0s_0). So, C2=s0C_2 = s_0.

    πŸ“ Kinematic Relationships via Integration
    v(t)=∫a(t)dt+v0v(t) = \int a(t) dt + v_0
    s(t)=∫v(t)dt+s0s(t) = \int v(t) dt + s_0

    Variables:

      • a(t)a(t) = acceleration as a function of time

      • v(t)v(t) = velocity as a function of time

      • s(t)s(t) = displacement as a function of time

      • v0v_0 = initial velocity (velocity at t=0t=0)

      • s0s_0 = initial displacement (position at t=0t=0)


    When to use: To determine velocity from acceleration, or displacement from velocity, given initial conditions for a moving particle.

    Worked Example:

    Problem: A particle moves along a straight line with an acceleration given by a(t)=6tβˆ’2a(t) = 6t - 2 m/s2^2. If its initial velocity is v(0)=3v(0) = 3 m/s and its initial position is s(0)=1s(0) = 1 m, find its velocity and displacement at any time tt.

    Solution:

    Step 1: Find the velocity function v(t)v(t) by integrating the acceleration a(t)a(t).

    v(t)=∫a(t)dtv(t) = \int a(t) dt
    v(t)=∫(6tβˆ’2)dtv(t) = \int (6t - 2) dt
    v(t)=3t2βˆ’2t+C1v(t) = 3t^2 - 2t + C_1

    Step 2: Use the initial velocity condition to find C1C_1.
    Given v(0)=3v(0) = 3 m/s.

    v(0)=3(0)2βˆ’2(0)+C1=3v(0) = 3(0)^2 - 2(0) + C_1 = 3
    C1=3C_1 = 3

    So, the velocity function is:

    v(t)=3t2βˆ’2t+3v(t) = 3t^2 - 2t + 3

    Step 3: Find the displacement function s(t)s(t) by integrating the velocity v(t)v(t).

    s(t)=∫v(t)dts(t) = \int v(t) dt
    s(t)=∫(3t2βˆ’2t+3)dts(t) = \int (3t^2 - 2t + 3) dt
    s(t)=t3βˆ’t2+3t+C2s(t) = t^3 - t^2 + 3t + C_2

    Step 4: Use the initial displacement condition to find C2C_2.
    Given s(0)=1s(0) = 1 m.

    s(0)=(0)3βˆ’(0)2+3(0)+C2=1s(0) = (0)^3 - (0)^2 + 3(0) + C_2 = 1
    C2=1C_2 = 1

    So, the displacement function is:

    s(t)=t3βˆ’t2+3t+1s(t) = t^3 - t^2 + 3t + 1

    Answer: The velocity function is v(t)=3t2βˆ’2t+3v(t) = 3t^2 - 2t + 3 m/s, and the displacement function is s(t)=t3βˆ’t2+3t+1s(t) = t^3 - t^2 + 3t + 1 m.

    ---

    2. Area Under a Curve as Total Change (Displacement vs. Total Distance)

    The definite integral ∫abf(x)dx\int_a^b f(x) dx represents the net accumulated change of the antiderivative of f(x)f(x) from x=ax=a to x=bx=b. In kinematics, this concept is crucial for understanding displacement and total distance traveled.

    If v(t)v(t) is the velocity function of a particle, then:

    * The net displacement of the particle from time t=at=a to t=bt=b is given by the definite integral of the velocity function:

    Net Displacement=∫abv(t)dt\text{Net Displacement} = \int_{a}^{b} v(t) dt

    This value can be positive, negative, or zero, indicating the final position relative to the initial position. A negative value means the particle ended up behind its starting point relative to the positive direction.

    The total distance traveled by the particle from time t=at=a to t=bt=b is given by the definite integral of the absolute value* of the velocity function:

    Total Distance=∫ab∣v(t)∣dt\text{Total Distance} = \int_{a}^{b} |v(t)| dt

    Total distance is always non-negative because it accounts for all movement, regardless of direction. To calculate this, one must first find the times when v(t)=0v(t) = 0 (i.e., when the particle changes direction) and then integrate ∣v(t)∣|v(t)| over appropriate subintervals.

    πŸ“– Net Displacement vs. Total Distance Traveled
      • Net Displacement: The integral of velocity, ∫t1t2v(t)dt\int_{t_1}^{t_2} v(t) dt, gives the overall change in position from t1t_1 to t2t_2.
      • Total Distance Traveled: The integral of the absolute value of velocity, ∫t1t2∣v(t)∣dt\int_{t_1}^{t_2} |v(t)| dt, gives the sum of the lengths of all paths traveled, irrespective of direction.

    The following diagram illustrates the difference between net displacement and total distance. The blue area (A1A_1) represents movement in the positive direction, and the red area (A2A_2) represents movement in the negative direction.







    t
    v(t)
    0
    Area 1 (A1A_1)
    Area 2 (A2A_2)
    Area 3 (A3A_3)





    Net Displacement = A1βˆ’A2+A3A_1 - A_2 + A_3
    Total Distance = A1+A2+A3A_1 + A_2 + A_3

    Worked Example:

    Problem: A particle's velocity is given by v(t)=t2βˆ’4v(t) = t^2 - 4 m/s. Find the net displacement and the total distance traveled by the particle in the interval 0≀t≀30 \le t \le 3 seconds.

    Solution:

    Step 1: Calculate the net displacement.

    NetΒ Displacement=∫03(t2βˆ’4)dt\text{Net Displacement} = \int_{0}^{3} (t^2 - 4) dt
    =[t33βˆ’4t]03= \left[ \frac{t^3}{3} - 4t \right]_{0}^{3}
    =(333βˆ’4(3))βˆ’(033βˆ’4(0))= \left( \frac{3^3}{3} - 4(3) \right) - \left( \frac{0^3}{3} - 4(0) \right)
    =(9βˆ’12)βˆ’(0βˆ’0)= (9 - 12) - (0 - 0)
    =βˆ’3Β m= -3 \text{ m}

    Step 2: Calculate the total distance traveled.
    First, find when v(t)=0v(t) = 0 to identify if the particle changes direction within the interval.

    t2βˆ’4=0t^2 - 4 = 0
    t2=4t^2 = 4
    t=Β±2t = \pm 2

    Since t=2t=2 is within the interval [0,3][0, 3], the particle changes direction at t=2t=2.
    We need to split the integral into two parts and take the absolute value.

    TotalΒ Distance=∫03∣t2βˆ’4∣dt=∫02∣t2βˆ’4∣dt+∫23∣t2βˆ’4∣dt\text{Total Distance} = \int_{0}^{3} |t^2 - 4| dt = \int_{0}^{2} |t^2 - 4| dt + \int_{2}^{3} |t^2 - 4| dt

    For 0≀t<20 \le t < 2, t2βˆ’4t^2 - 4 is negative (e.g., v(1)=1βˆ’4=βˆ’3v(1) = 1-4 = -3). So ∣t2βˆ’4∣=βˆ’(t2βˆ’4)=4βˆ’t2|t^2 - 4| = -(t^2 - 4) = 4 - t^2.
    For 2<t≀32 < t \le 3, t2βˆ’4t^2 - 4 is positive (e.g., v(3)=9βˆ’4=5v(3) = 9-4 = 5). So ∣t2βˆ’4∣=t2βˆ’4|t^2 - 4| = t^2 - 4.

    TotalΒ Distance=∫02(4βˆ’t2)dt+∫23(t2βˆ’4)dt\text{Total Distance} = \int_{0}^{2} (4 - t^2) dt + \int_{2}^{3} (t^2 - 4) dt
    =[4tβˆ’t33]02+[t33βˆ’4t]23= \left[ 4t - \frac{t^3}{3} \right]_{0}^{2} + \left[ \frac{t^3}{3} - 4t \right]_{2}^{3}
    =(4(2)βˆ’233)βˆ’(0)+(333βˆ’4(3))βˆ’(233βˆ’4(2))= \left( 4(2) - \frac{2^3}{3} \right) - (0) + \left( \frac{3^3}{3} - 4(3) \right) - \left( \frac{2^3}{3} - 4(2) \right)
    =(8βˆ’83)+(9βˆ’12)βˆ’(83βˆ’8)= \left( 8 - \frac{8}{3} \right) + \left( 9 - 12 \right) - \left( \frac{8}{3} - 8 \right)
    =(24βˆ’83)+(βˆ’3)βˆ’(8βˆ’243)= \left( \frac{24 - 8}{3} \right) + (-3) - \left( \frac{8 - 24}{3} \right)
    =163βˆ’3βˆ’(βˆ’163)= \frac{16}{3} - 3 - \left( -\frac{16}{3} \right)
    =163βˆ’3+163= \frac{16}{3} - 3 + \frac{16}{3}
    =323βˆ’3= \frac{32}{3} - 3
    =32βˆ’93= \frac{32 - 9}{3}
    =233Β m= \frac{23}{3} \text{ m}

    Answer: The net displacement is βˆ’3-3 m, and the total distance traveled is 233\frac{23}{3} m.

    ---

    ---

    3. Applications in Circular Motion and Meeting Problems

    Integration plays a vital role in analyzing motion, especially in scenarios involving relative movement and meeting points on a circular track. When particles move on a circular track, their positions are often described by the distance covered along the circumference.

    Consider two particles moving on a circular track of circumference CC.

    * If they start at the same point and move in opposite directions:
    * They meet for the first time when the sum of the distances covered by them equals one circumference, CC.
    * They meet for the nn-th time when the sum of the distances covered by them equals nCnC.

    * If they start at the same point and move in the same direction:
    * They meet for the first time when the absolute difference of the distances covered by them equals one circumference, CC.
    * They meet for the nn-th time when the absolute difference of the distances covered by them equals nCnC.

    The distances covered by each particle can be found by integrating their respective velocity functions: s(t)=∫v(t)dts(t) = \int v(t) dt.

    ❗ Meeting on a Circular Track

    When two particles start from the same position on a circular track of circumference CC:

      • If they move in opposite directions, they meet for the nn-th time when the sum of their individual distances traveled, s1(t)+s2(t)s_1(t) + s_2(t), equals nCnC.

      • If they move in the same direction, they meet for the nn-th time when the absolute difference of their individual distances traveled, ∣s1(t)βˆ’s2(t)∣|s_1(t) - s_2(t)|, equals nCnC.

    Worked Example:

    Problem: Two runners start from the same point on a circular track of circumference 400400 m and run in opposite directions. Runner A maintains a constant speed of 88 m/s. Runner B starts from rest and accelerates at a constant rate of 11 m/s2^2. At what time will they meet for the first time?

    Solution:

    Step 1: Determine the distance functions for each runner.

    For Runner A (constant speed):
    Velocity vA(t)=8v_A(t) = 8 m/s.
    Distance sA(t)=∫8dt=8t+CAs_A(t) = \int 8 dt = 8t + C_{A}.
    Since they start at the same point (assume sA(0)=0s_A(0)=0), CA=0C_A = 0.
    So, sA(t)=8ts_A(t) = 8t.

    For Runner B (constant acceleration):
    Initial velocity vB(0)=0v_B(0) = 0 m/s.
    Acceleration aB(t)=1a_B(t) = 1 m/s2^2.
    Velocity vB(t)=∫aB(t)dt=∫1dt=t+CB1v_B(t) = \int a_B(t) dt = \int 1 dt = t + C_{B1}.
    Since vB(0)=0v_B(0)=0, CB1=0C_{B1} = 0.
    So, vB(t)=tv_B(t) = t.
    Distance sB(t)=∫vB(t)dt=∫tdt=12t2+CB2s_B(t) = \int v_B(t) dt = \int t dt = \frac{1}{2}t^2 + C_{B2}.
    Since they start at the same point (assume sB(0)=0s_B(0)=0), CB2=0C_{B2} = 0.
    So, sB(t)=12t2s_B(t) = \frac{1}{2}t^2.

    Step 2: Apply the meeting condition for opposite directions.
    For the first meeting, the sum of their distances equals the circumference C=400C = 400 m.

    sA(t)+sB(t)=Cs_A(t) + s_B(t) = C
    8t+12t2=4008t + \frac{1}{2}t^2 = 400

    Step 3: Solve the quadratic equation for tt.

    12t2+8tβˆ’400=0\frac{1}{2}t^2 + 8t - 400 = 0
    Multiply by 2 to clear the fraction:
    t2+16tβˆ’800=0t^2 + 16t - 800 = 0

    Using the quadratic formula t=βˆ’bΒ±b2βˆ’4ac2at = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}:

    t=βˆ’16Β±162βˆ’4(1)(βˆ’800)2(1)t = \frac{-16 \pm \sqrt{16^2 - 4(1)(-800)}}{2(1)}
    t=βˆ’16Β±256+32002t = \frac{-16 \pm \sqrt{256 + 3200}}{2}
    t=βˆ’16Β±34562t = \frac{-16 \pm \sqrt{3456}}{2}
    t=βˆ’16Β±58.7877...2t = \frac{-16 \pm 58.7877...}{2}

    Since time tt must be positive:

    t=βˆ’16+58.7877...2t = \frac{-16 + 58.7877...}{2}
    tβ‰ˆ42.78772t \approx \frac{42.7877}{2}
    tβ‰ˆ21.39Β st \approx 21.39 \text{ s}

    Answer: The runners will meet for the first time after approximately 21.3921.39 seconds.

    ---

    Problem-Solving Strategies

    πŸ’‘ CMI Strategy: Kinematics Problems

    • Identify Given Quantities: Clearly list initial velocity (v0v_0), initial position (s0s_0), and the acceleration function (a(t)a(t)) or velocity function (v(t)v(t)).

    • Integrate Systematically:

    • If given a(t)a(t), integrate once to get v(t)v(t), using v0v_0 to find the constant of integration.
      Integrate v(t)v(t) to get s(t)s(t), using s0s_0 to find the constant of integration.
    • Pay Attention to Keywords: "Displacement" implies ∫v(t)dt\int v(t) dt, while "total distance traveled" requires ∫∣v(t)∣dt\int |v(t)| dt.

    • Check Units: Ensure consistency in units throughout the problem (e.g., meters, seconds).

    πŸ’‘ CMI Strategy: Circular Track Meeting Problems

    • Model Individual Motions: For each particle, determine its distance function s(t)s(t) using integration from its given velocity or acceleration, incorporating initial conditions.

    • Determine Relative Motion Rule:

    • For opposite directions: s1(t)+s2(t)=nCs_1(t) + s_2(t) = nC (where nn is the meeting number).
      For same direction: ∣s1(t)βˆ’s2(t)∣=nC|s_1(t) - s_2(t)| = nC.
    • Solve for Time: Set up the equation based on the meeting rule and solve for tt. You might encounter quadratic equations; always choose the positive, realistic time value.

    • Verify Meeting Point (if asked): Once you have the time tt, substitute it back into s1(t)s_1(t) and s2(t)s_2(t) to find the distances covered. These distances, modulo CC, will indicate the meeting point. If they meet at the starting point A, then s1(t)s_1(t) and s2(t)s_2(t) must both be multiples of CC (if they are moving in the same direction) or their sum must be nCnC AND their individual displacements from A must be a multiple of C (if they are to return to A). A simpler interpretation for opposite direction: if they meet at A, then s1(t)s_1(t) must be a multiple of CC, and s2(t)s_2(t) must also be a multiple of CC.

    ---

    Common Mistakes

    ⚠️ Avoid These Errors
      • ❌ Forgetting Constants of Integration: Omitting the +C+C when performing indefinite integration, or failing to use initial conditions to determine its value. This leads to incorrect velocity and displacement functions.
    βœ… Always include the constant of integration (C1,C2C_1, C_2) and solve for its value using the given initial conditions (v(0),s(0)v(0), s(0)).
      • ❌ Confusing Net Displacement with Total Distance: Using ∫v(t)dt\int v(t) dt when the question asks for total distance traveled, especially if the velocity changes sign.
    βœ… Remember that ∫v(t)dt\int v(t) dt gives net displacement. For total distance, you must integrate ∣v(t)∣|v(t)|, splitting the interval at points where v(t)=0v(t)=0.
      • ❌ Incorrect Application of Circular Track Conditions: Misinterpreting the condition for meeting on a circular track (e.g., using difference instead of sum for opposite directions).
    βœ… Clearly identify if particles move in the same or opposite directions. For opposite directions, sum the distances (s1+s2=nCs_1+s_2=nC). For the same direction, take the absolute difference (∣s1βˆ’s2∣=nC|s_1-s_2|=nC).
      • ❌ Ignoring Physical Constraints: Calculating a negative time value and using it, or not considering the physical implications of meeting at a specific point on a track.
    βœ… Always check if your calculated time is positive and physically meaningful. For meeting at the starting point, the individual distances covered must be multiples of the circumference.

    ---

    Practice Questions

    :::question type="MCQ" question="A particle moves along the x-axis with velocity v(t)=3t2βˆ’12t+9v(t) = 3t^2 - 12t + 9 m/s. What is the net displacement of the particle between t=0t=0 and t=4t=4 seconds?" options=["0 m","4 m","8 m","12 m"] answer="4 m" hint="Integrate the velocity function over the given interval to find net displacement." solution="Step 1: Set up the definite integral for net displacement.

    NetΒ Displacement=∫04(3t2βˆ’12t+9)dt\text{Net Displacement} = \int_{0}^{4} (3t^2 - 12t + 9) dt

    Step 2: Find the antiderivative.

    =[t3βˆ’6t2+9t]04= \left[ t^3 - 6t^2 + 9t \right]_{0}^{4}

    Step 3: Evaluate the antiderivative at the limits.

    =(43βˆ’6(42)+9(4))βˆ’(03βˆ’6(02)+9(0))= (4^3 - 6(4^2) + 9(4)) - (0^3 - 6(0^2) + 9(0))

    =(64βˆ’6(16)+36)βˆ’0= (64 - 6(16) + 36) - 0

    =64βˆ’96+36= 64 - 96 + 36

    =100βˆ’96= 100 - 96

    =4= 4

    The net displacement is 4 m.
    Answer: \boxed{4 \text{ m}}
    "
    :::

    :::question type="NAT" question="A car accelerates from rest with an acceleration function a(t)=2t+4a(t) = 2t + 4 m/s2^2. What is the distance covered by the car in the first 3 seconds? (Assume s(0)=0s(0)=0 and v(0)=0v(0)=0)" answer="27" hint="First, integrate acceleration to find velocity. Then, integrate velocity to find displacement. Since acceleration is always positive, velocity will be always positive, so displacement equals total distance." solution="Step 1: Find the velocity function v(t)v(t) by integrating a(t)a(t).

    v(t)=∫(2t+4)dt=t2+4t+C1v(t) = \int (2t + 4) dt = t^2 + 4t + C_1

    Given v(0)=0v(0) = 0:
    02+4(0)+C1=0β‡’C1=00^2 + 4(0) + C_1 = 0 \Rightarrow C_1 = 0

    So, v(t)=t2+4tv(t) = t^2 + 4t.

    Step 2: Find the displacement function s(t)s(t) by integrating v(t)v(t).

    s(t)=∫(t2+4t)dt=t33+4t22+C2=t33+2t2+C2s(t) = \int (t^2 + 4t) dt = \frac{t^3}{3} + \frac{4t^2}{2} + C_2 = \frac{t^3}{3} + 2t^2 + C_2

    Given s(0)=0s(0) = 0:
    033+2(0)2+C2=0β‡’C2=0\frac{0^3}{3} + 2(0)^2 + C_2 = 0 \Rightarrow C_2 = 0

    So, s(t)=t33+2t2s(t) = \frac{t^3}{3} + 2t^2.

    Step 3: Calculate the distance covered at t=3t=3 seconds. Since v(t)=t2+4tv(t) = t^2+4t is always positive for tβ‰₯0t \ge 0, the displacement is equal to the total distance.

    s(3)=333+2(32)s(3) = \frac{3^3}{3} + 2(3^2)

    s(3)=273+2(9)s(3) = \frac{27}{3} + 2(9)

    s(3)=9+18s(3) = 9 + 18

    s(3)=27s(3) = 27

    The distance covered is 27 m.
    Answer: \boxed{27 \text{ m}}
    "
    :::

    :::question type="SUB" question="Two particles, P1 and P2, start simultaneously from the same point on a straight line. P1 moves with a constant velocity of 55 m/s. P2 starts from rest and has an acceleration given by a2(t)=65ta_2(t) = \frac{6}{5}t m/s2^2.
    (a) Find the time when P2 overtakes P1.
    (b) What is the total distance each particle has traveled at that time?" answer="Time: 5s, P1 distance: 25m, P2 distance: 25m" hint="Set up displacement functions for both particles. For overtaking, their displacements must be equal. For total distance, consider if velocity changes sign." solution="Part (a): Find the time when P2 overtakes P1.

    Step 1: Determine the displacement function for P1.
    Given v1(t)=5v_1(t) = 5 m/s (constant).
    Assuming s1(0)=0s_1(0) = 0.

    s1(t)=∫5dt=5t+C1s_1(t) = \int 5 dt = 5t + C_1

    Since s1(0)=0s_1(0) = 0, C1=0C_1 = 0.
    So, s1(t)=5ts_1(t) = 5t.

    Step 2: Determine the displacement function for P2.
    Given a2(t)=65ta_2(t) = \frac{6}{5}t m/s2^2.
    Given v2(0)=0v_2(0) = 0 and s2(0)=0s_2(0) = 0.
    First, find v2(t)v_2(t):

    v2(t)=∫a2(t)dt=∫65tdt=35t2+C2vv_2(t) = \int a_2(t) dt = \int \frac{6}{5}t dt = \frac{3}{5}t^2 + C_{2v}

    Since v2(0)=0v_2(0) = 0: 35(0)2+C2v=0β‡’C2v=0\frac{3}{5}(0)^2 + C_{2v} = 0 \Rightarrow C_{2v} = 0.
    So, v2(t)=35t2v_2(t) = \frac{3}{5}t^2.
    Next, find s2(t)s_2(t):
    s2(t)=∫v2(t)dt=∫35t2dt=15t3+C2ss_2(t) = \int v_2(t) dt = \int \frac{3}{5}t^2 dt = \frac{1}{5}t^3 + C_{2s}

    Since s2(0)=0s_2(0) = 0: 15(0)3+C2s=0β‡’C2s=0\frac{1}{5}(0)^3 + C_{2s} = 0 \Rightarrow C_{2s} = 0.
    So, s2(t)=15t3s_2(t) = \frac{1}{5}t^3.

    Step 3: Set their displacements equal to find when P2 overtakes P1.
    P2 overtakes P1 when s1(t)=s2(t)s_1(t) = s_2(t) for t>0t>0.

    5t=15t35t = \frac{1}{5}t^3

    25t=t325t = t^3

    t3βˆ’25t=0t^3 - 25t = 0

    t(t2βˆ’25)=0t(t^2 - 25) = 0

    The solutions are t=0t=0, t=5t=5, and t=βˆ’5t=-5.
    Since they start at the same point at t=0t=0, the overtaking happens at t=5t = 5 seconds.

    Part (b): What is the total distance each particle has traveled at that time?

    Step 4: Calculate distance for P1 at t=5t=5.
    Since v1(t)=5v_1(t) = 5 (always positive), displacement = total distance.

    s1(5)=5(5)=25Β ms_1(5) = 5(5) = 25 \text{ m}

    Step 5: Calculate distance for P2 at t=5t=5.
    Since v2(t)=35t2v_2(t) = \frac{3}{5}t^2 (always positive for tβ‰₯0t \ge 0), displacement = total distance.

    s2(5)=15(5)3=1255=25Β ms_2(5) = \frac{1}{5}(5)^3 = \frac{125}{5} = 25 \text{ m}

    Answer: \boxed{\text{Time: } 5\text{s, P1 distance: } 25\text{m, P2 distance: } 25\text{m}}
    "
    :::

    :::question type="MSQ" question="A particle's velocity is given by v(t)=6tβˆ’t2v(t) = 6t - t^2 m/s. Which of the following statements are correct for the interval 0≀t≀80 \le t \le 8 seconds?" options=["The particle momentarily stops at t=6t=6 seconds.","The net displacement from t=0t=0 to t=8t=8 is 64/364/3 m.","The total distance traveled from t=0t=0 to t=8t=8 is 6464 m.","The particle returns to its starting position at t=6t=6 seconds."] answer="A,B" hint="Analyze v(t)v(t) for roots. Integrate v(t)v(t) for net displacement. Integrate ∣v(t)∣|v(t)| for total distance." solution="Statement A: The particle momentarily stops when v(t)=0v(t)=0.

    6tβˆ’t2=06t - t^2 = 0

    t(6βˆ’t)=0t(6 - t) = 0

    So, t=0t=0 or t=6t=6. Thus, the particle momentarily stops at t=6t=6 seconds. Statement A is correct.

    Statement B: Calculate the net displacement from t=0t=0 to t=8t=8.

    NetΒ Displacement=∫08(6tβˆ’t2)dt\text{Net Displacement} = \int_{0}^{8} (6t - t^2) dt

    =[3t2βˆ’t33]08= \left[ 3t^2 - \frac{t^3}{3} \right]_{0}^{8}

    =(3(82)βˆ’833)βˆ’(0)= \left( 3(8^2) - \frac{8^3}{3} \right) - (0)

    =(192βˆ’5123)= \left( 192 - \frac{512}{3} \right)

    =576βˆ’5123= \frac{576 - 512}{3}

    =643Β m= \frac{64}{3} \text{ m}

    Statement B is correct.

    Statement C: Calculate the total distance traveled from t=0t=0 to t=8t=8.
    The velocity v(t)=6tβˆ’t2v(t) = 6t - t^2 changes sign at t=6t=6.
    For 0≀t≀60 \le t \le 6, v(t)β‰₯0v(t) \ge 0.
    For 6<t≀86 < t \le 8, v(t)<0v(t) < 0.

    TotalΒ Distance=∫06(6tβˆ’t2)dt+∫68∣6tβˆ’t2∣dt\text{Total Distance} = \int_{0}^{6} (6t - t^2) dt + \int_{6}^{8} |6t - t^2| dt

    =∫06(6tβˆ’t2)dt+∫68βˆ’(6tβˆ’t2)dt= \int_{0}^{6} (6t - t^2) dt + \int_{6}^{8} -(6t - t^2) dt

    =[3t2βˆ’t33]06+[t33βˆ’3t2]68= \left[ 3t^2 - \frac{t^3}{3} \right]_{0}^{6} + \left[ \frac{t^3}{3} - 3t^2 \right]_{6}^{8}

    First part:
    (3(62)βˆ’633)βˆ’(0)=(3(36)βˆ’2163)=(108βˆ’72)=36\left( 3(6^2) - \frac{6^3}{3} \right) - (0) = (3(36) - \frac{216}{3}) = (108 - 72) = 36

    Second part:
    (833βˆ’3(82))βˆ’(633βˆ’3(62))\left( \frac{8^3}{3} - 3(8^2) \right) - \left( \frac{6^3}{3} - 3(6^2) \right)

    =(5123βˆ’192)βˆ’(2163βˆ’108)= \left( \frac{512}{3} - 192 \right) - \left( \frac{216}{3} - 108 \right)

    =(512βˆ’5763)βˆ’(72βˆ’108)= \left( \frac{512 - 576}{3} \right) - (72 - 108)

    =(βˆ’643)βˆ’(βˆ’36)= \left( -\frac{64}{3} \right) - (-36)

    =βˆ’643+36=βˆ’64+1083=443= -\frac{64}{3} + 36 = \frac{-64 + 108}{3} = \frac{44}{3}

    Total Distance = 36 + \frac{44}{3} = \frac{108 + 44}{3} = \frac{152}{3} \text{ m} <div class="math-display"><span class="katex-error" title="ParseError: KaTeX parse error: Can & #x27;t use function & #x27;' in math mode at position 7: Since Μ²152/3 \ne 64, …" style="color:#cc0000">Since 152/3β‰ 64152/3 \ne 64, statement C is incorrect.

    Statement D: The particle returns to its starting position when its net displacement from t=0t=0 is 0.
    The net displacement at t=6t=6 is:

    \int_{0}^{6} (6t - t^2) dt = 36 \text{ m}
    &#x27; in math mode at position 27: …isplacement isΜ²36m, it does …" style="color:#cc0000">Since the displacement is36m,itdoesnotreturntoitsstartingpositionatm, it does not return to its starting position att=6$ seconds. Statement D is incorrect.

    Therefore, the correct statements are A and B.
    Answer: \boxed{\text{A, B}}
    "
    :::

    :::question type="MCQ" question="A circular track has a circumference of 300300 meters. Two cyclists, A and B, start from the same point and ride in opposite directions. Cyclist A maintains a constant speed of 1515 m/s. Cyclist B's velocity is given by vB(t)=3tv_B(t) = 3t m/s. What is the distance covered by Cyclist A when they meet for the first time after t=0t=0?" options=["150 m","200 m","300 m","450 m"] answer="150 m" hint="First, find the time of their first meeting by equating the sum of their distances to the circumference. Then, calculate Cyclist A's distance using that time." solution="Step 1: Determine the distance functions for each cyclist.
    For Cyclist A (constant speed):
    vA(t)=15v_A(t) = 15 m/s.
    Assuming sA(0)=0s_A(0)=0, sA(t)=15ts_A(t) = 15t.

    For Cyclist B:
    vB(t)=3tv_B(t) = 3t m/s.
    Assuming sB(0)=0s_B(0)=0,

    s_B(t) = \int 3t dt = \frac{3}{2}t^2 + C_B
    &#x27; in math mode at position 7: SinceΜ²s_B(0)=0,,C_B…" style="color:#cc0000">Since sB(0)=0s_B(0)=0, CB=0C_B=0.
    So, sB(t)=32t2s_B(t) = \frac{3}{2}t^2.

    Step 2: Apply the meeting condition for opposite directions.
    For the first meeting, the sum of their distances equals the circumference C=300C = 300 m.

    s_A(t) + s_B(t) = 300
    15t + \frac{3}{2}t^2 = 300
    &#x27; in math mode at position 42: …c equation forΜ²t." style="color:#cc0000">Step 3: Solve the quadratic equation fort.</span></div> \frac{3}{2}t^2 + 15t - 300 = 0 <div class="math-display"><span class="katex-error" title="ParseError: KaTeX parse error: Can & #x27;t use function & #x27;' in math mode at position 13: Multiply by Μ²\frac{2}{3} to…" style="color:#cc0000">Multiply by 23\frac{2}{3} to simplify:
    t^2 + 10t - 200 = 0
    &#x27; in math mode at position 29: …dratic formulaΜ²t = \frac{-b \p…" style="color:#cc0000">Using the quadratic formula t=βˆ’bΒ±b2βˆ’4ac2at = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}:
    t = \frac{-10 \pm \sqrt{10^2 - 4(1)(-200)}}{2(1)}
    t = \frac{-10 \pm \sqrt{100 + 800}}{2}
    t = \frac{-10 \pm \sqrt{900}}{2}
    t = \frac{-10 \pm 30}{2}
    &#x27; in math mode at position 12: Since timeΜ²tmust be posi…" style="color:#cc0000">Since timetmust be positive:</span></div> t = \frac{-10 + 30}{2} = \frac{20}{2} = 10 \text{ s} <div class="math-display"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><mi>S</mi><mi>t</mi><mi>e</mi><mi>p</mi><mn>4</mn><mo>:</mo><mi>C</mi><mi>a</mi><mi>l</mi><mi>c</mi><mi>u</mi><mi>l</mi><mi>a</mi><mi>t</mi><mi>e</mi><mi>t</mi><mi>h</mi><mi>e</mi><mi>d</mi><mi>i</mi><mi>s</mi><mi>t</mi><mi>a</mi><mi>n</mi><mi>c</mi><mi>e</mi><mi>c</mi><mi>o</mi><mi>v</mi><mi>e</mi><mi>r</mi><mi>e</mi><mi>d</mi><mi>b</mi><mi>y</mi><mi>C</mi><mi>y</mi><mi>c</mi><mi>l</mi><mi>i</mi><mi>s</mi><mi>t</mi><mi>A</mi><mi>a</mi><mi>t</mi><mi>t</mi><mi>h</mi><mi>i</mi><mi>s</mi><mi>t</mi><mi>i</mi><mi>m</mi><mi>e</mi><mi mathvariant="normal">.</mi></mrow><annotation encoding="application/x-tex">Step 4: Calculate the distance covered by Cyclist A at this time.</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.8778em;vertical-align:-0.1944em;"></span><span class="mord mathnormal" style="margin-right:0.05764em;">S</span><span class="mord mathnormal">t</span><span class="mord mathnormal">e</span><span class="mord mathnormal">p</span><span class="mord">4</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">:</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="base"><span class="strut" style="height:0.8889em;vertical-align:-0.1944em;"></span><span class="mord mathnormal" style="margin-right:0.07153em;">C</span><span class="mord mathnormal">a</span><span class="mord mathnormal" style="margin-right:0.01968em;">l</span><span class="mord mathnormal">c</span><span class="mord mathnormal">u</span><span class="mord mathnormal" style="margin-right:0.01968em;">l</span><span class="mord mathnormal">a</span><span class="mord mathnormal">t</span><span class="mord mathnormal">e</span><span class="mord mathnormal">t</span><span class="mord mathnormal">h</span><span class="mord mathnormal">e</span><span class="mord mathnormal">d</span><span class="mord mathnormal">i</span><span class="mord mathnormal">s</span><span class="mord mathnormal">t</span><span class="mord mathnormal">an</span><span class="mord mathnormal">ceco</span><span class="mord mathnormal" style="margin-right:0.03588em;">v</span><span class="mord mathnormal" style="margin-right:0.02778em;">er</span><span class="mord mathnormal">e</span><span class="mord mathnormal">d</span><span class="mord mathnormal">b</span><span class="mord mathnormal" style="margin-right:0.03588em;">y</span><span class="mord mathnormal" style="margin-right:0.07153em;">C</span><span class="mord mathnormal" style="margin-right:0.03588em;">y</span><span class="mord mathnormal">c</span><span class="mord mathnormal" style="margin-right:0.01968em;">l</span><span class="mord mathnormal">i</span><span class="mord mathnormal">s</span><span class="mord mathnormal">t</span><span class="mord mathnormal">A</span><span class="mord mathnormal">a</span><span class="mord mathnormal">tt</span><span class="mord mathnormal">hi</span><span class="mord mathnormal">s</span><span class="mord mathnormal">t</span><span class="mord mathnormal">im</span><span class="mord mathnormal">e</span><span class="mord">.</span></span></span></span></span></div> s_A(t) = 15t <div class="math-display"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow></mrow><annotation encoding="application/x-tex"></annotation></semantics></math></span><span class="katex-html" aria-hidden="true"></span></span></span></div> s_A(10) = 15(10) = 150 \text{ m} <div class="math-display"><span class="katex-error" title="ParseError: KaTeX parse error: Can & #x27;t use function & #x27;' in math mode at position 153: …on is given by $Μ²a(t) = 12t^2 - …" style="color:#cc0000">The distance covered by Cyclist A is 150 m.
    Answer: \boxed{150 \text{ m}}
    "
    :::

    :::question type="NAT" question="A particle's acceleration is given by a(t)=12t2βˆ’6ta(t) = 12t^2 - 6t m/s2^2. If the particle's initial velocity is v(0)=3v(0) = 3 m/s and its initial position is s(0)=0s(0) = 0 m, what is its velocity at t=1t=1 second?" answer="4" hint="Integrate the acceleration function to find the velocity function, then use the initial velocity to find the constant of integration. Finally, substitute t=1t=1 into the velocity function." solution="Step 1: Find the velocity function v(t)v(t) by integrating a(t)a(t).

    v(t) = \int (12t^2 - 6t) dt
    v(t) = 4t^3 - 3t^2 + C_1
    &#x27; in math mode at position 52: …dition to findΜ²C_1$.
    Given v(…" style="color:#cc0000">Step 2: Use the initial velocity condition to findC_1$.
    Given v(0)=3v(0) = 3 m/s.
    v(0) = 4(0)^3 - 3(0)^2 + C_1 = 3
    C_1 = 3
    So,thevelocityfunctionis:So, the velocity function is:
    v(t) = 4t^3 - 3t^2 + 3
    &#x27; in math mode at position 35: …he velocity atΜ²t=1second." style="color:#cc0000">Step 3: Calculate the velocity att=1second.</span></div> v(1) = 4(1)^3 - 3(1)^2 + 3 <div class="math-display"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow></mrow><annotation encoding="application/x-tex"></annotation></semantics></math></span><span class="katex-html" aria-hidden="true"></span></span></span></div> v(1) = 4 - 3 + 3 <div class="math-display"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow></mrow><annotation encoding="application/x-tex"></annotation></semantics></math></span><span class="katex-html" aria-hidden="true"></span></span></span></div> v(1) = 4 <div class="math-display"><span class="katex-error" title="ParseError: KaTeX parse error: Can & #x27;t use function & #x27;' in math mode at position 17: …he velocity at Μ²t=1 second is …" style="color:#cc0000">The velocity at t=1t=1 second is 4 m/s.
    Answer: \boxed{4 \text{ m/s}}
    "
    :::

    ---

    Summary

    <div class="callout-box my-4 p-4 rounded-lg border bg-red-500/10 border-red-500/30">
    <div class="flex items-center gap-2 font-semibold mb-2">
    <span>❗</span>
    <span>Key Takeaways for CMI</span>
    </div>
    <div class="prose prose-sm max-w-none"><p><li> <strong>Integration as Accumulation:</strong> Integration is used to find the total quantity or accumulated change from a known rate of change.</li><br><li> <strong>Kinematic Relationships:</strong> Velocity <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>v</mi><mo stretchy="false">(</mo><mi>t</mi><mo stretchy="false">)</mo></mrow><annotation encoding="application/x-tex">v(t)</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal" style="margin-right:0.03588em;">v</span><span class="mopen">(</span><span class="mord mathnormal">t</span><span class="mclose">)</span></span></span></span></span> is the integral of acceleration <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>a</mi><mo stretchy="false">(</mo><mi>t</mi><mo stretchy="false">)</mo></mrow><annotation encoding="application/x-tex">a(t)</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal">a</span><span class="mopen">(</span><span class="mord mathnormal">t</span><span class="mclose">)</span></span></span></span></span>, and displacement <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>s</mi><mo stretchy="false">(</mo><mi>t</mi><mo stretchy="false">)</mo></mrow><annotation encoding="application/x-tex">s(t)</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal">s</span><span class="mopen">(</span><span class="mord mathnormal">t</span><span class="mclose">)</span></span></span></span></span> is the integral of velocity <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>v</mi><mo stretchy="false">(</mo><mi>t</mi><mo stretchy="false">)</mo></mrow><annotation encoding="application/x-tex">v(t)</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal" style="margin-right:0.03588em;">v</span><span class="mopen">(</span><span class="mord mathnormal">t</span><span class="mclose">)</span></span></span></span></span>. Always use initial conditions to determine constants of integration.</li><br> <div class="math-display"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><mi>v</mi><mo stretchy="false">(</mo><mi>t</mi><mo stretchy="false">)</mo><mo>=</mo><mo>∫</mo><mi>a</mi><mo stretchy="false">(</mo><mi>t</mi><mo stretchy="false">)</mo><mi>d</mi><mi>t</mi><mo>+</mo><msub><mi>v</mi><mn>0</mn></msub></mrow><annotation encoding="application/x-tex">v(t) = \int a(t) dt + v_0</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal" style="margin-right:0.03588em;">v</span><span class="mopen">(</span><span class="mord mathnormal">t</span><span class="mclose">)</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="base"><span class="strut" style="height:2.2222em;vertical-align:-0.8622em;"></span><span class="mop op-symbol large-op" style="margin-right:0.44445em;position:relative;top:-0.0011em;">∫</span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal">a</span><span class="mopen">(</span><span class="mord mathnormal">t</span><span class="mclose">)</span><span class="mord mathnormal">d</span><span class="mord mathnormal">t</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="base"><span class="strut" style="height:0.5806em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.03588em;">v</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3011em;"><span style="top:-2.55em;margin-left:-0.0359em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight">0</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span></span></div><br> <div class="math-display"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><mi>s</mi><mo stretchy="false">(</mo><mi>t</mi><mo stretchy="false">)</mo><mo>=</mo><mo>∫</mo><mi>v</mi><mo stretchy="false">(</mo><mi>t</mi><mo stretchy="false">)</mo><mi>d</mi><mi>t</mi><mo>+</mo><msub><mi>s</mi><mn>0</mn></msub></mrow><annotation encoding="application/x-tex">s(t) = \int v(t) dt + s_0</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal">s</span><span class="mopen">(</span><span class="mord mathnormal">t</span><span class="mclose">)</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="base"><span class="strut" style="height:2.2222em;vertical-align:-0.8622em;"></span><span class="mop op-symbol large-op" style="margin-right:0.44445em;position:relative;top:-0.0011em;">∫</span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal" style="margin-right:0.03588em;">v</span><span class="mopen">(</span><span class="mord mathnormal">t</span><span class="mclose">)</span><span class="mord mathnormal">d</span><span class="mord mathnormal">t</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="base"><span class="strut" style="height:0.5806em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord mathnormal">s</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3011em;"><span style="top:-2.55em;margin-left:0em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight">0</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span></span></div><br><li> <strong>Displacement vs. Total Distance:</strong></li><br> Net Displacement: <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msubsup><mo>∫</mo><msub><mi>t</mi><mn>1</mn></msub><msub><mi>t</mi><mn>2</mn></msub></msubsup><mi>v</mi><mo stretchy="false">(</mo><mi>t</mi><mo stretchy="false">)</mo><mi>d</mi><mi>t</mi></mrow><annotation encoding="application/x-tex">\int_{t_1}^{t_2} v(t) dt</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1.4444em;vertical-align:-0.4559em;"></span><span class="mop"><span class="mop op-symbol small-op" style="margin-right:0.19445em;position:relative;top:-0.0006em;">∫</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.9885em;"><span style="top:-2.3442em;margin-left:-0.1945em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight"><span class="mord mathnormal mtight">t</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3173em;"><span style="top:-2.357em;margin-left:0em;margin-right:0.0714em;"><span class="pstrut" style="height:2.5em;"></span><span class="sizing reset-size3 size1 mtight"><span class="mord mtight">1</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.143em;"><span></span></span></span></span></span></span></span></span></span><span style="top:-3.2579em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight"><span class="mord mathnormal mtight">t</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3173em;"><span style="top:-2.357em;margin-left:0em;margin-right:0.0714em;"><span class="pstrut" style="height:2.5em;"></span><span class="sizing reset-size3 size1 mtight"><span class="mord mtight">2</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.143em;"><span></span></span></span></span></span></span></span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.4559em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal" style="margin-right:0.03588em;">v</span><span class="mopen">(</span><span class="mord mathnormal">t</span><span class="mclose">)</span><span class="mord mathnormal">d</span><span class="mord mathnormal">t</span></span></span></span></span> (can be negative or zero).<br> Total Distance: <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msubsup><mo>∫</mo><msub><mi>t</mi><mn>1</mn></msub><msub><mi>t</mi><mn>2</mn></msub></msubsup><mi mathvariant="normal">∣</mi><mi>v</mi><mo stretchy="false">(</mo><mi>t</mi><mo stretchy="false">)</mo><mi mathvariant="normal">∣</mi><mi>d</mi><mi>t</mi></mrow><annotation encoding="application/x-tex">\int_{t_1}^{t_2} |v(t)| dt</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1.4444em;vertical-align:-0.4559em;"></span><span class="mop"><span class="mop op-symbol small-op" style="margin-right:0.19445em;position:relative;top:-0.0006em;">∫</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.9885em;"><span style="top:-2.3442em;margin-left:-0.1945em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight"><span class="mord mathnormal mtight">t</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3173em;"><span style="top:-2.357em;margin-left:0em;margin-right:0.0714em;"><span class="pstrut" style="height:2.5em;"></span><span class="sizing reset-size3 size1 mtight"><span class="mord mtight">1</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.143em;"><span></span></span></span></span></span></span></span></span></span><span style="top:-3.2579em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight"><span class="mord mathnormal mtight">t</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3173em;"><span style="top:-2.357em;margin-left:0em;margin-right:0.0714em;"><span class="pstrut" style="height:2.5em;"></span><span class="sizing reset-size3 size1 mtight"><span class="mord mtight">2</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.143em;"><span></span></span></span></span></span></span></span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.4559em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord">∣</span><span class="mord mathnormal" style="margin-right:0.03588em;">v</span><span class="mopen">(</span><span class="mord mathnormal">t</span><span class="mclose">)</span><span class="mord">∣</span><span class="mord mathnormal">d</span><span class="mord mathnormal">t</span></span></span></span></span> (always non-negative, requires splitting integral if <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>v</mi><mo stretchy="false">(</mo><mi>t</mi><mo stretchy="false">)</mo></mrow><annotation encoding="application/x-tex">v(t)</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal" style="margin-right:0.03588em;">v</span><span class="mopen">(</span><span class="mord mathnormal">t</span><span class="mclose">)</span></span></span></span></span> changes sign).<br><li> <strong>Circular Track Meeting Conditions:</strong> For particles starting at the same point on a track of circumference <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>C</mi></mrow><annotation encoding="application/x-tex">C</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.6833em;"></span><span class="mord mathnormal" style="margin-right:0.07153em;">C</span></span></span></span></span>:</li><br> Opposite directions: <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mi>s</mi><mn>1</mn></msub><mo stretchy="false">(</mo><mi>t</mi><mo stretchy="false">)</mo><mo>+</mo><msub><mi>s</mi><mn>2</mn></msub><mo stretchy="false">(</mo><mi>t</mi><mo stretchy="false">)</mo><mo>=</mo><mi>n</mi><mi>C</mi></mrow><annotation encoding="application/x-tex">s_1(t) + s_2(t) = nC</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord"><span class="mord mathnormal">s</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3011em;"><span style="top:-2.55em;margin-left:0em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight">1</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mopen">(</span><span class="mord mathnormal">t</span><span class="mclose">)</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord"><span class="mord mathnormal">s</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3011em;"><span style="top:-2.55em;margin-left:0em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight">2</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mopen">(</span><span class="mord mathnormal">t</span><span class="mclose">)</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="base"><span class="strut" style="height:0.6833em;"></span><span class="mord mathnormal">n</span><span class="mord mathnormal" style="margin-right:0.07153em;">C</span></span></span></span></span> for the <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>n</mi></mrow><annotation encoding="application/x-tex">n</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.4306em;"></span><span class="mord mathnormal">n</span></span></span></span></span>-th meeting.<br> Same direction: <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi mathvariant="normal">∣</mi><msub><mi>s</mi><mn>1</mn></msub><mo stretchy="false">(</mo><mi>t</mi><mo stretchy="false">)</mo><mo>βˆ’</mo><msub><mi>s</mi><mn>2</mn></msub><mo stretchy="false">(</mo><mi>t</mi><mo stretchy="false">)</mo><mi mathvariant="normal">∣</mi><mo>=</mo><mi>n</mi><mi>C</mi></mrow><annotation encoding="application/x-tex">|s_1(t) - s_2(t)| = nC</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord">∣</span><span class="mord"><span class="mord mathnormal">s</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3011em;"><span style="top:-2.55em;margin-left:0em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight">1</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mopen">(</span><span class="mord mathnormal">t</span><span class="mclose">)</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">βˆ’</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord"><span class="mord mathnormal">s</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3011em;"><span style="top:-2.55em;margin-left:0em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight">2</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mopen">(</span><span class="mord mathnormal">t</span><span class="mclose">)</span><span class="mord">∣</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="base"><span class="strut" style="height:0.6833em;"></span><span class="mord mathnormal">n</span><span class="mord mathnormal" style="margin-right:0.07153em;">C</span></span></span></span></span> for the <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>n</mi></mrow><annotation encoding="application/x-tex">n</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.4306em;"></span><span class="mord mathnormal">n</span></span></span></span></span>-th meeting.</p></div>
    </div>

    ---

    What's Next?

    <div class="callout-box my-4 p-4 rounded-lg border bg-green-500/10 border-green-500/30">
    <div class="flex items-center gap-2 font-semibold mb-2">
    <span>πŸ’‘</span>
    <span>Continue Learning</span>
    </div>
    <div class="prose prose-sm max-w-none"><p>This topic connects to:<br><ul><li> <strong>Differential Equations</strong>: Many real-world problems involving rates of change naturally lead to differential equations. Solving these often involves integration techniques, which are foundational for understanding dynamic systems in data science.</li><br><li> <strong>Multivariable Calculus</strong>: The concept of integration extends to higher dimensions for calculating volumes, surface areas, and quantities like work done by forces. This is vital for advanced data analysis, machine learning (e.g., optimization in higher dimensions), and physics-based simulations.</li><br><li> <strong>Probability and Statistics</strong>: Integration is indispensable for continuous probability distributions. Calculating the probability of an event within a range for a continuous random variable involves integrating its probability density function (PDF) over that range.</li><br></ul><br>Master these connections for comprehensive CMI preparation!</p></div>
    </div>

    ---

    ---

    Chapter Summary

    <div class="callout-box my-4 p-4 rounded-lg border bg-blue-500/10 border-blue-500/30">
    <div class="flex items-center gap-2 font-semibold mb-2">
    <span>πŸ“–</span>
    <span>Integration and its Applications - Key Takeaways</span>
    </div>
    <div class="prose prose-sm max-w-none"><p>Here are the 6 most important points from this chapter that you must master for CMI:</p>
    <p><li> <strong>Fundamental Theorem of Calculus (FTC):</strong> Understand both parts. The first part (<span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msup><mi>F</mi><mo mathvariant="normal" lspace="0em" rspace="0em">β€²</mo></msup><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>=</mo><mi>f</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo></mrow><annotation encoding="application/x-tex">F & #x27;(x) = f(x)</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1.0019em;vertical-align:-0.25em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.13889em;">F</span><span class="msupsub"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.7519em;"><span style="top:-3.063em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight">β€²</span></span></span></span></span></span></span></span></span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mclose">)</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal" style="margin-right:0.10764em;">f</span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mclose">)</span></span></span></span></span> if <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>F</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>=</mo><msubsup><mo>∫</mo><mi>a</mi><mi>x</mi></msubsup><mi>f</mi><mo stretchy="false">(</mo><mi>t</mi><mo stretchy="false">)</mo><mi>d</mi><mi>t</mi></mrow><annotation encoding="application/x-tex">F(x) = \int_a^x f(t) dt</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal" style="margin-right:0.13889em;">F</span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mclose">)</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="base"><span class="strut" style="height:1.2151em;vertical-align:-0.3558em;"></span><span class="mop"><span class="mop op-symbol small-op" style="margin-right:0.19445em;position:relative;top:-0.0006em;">∫</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.8593em;"><span style="top:-2.3442em;margin-left:-0.1945em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">a</span></span></span><span style="top:-3.2579em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">x</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.3558em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal" style="margin-right:0.10764em;">f</span><span class="mopen">(</span><span class="mord mathnormal">t</span><span class="mclose">)</span><span class="mord mathnormal">d</span><span class="mord mathnormal">t</span></span></span></span></span>) establishes the inverse relationship between differentiation and integration. The second part (<span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msubsup><mo>∫</mo><mi>a</mi><mi>b</mi></msubsup><mi>f</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mi>d</mi><mi>x</mi><mo>=</mo><mi>F</mi><mo stretchy="false">(</mo><mi>b</mi><mo stretchy="false">)</mo><mo>βˆ’</mo><mi>F</mi><mo stretchy="false">(</mo><mi>a</mi><mo stretchy="false">)</mo></mrow><annotation encoding="application/x-tex">\int_a^b f(x) dx = F(b) - F(a)</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1.3998em;vertical-align:-0.3558em;"></span><span class="mop"><span class="mop op-symbol small-op" style="margin-right:0.19445em;position:relative;top:-0.0006em;">∫</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.044em;"><span style="top:-2.3442em;margin-left:-0.1945em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">a</span></span></span><span style="top:-3.2579em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">b</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.3558em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal" style="margin-right:0.10764em;">f</span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mclose">)</span><span class="mord mathnormal">d</span><span class="mord mathnormal">x</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal" style="margin-right:0.13889em;">F</span><span class="mopen">(</span><span class="mord mathnormal">b</span><span class="mclose">)</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">βˆ’</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal" style="margin-right:0.13889em;">F</span><span class="mopen">(</span><span class="mord mathnormal">a</span><span class="mclose">)</span></span></span></span></span> where <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msup><mi>F</mi><mo mathvariant="normal" lspace="0em" rspace="0em">β€²</mo></msup><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>=</mo><mi>f</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo></mrow><annotation encoding="application/x-tex">F & #x27;(x)=f(x)</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1.0019em;vertical-align:-0.25em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.13889em;">F</span><span class="msupsub"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.7519em;"><span style="top:-3.063em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight">β€²</span></span></span></span></span></span></span></span></span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mclose">)</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal" style="margin-right:0.10764em;">f</span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mclose">)</span></span></span></span></span>) provides the primary method for evaluating definite integrals.</li><br><li> <strong>Mastering Integration Techniques:</strong> Be proficient in substitution, integration by parts (and its tabular form for repeated applications), partial fractions, and recognizing standard integral forms (e.g., <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>∫</mo><mfrac><mrow><mi>d</mi><mi>x</mi></mrow><mrow><msup><mi>a</mi><mn>2</mn></msup><mo>+</mo><msup><mi>x</mi><mn>2</mn></msup></mrow></mfrac></mrow><annotation encoding="application/x-tex">\int \frac{dx}{a^2+x^2}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1.2834em;vertical-align:-0.4033em;"></span><span class="mop op-symbol small-op" style="margin-right:0.19445em;position:relative;top:-0.0006em;">∫</span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.8801em;"><span style="top:-2.655em;"><span class="pstrut" style="height:3em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight"><span class="mord mathnormal mtight">a</span><span class="msupsub"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.7463em;"><span style="top:-2.786em;margin-right:0.0714em;"><span class="pstrut" style="height:2.5em;"></span><span class="sizing reset-size3 size1 mtight"><span class="mord mtight">2</span></span></span></span></span></span></span></span><span class="mbin mtight">+</span><span class="mord mtight"><span class="mord mathnormal mtight">x</span><span class="msupsub"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.7463em;"><span style="top:-2.786em;margin-right:0.0714em;"><span class="pstrut" style="height:2.5em;"></span><span class="sizing reset-size3 size1 mtight"><span class="mord mtight">2</span></span></span></span></span></span></span></span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.394em;"><span class="pstrut" style="height:3em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mathnormal mtight">d</span><span class="mord mathnormal mtight">x</span></span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.4033em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span></span></span></span></span>, <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>∫</mo><msqrt><mrow><msup><mi>a</mi><mn>2</mn></msup><mo>Β±</mo><msup><mi>x</mi><mn>2</mn></msup></mrow></msqrt><mi>d</mi><mi>x</mi></mrow><annotation encoding="application/x-tex">\int \sqrt{a^2 \pm x^2} dx</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1.2195em;vertical-align:-0.3061em;"></span><span class="mop op-symbol small-op" style="margin-right:0.19445em;position:relative;top:-0.0006em;">∫</span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord sqrt"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.9134em;"><span class="svg-align" style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord" style="padding-left:0.833em;"><span class="mord"><span class="mord mathnormal">a</span><span class="msupsub"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.7401em;"><span style="top:-2.989em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight">2</span></span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">Β±</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord"><span class="mord mathnormal">x</span><span class="msupsub"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.7401em;"><span style="top:-2.989em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight">2</span></span></span></span></span></span></span></span></span></span><span style="top:-2.8734em;"><span class="pstrut" style="height:3em;"></span><span class="hide-tail" style="min-width:0.853em;height:1.08em;"><svg xmlns="http://www.w3.org/2000/svg" width="400em" height="1.08em" viewBox="0 0 400000 1080" preserveAspectRatio="xMinYMin slice"><path d="M95,702</li><br>c-2.7,0,-7.17,-2.7,-13.5,-8c-5.8,-5.3,-9.5,-10,-9.5,-14<br>c0,-2,0.3,-3.3,1,-4c1.3,-2.7,23.83,-20.7,67.5,-54<br>c44.2,-33.3,65.8,-50.3,66.5,-51c1.3,-1.3,3,-2,5,-2c4.7,0,8.7,3.3,12,10<br>s173,378,173,378c0.7,0,35.3,-71,104,-213c68.7,-142,137.5,-285,206.5,-429<br>c69,-144,104.5,-217.7,106.5,-221<br>l0 -0<br>c5.3,-9.3,12,-14,20,-14<br>H400000v40H845.2724<br>s-225.272,467,-225.272,467s-235,486,-235,486c-2.7,4.7,-9,7,-19,7<br>c-6,0,-10,-1,-12,-3s-194,-422,-194,-422s-65,47,-65,47z<br>M834 80h400000v40h-400000z"/></svg></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.1266em;"><span></span></span></span></span></span><span class="mord mathnormal">d</span><span class="mord mathnormal">x</span></span></span></span></span>). Practice integrating various combinations of functions (trigonometric, exponential, logarithmic, rational).<br><li> <strong>Properties of Definite Integrals:</strong> Know and apply properties like linearity, interval addition, and especially symmetry rules for even/odd functions. Crucially, master the "King's Rule" (<span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msubsup><mo>∫</mo><mi>a</mi><mi>b</mi></msubsup><mi>f</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mi>d</mi><mi>x</mi><mo>=</mo><msubsup><mo>∫</mo><mi>a</mi><mi>b</mi></msubsup><mi>f</mi><mo stretchy="false">(</mo><mi>a</mi><mo>+</mo><mi>b</mi><mo>βˆ’</mo><mi>x</mi><mo stretchy="false">)</mo><mi>d</mi><mi>x</mi></mrow><annotation encoding="application/x-tex">\int_a^b f(x) dx = \int_a^b f(a+b-x) dx</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1.3998em;vertical-align:-0.3558em;"></span><span class="mop"><span class="mop op-symbol small-op" style="margin-right:0.19445em;position:relative;top:-0.0006em;">∫</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.044em;"><span style="top:-2.3442em;margin-left:-0.1945em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">a</span></span></span><span style="top:-3.2579em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">b</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.3558em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal" style="margin-right:0.10764em;">f</span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mclose">)</span><span class="mord mathnormal">d</span><span class="mord mathnormal">x</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="base"><span class="strut" style="height:1.3998em;vertical-align:-0.3558em;"></span><span class="mop"><span class="mop op-symbol small-op" style="margin-right:0.19445em;position:relative;top:-0.0006em;">∫</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.044em;"><span style="top:-2.3442em;margin-left:-0.1945em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">a</span></span></span><span style="top:-3.2579em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">b</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.3558em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal" style="margin-right:0.10764em;">f</span><span class="mopen">(</span><span class="mord mathnormal">a</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="base"><span class="strut" style="height:0.7778em;vertical-align:-0.0833em;"></span><span class="mord mathnormal">b</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">βˆ’</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal">x</span><span class="mclose">)</span><span class="mord mathnormal">d</span><span class="mord mathnormal">x</span></span></span></span></span>) and the "Queen's Rule" (<span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msubsup><mo>∫</mo><mn>0</mn><mrow><mn>2</mn><mi>a</mi></mrow></msubsup><mi>f</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mi>d</mi><mi>x</mi><mo>=</mo><msubsup><mo>∫</mo><mn>0</mn><mi>a</mi></msubsup><mi>f</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mi>d</mi><mi>x</mi><mo>+</mo><msubsup><mo>∫</mo><mn>0</mn><mi>a</mi></msubsup><mi>f</mi><mo stretchy="false">(</mo><mn>2</mn><mi>a</mi><mo>βˆ’</mo><mi>x</mi><mo stretchy="false">)</mo><mi>d</mi><mi>x</mi></mrow><annotation encoding="application/x-tex">\int_0^{2a} f(x) dx = \int_0^a f(x) dx + \int_0^a f(2a-x) dx</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1.3648em;vertical-align:-0.3558em;"></span><span class="mop"><span class="mop op-symbol small-op" style="margin-right:0.19445em;position:relative;top:-0.0006em;">∫</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.009em;"><span style="top:-2.3442em;margin-left:-0.1945em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight">0</span></span></span><span style="top:-3.2579em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight">2</span><span class="mord mathnormal mtight">a</span></span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.3558em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal" style="margin-right:0.10764em;">f</span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mclose">)</span><span class="mord mathnormal">d</span><span class="mord mathnormal">x</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="base"><span class="strut" style="height:1.2151em;vertical-align:-0.3558em;"></span><span class="mop"><span class="mop op-symbol small-op" style="margin-right:0.19445em;position:relative;top:-0.0006em;">∫</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.8593em;"><span style="top:-2.3442em;margin-left:-0.1945em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight">0</span></span></span><span style="top:-3.2579em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">a</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.3558em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal" style="margin-right:0.10764em;">f</span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mclose">)</span><span class="mord mathnormal">d</span><span class="mord mathnormal">x</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="base"><span class="strut" style="height:1.2151em;vertical-align:-0.3558em;"></span><span class="mop"><span class="mop op-symbol small-op" style="margin-right:0.19445em;position:relative;top:-0.0006em;">∫</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.8593em;"><span style="top:-2.3442em;margin-left:-0.1945em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight">0</span></span></span><span style="top:-3.2579em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">a</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.3558em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal" style="margin-right:0.10764em;">f</span><span class="mopen">(</span><span class="mord">2</span><span class="mord mathnormal">a</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">βˆ’</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal">x</span><span class="mclose">)</span><span class="mord mathnormal">d</span><span class="mord mathnormal">x</span></span></span></span></span>), as these are frequently used to simplify complex integrals.</li><br><li> <strong>Applications of Definite Integrals:</strong> Understand how to set up and calculate areas of regions bounded by curves (between a curve and an axis, or between two curves) and volumes of solids of revolution (using both disk/washer and cylindrical shell methods). Pay attention to choosing the correct variable of integration (<span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>d</mi><mi>x</mi></mrow><annotation encoding="application/x-tex">dx</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.6944em;"></span><span class="mord mathnormal">d</span><span class="mord mathnormal">x</span></span></span></span></span> or <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>d</mi><mi>y</mi></mrow><annotation encoding="application/x-tex">dy</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.8889em;vertical-align:-0.1944em;"></span><span class="mord mathnormal">d</span><span class="mord mathnormal" style="margin-right:0.03588em;">y</span></span></span></span></span>) and limits.</li><br><li> <strong>Leibniz Integral Rule:</strong> Learn to differentiate under the integral sign. If <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>F</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>=</mo><msubsup><mo>∫</mo><mrow><mi>u</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo></mrow><mrow><mi>v</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo></mrow></msubsup><mi>f</mi><mo stretchy="false">(</mo><mi>x</mi><mo separator="true">,</mo><mi>t</mi><mo stretchy="false">)</mo><mi>d</mi><mi>t</mi></mrow><annotation encoding="application/x-tex">F(x) = \int_{u(x)}^{v(x)} f(x,t) dt</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal" style="margin-right:0.13889em;">F</span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mclose">)</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="base"><span class="strut" style="height:1.6137em;vertical-align:-0.5308em;"></span><span class="mop"><span class="mop op-symbol small-op" style="margin-right:0.19445em;position:relative;top:-0.0006em;">∫</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.0829em;"><span style="top:-2.3442em;margin-left:-0.1945em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mathnormal mtight">u</span><span class="mopen mtight">(</span><span class="mord mathnormal mtight">x</span><span class="mclose mtight">)</span></span></span></span><span style="top:-3.2579em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mathnormal mtight" style="margin-right:0.03588em;">v</span><span class="mopen mtight">(</span><span class="mord mathnormal mtight">x</span><span class="mclose mtight">)</span></span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.5308em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal" style="margin-right:0.10764em;">f</span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mpunct">,</span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal">t</span><span class="mclose">)</span><span class="mord mathnormal">d</span><span class="mord mathnormal">t</span></span></span></span></span>, then <span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msup><mi>F</mi><mo mathvariant="normal" lspace="0em" rspace="0em">β€²</mo></msup><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>=</mo><mi>f</mi><mo stretchy="false">(</mo><mi>x</mi><mo separator="true">,</mo><mi>v</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo stretchy="false">)</mo><msup><mi>v</mi><mo mathvariant="normal" lspace="0em" rspace="0em">β€²</mo></msup><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>βˆ’</mo><mi>f</mi><mo stretchy="false">(</mo><mi>x</mi><mo separator="true">,</mo><mi>u</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo stretchy="false">)</mo><msup><mi>u</mi><mo mathvariant="normal" lspace="0em" rspace="0em">β€²</mo></msup><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mo>+</mo><msubsup><mo>∫</mo><mrow><mi>u</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo></mrow><mrow><mi>v</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo></mrow></msubsup><mfrac><mi mathvariant="normal">βˆ‚</mi><mrow><mi mathvariant="normal">βˆ‚</mi><mi>x</mi></mrow></mfrac><mi>f</mi><mo stretchy="false">(</mo><mi>x</mi><mo separator="true">,</mo><mi>t</mi><mo stretchy="false">)</mo><mi>d</mi><mi>t</mi></mrow><annotation encoding="application/x-tex">F & #x27;(x) = f(x, v(x)) v & #x27;(x) - f(x, u(x)) u & #x27;(x) + \int_{u(x)}^{v(x)} \frac{\partial}{\partial x} f(x,t) dt</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1.0019em;vertical-align:-0.25em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.13889em;">F</span><span class="msupsub"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.7519em;"><span style="top:-3.063em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight">β€²</span></span></span></span></span></span></span></span></span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mclose">)</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="base"><span class="strut" style="height:1.0019em;vertical-align:-0.25em;"></span><span class="mord mathnormal" style="margin-right:0.10764em;">f</span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mpunct">,</span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal" style="margin-right:0.03588em;">v</span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mclose">))</span><span class="mord"><span class="mord mathnormal" style="margin-right:0.03588em;">v</span><span class="msupsub"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.7519em;"><span style="top:-3.063em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight">β€²</span></span></span></span></span></span></span></span></span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mclose">)</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">βˆ’</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="base"><span class="strut" style="height:1.0019em;vertical-align:-0.25em;"></span><span class="mord mathnormal" style="margin-right:0.10764em;">f</span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mpunct">,</span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal">u</span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mclose">))</span><span class="mord"><span class="mord mathnormal">u</span><span class="msupsub"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.7519em;"><span style="top:-3.063em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight">β€²</span></span></span></span></span></span></span></span></span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mclose">)</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="base"><span class="strut" style="height:1.6137em;vertical-align:-0.5308em;"></span><span class="mop"><span class="mop op-symbol small-op" style="margin-right:0.19445em;position:relative;top:-0.0006em;">∫</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.0829em;"><span style="top:-2.3442em;margin-left:-0.1945em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mathnormal mtight">u</span><span class="mopen mtight">(</span><span class="mord mathnormal mtight">x</span><span class="mclose mtight">)</span></span></span></span><span style="top:-3.2579em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mathnormal mtight" style="margin-right:0.03588em;">v</span><span class="mopen mtight">(</span><span class="mord mathnormal mtight">x</span><span class="mclose mtight">)</span></span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.5308em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.8801em;"><span style="top:-2.655em;"><span class="pstrut" style="height:3em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight" style="margin-right:0.05556em;">βˆ‚</span><span class="mord mathnormal mtight">x</span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.394em;"><span class="pstrut" style="height:3em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight" style="margin-right:0.05556em;">βˆ‚</span></span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.345em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span><span class="mord mathnormal" style="margin-right:0.10764em;">f</span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mpunct">,</span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal">t</span><span class="mclose">)</span><span class="mord mathnormal">d</span><span class="mord mathnormal">t</span></span></span></span></span>. This is a powerful tool for problems involving integrals with variable limits or integrands containing the differentiation variable.</li><br><li> <strong>Definite Integral as a Limit of a Sum:</strong> Recognize and evaluate limits of sums that can be expressed as definite integrals (<span class="math-inline"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mrow><mi>lim</mi><mo>⁑</mo></mrow><mrow><mi>n</mi><mo>β†’</mo><mi mathvariant="normal">∞</mi></mrow></msub><mfrac><mn>1</mn><mi>n</mi></mfrac><msubsup><mo>βˆ‘</mo><mrow><mi>k</mi><mo>=</mo><mn>1</mn></mrow><mi>n</mi></msubsup><mi>f</mi><mrow><mo fence="true">(</mo><mfrac><mi>k</mi><mi>n</mi></mfrac><mo fence="true">)</mo></mrow><mo>=</mo><msubsup><mo>∫</mo><mn>0</mn><mn>1</mn></msubsup><mi>f</mi><mo stretchy="false">(</mo><mi>x</mi><mo stretchy="false">)</mo><mi>d</mi><mi>x</mi></mrow><annotation encoding="application/x-tex">\lim_{n \to \infty} \frac{1}{n} \sum_{k=1}^n f\left(\frac{k}{n}\right) = \int_0^1 f(x) dx</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1.2301em;vertical-align:-0.35em;"></span><span class="mop"><span class="mop">lim</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.1514em;"><span style="top:-2.55em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mathnormal mtight">n</span><span class="mrel mtight">β†’</span><span class="mord mtight">∞</span></span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.8451em;"><span style="top:-2.655em;"><span class="pstrut" style="height:3em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mathnormal mtight">n</span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.394em;"><span class="pstrut" style="height:3em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight">1</span></span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.345em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mop"><span class="mop op-symbol small-op" style="position:relative;top:0em;">βˆ‘</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.8043em;"><span style="top:-2.4003em;margin-left:0em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mathnormal mtight" style="margin-right:0.03148em;">k</span><span class="mrel mtight">=</span><span class="mord mtight">1</span></span></span></span><span style="top:-3.2029em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">n</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.2997em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal" style="margin-right:0.10764em;">f</span><span class="mspace" style="margin-right:0.1667em;"></span><span class="minner"><span class="mopen delimcenter" style="top:0em;"><span class="delimsizing size1">(</span></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.8801em;"><span style="top:-2.655em;"><span class="pstrut" style="height:3em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mathnormal mtight">n</span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.394em;"><span class="pstrut" style="height:3em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mathnormal mtight" style="margin-right:0.03148em;">k</span></span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.345em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span><span class="mclose delimcenter" style="top:0em;"><span class="delimsizing size1">)</span></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="base"><span class="strut" style="height:1.3648em;vertical-align:-0.3558em;"></span><span class="mop"><span class="mop op-symbol small-op" style="margin-right:0.19445em;position:relative;top:-0.0006em;">∫</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.009em;"><span style="top:-2.3442em;margin-left:-0.1945em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight">0</span></span></span><span style="top:-3.2579em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight">1</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.3558em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal" style="margin-right:0.10764em;">f</span><span class="mopen">(</span><span class="mord mathnormal">x</span><span class="mclose">)</span><span class="mord mathnormal">d</span><span class="mord mathnormal">x</span></span></span></span></span>). This concept is fundamental and often appears in CMI problems.</li></p></div>
    </div>

    ---

    Chapter Review Questions

    :::question type="MCQ" question="The value of the definite integral ∫02Ο€dx1+esin⁑x\int_0^{2\pi} \frac{dx}{1 + e^{\sin x}} is:" options=["Ο€\pi" "2Ο€2\pi" "Ο€/2\pi/2" "00"] answer="Ο€\pi" hint="Consider using the property ∫abf(x)dx=∫abf(a+bβˆ’x)dx\int_a^b f(x)dx = \int_a^b f(a+b-x)dx." solution="Let

    I = \int_0^{2\pi} \frac{dx}{1 + e^{\sin x}}
    &#x27; in math mode at position 20: …g the propertyΜ²\int_a^b f(x)dx…" style="color:#cc0000">Using the property ∫abf(x)dx=∫abf(a+bβˆ’x)dx\int_a^b f(x)dx = \int_a^b f(a+b-x)dx, we replace xx with (0+2Ο€βˆ’x)=2Ο€βˆ’x(0+2\pi-x) = 2\pi-x.
    I = \int_0^{2\pi} \frac{dx}{1 + e^{\sin(2\pi-x)}}
    &#x27; in math mode at position 7: SinceΜ²\sin(2\pi-x) = …" style="color:#cc0000">Since sin⁑(2Ο€βˆ’x)=βˆ’sin⁑x\sin(2\pi-x) = -\sin x,
    I = \int_0^{2\pi} \frac{dx}{1 + e^{-\sin x}}
    I = \int_0^{2\pi} \frac{dx}{1 + \frac{1}{e^{\sin x}}}
    I = \int_0^{2\pi} \frac{e^{\sin x}}{e^{\sin x} + 1} dx
    Now,addtheoriginalintegraltothisnewexpression:Now, add the original integral to this new expression:
    2I = \int_0^{2\pi} \left( \frac{1}{1 + e^{\sin x}} + \frac{e^{\sin x}}{1 + e^{\sin x}} \right) dx
    2I = \int_0^{2\pi} \frac{1 + e^{\sin x}}{1 + e^{\sin x}} dx
    2I = \int_0^{2\pi} 1 dx
    2I = [x]_0^{2\pi}
    2I = 2\pi - 0
    2I = 2\pi
    I = \pi
    &#x27; in math mode at position 145: … by the curvesΜ²y = x^2andandy…" style="color:#cc0000">Thus, the correct option is A.
    Answer: \boxed{\pi}"
    :::

    :::question type="NAT" question="Find the area (in square units) bounded by the curves y=x2y = x^2 and y=2xβˆ’x2y = 2x - x^2." answer="0.333" hint="First, find the points of intersection of the two curves. Then, determine which function is greater in the interval between these points to set up the definite integral correctly." solution="To find the area bounded by the curves y=x2y = x^2 and y=2xβˆ’x2y = 2x - x^2, we first find their points of intersection by setting the yy-values equal:

    x^2 = 2x - x^2
    2x^2 - 2x = 0
    2x(x - 1) = 0
    &#x27; in math mode at position 38: …tion points atΜ²x = 0andandx =…" style="color:#cc0000">This gives us intersection points at x=0x = 0 and x=1x = 1.

    Next, we need to determine which curve is above the other in the interval [0,1][0, 1]. Let's pick a test point, say x=0.5x = 0.5:
    For y=x2y = x^2, y=(0.5)2=0.25y = (0.5)^2 = 0.25
    For y=2xβˆ’x2y = 2x - x^2, y=2(0.5)βˆ’(0.5)2=1βˆ’0.25=0.75y = 2(0.5) - (0.5)^2 = 1 - 0.25 = 0.75
    Since 0.75 & gt; 0.25, the curve y=2xβˆ’x2y = 2x - x^2 is above y=x2y = x^2 in the interval [0,1][0, 1].

    The area AA is given by the definite integral of the difference between the upper curve and the lower curve, from x=0x=0 to x=1x=1:

    A = \int_0^1 ((2x - x^2) - x^2) dx
    A = \int_0^1 (2x - 2x^2) dx
    Now,integratetermbyterm:Now, integrate term by term:
    A = \left[ x^2 - \frac{2x^3}{3} \right]_0^1
    A = \left( (1)^2 - \frac{2(1)^3}{3} \right) - \left( (0)^2 - \frac{2(0)^3}{3} \right)
    A = \left( 1 - \frac{2}{3} \right) - (0 - 0)
    A = \frac{3-2}{3}
    A = \frac{1}{3}
    &#x27; in math mode at position 15: As a decimal,Μ²1/3 \approx 0.3…" style="color:#cc0000">As a decimal, 1/3β‰ˆ0.3331/3 \approx 0.333.
    The area is 1/31/3 square units.
    Answer: \boxed{0.333}"
    :::

    :::question type="MCQ" question="The value of the integral ∫01ln⁑(1+x)1+x2dx\int_0^1 \frac{\ln(1+x)}{1+x^2} dx is:" options=["Ο€8ln⁑2\frac{\pi}{8} \ln 2" "Ο€4ln⁑2\frac{\pi}{4} \ln 2" "Ο€2ln⁑2\frac{\pi}{2} \ln 2" "Ο€16ln⁑2\frac{\pi}{16} \ln 2"] answer="Ο€8ln⁑2\frac{\pi}{8} \ln 2" hint="Consider a substitution that simplifies the denominator, and then look for an opportunity to use definite integral properties." solution="Let

    I = \int_0^1 \frac{\ln(1+x)}{1+x^2} dx
    &#x27; in math mode at position 12: SubstituteΜ²x = \tan\theta…" style="color:#cc0000">Substitutex = \tan\theta.Then. Thendx = \sec^2\theta d\theta$.
    When x=0x=0, ΞΈ=0\theta=0. When x=1x=1, ΞΈ=Ο€/4\theta=\pi/4.
    The integral becomes:
    I = \int_0^{\pi/4} \frac{\ln(1+\tan\theta)}{1+\tan^2\theta} \sec^2\theta d\theta
    &#x27; in math mode at position 7: SinceΜ²1+\tan^2\theta …" style="color:#cc0000">Since 1+tan⁑2ΞΈ=sec⁑2ΞΈ1+\tan^2\theta = \sec^2\theta, the sec⁑2ΞΈ\sec^2\theta terms cancel out:
    I = \int_0^{\pi/4} \ln(1+\tan\theta) d\theta
    &#x27; in math mode at position 30: …e King & #x27;s Rule:Μ²\int_0^a f(x) d…" style="color:#cc0000">Now, we use the King's Rule: ∫0af(x)dx=∫0af(aβˆ’x)dx\int_0^a f(x) dx = \int_0^a f(a-x) dx.
    Here, a=Ο€/4a=\pi/4. So, we replace ΞΈ\theta with (Ο€/4βˆ’ΞΈ)(\pi/4 - \theta):
    I = \int_0^{\pi/4} \ln(1+\tan(\pi/4-\theta)) d\theta
    &#x27; in math mode at position 39: …action formulaΜ²\tan(A-B) = \fr…" style="color:#cc0000">Using the tangent subtraction formula tan⁑(Aβˆ’B)=tan⁑Aβˆ’tan⁑B1+tan⁑Atan⁑B\tan(A-B) = \frac{\tan A - \tan B}{1 + \tan A \tan B}:
    \tan(\pi/4-\theta) = \frac{\tan(\pi/4) - \tan\theta}{1 + \tan(\pi/4) \tan\theta} = \frac{1 - \tan\theta}{1 + \tan\theta}
    Substitutethisbackintotheintegral:Substitute this back into the integral:
    I = \int_0^{\pi/4} \ln\left(1+\frac{1-\tan\theta}{1+\tan\theta}\right) d\theta
    I = \int_0^{\pi/4} \ln\left(\frac{1+\tan\theta + 1-\tan\theta}{1+\tan\theta}\right) d\theta
    I = \int_0^{\pi/4} \ln\left(\frac{2}{1+\tan\theta}\right) d\theta
    &#x27; in math mode at position 28: …thm propertiesΜ²\ln(A/B) = \ln …" style="color:#cc0000">Using logarithm properties ln⁑(A/B)=ln⁑Aβˆ’ln⁑B\ln(A/B) = \ln A - \ln B:
    I = \int_0^{\pi/4} (\ln 2 - \ln(1+\tan\theta)) d\theta
    I = \int_0^{\pi/4} \ln 2 d\theta - \int_0^{\pi/4} \ln(1+\tan\theta) d\theta
    &#x27; in math mode at position 67: …ginal integralΜ²I:" style="color:#cc0000">Notice that the second term on the right is our original integralI:</span></div>I = \ln 2 [\theta]_0^{\pi/4} - I<div class="math-display"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow></mrow><annotation encoding="application/x-tex"></annotation></semantics></math></span><span class="katex-html" aria-hidden="true"></span></span></span></div>I = \ln 2 (\pi/4 - 0) - I<div class="math-display"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow></mrow><annotation encoding="application/x-tex"></annotation></semantics></math></span><span class="katex-html" aria-hidden="true"></span></span></span></div>I = \frac{\pi}{4} \ln 2 - I<div class="math-display"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow></mrow><annotation encoding="application/x-tex"></annotation></semantics></math></span><span class="katex-html" aria-hidden="true"></span></span></span></div>2I = \frac{\pi}{4} \ln 2<div class="math-display"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow></mrow><annotation encoding="application/x-tex"></annotation></semantics></math></span><span class="katex-html" aria-hidden="true"></span></span></span></div>I = \frac{\pi}{8} \ln 2<div class="math-display"><span class="katex-error" title="ParseError: KaTeX parse error: Can & #x27;t use function & #x27;' in math mode at position 110: …" question="If $Μ²F(x) = \int_x^{…" style="color:#cc0000">Thus, the correct option is A.
    Answer: \boxed{\frac{\pi}{8} \ln 2}"
    :::

    :::question type="NAT" question="If F(x)=∫xx2eβˆ’t2dtF(x) = \int_x^{x^2} e^{-t^2} dt, find the value of F & #x27;(1)." answer="0.367879" hint="Apply Leibniz Integral Rule for differentiating an integral with variable limits." solution="We need to find F & #x27;(x) using Leibniz Integral Rule. The rule states that if

    F(x) = \int_{u(x)}^{v(x)} f(x,t) dt
    thenthen
    F'(x) = f(x, v(x)) v'(x) - f(x, u(x)) u'(x) + \int_{u(x)}^{v(x)} \frac{\partial}{\partial x} f(x,t) dt
    &#x27; in math mode at position 18: … this problem,Μ²u(x) = x,,v(x…" style="color:#cc0000">In this problem, u(x)=xu(x) = x, v(x)=x2v(x) = x^2, and f(x,t)=eβˆ’t2f(x,t) = e^{-t^2}.
    Since f(x,t)f(x,t) does not explicitly depend on xx (it's eβˆ’t2e^{-t^2}, which is only a function of tt), the term βˆ‚βˆ‚xf(x,t)\frac{\partial}{\partial x} f(x,t) is 00.

    So, the Leibniz Rule simplifies to:

    F'(x) = f(v(x)) v'(x) - f(u(x)) u'(x)
    Letβ€²sfindthecomponents:Let's find the components:
    f(t) = e^{-t^2}
    v(x) = x^2 \implies v'(x) = 2x
    u(x) = x \implies u'(x) = 1
    Substitutetheseintotheformula:Substitute these into the formula:
    F'(x) = e^{-(x^2)^2} (2x) - e^{-(x)^2} (1)
    F'(x) = 2x e^{-x^4} - e^{-x^2}
    &#x27; in math mode at position 22: …e need to findΜ²F'(1):" style="color:#cc0000">Now, we need to findF'(1)$:
    F'(1) = 2(1) e^{-(1)^4} - e^{-(1)^2}
    F'(1) = 2e^{-1} - e^{-1}
    F'(1) = e^{-1}$$

    Numerically, eβˆ’1β‰ˆ0.36787944117e^{-1} \approx 0.36787944117.
    The answer is eβˆ’1e^{-1} or approximately 0.3680.368 (to three decimal places).
    Answer: \boxed{0.367879}"
    :::

    ---

    What's Next?

    πŸ’‘ Continue Your CMI Journey

    You've mastered Integration and its Applications! This chapter is a cornerstone of Calculus and its significance cannot be overstated for CMI.

    Key connections:
    Building on Previous Learning: Integration is fundamentally the inverse process of Differentiation. A strong grasp of differentiation rules and techniques (including chain rule, product rule, quotient rule) is essential for effective integration. The concept of Limits forms the basis for defining the definite integral as a Riemann sum.
    Paving the Way for Future Chapters: The skills and concepts learned here are critical for several advanced topics:
    Differential Equations: Solving differential equations often involves various integration techniques. This is a major topic in CMI.
    Area and Volume (Advanced): While covered here, more complex problems involving areas of regions defined by polar coordinates or volumes of solids with non-circular cross-sections build directly on these foundations.
    Vector Calculus: Line integrals, surface integrals, and volume integrals in higher dimensions are direct extensions of the definite integral concept.
    Probability and Statistics: Continuous probability distributions (like normal or exponential) use integration to calculate probabilities and expected values.
    * Physics and Engineering Applications: Many physical quantities like work done, center of mass, moment of inertia, and fluid pressure are calculated using integration.

    Keep practicing these concepts diligently. Your proficiency in integration will significantly impact your performance in a wide range of CMI problems!

    🎯 Key Points to Remember

    • βœ“ Master the core concepts in Integration and its Applications before moving to advanced topics
    • βœ“ Practice with previous year questions to understand exam patterns
    • βœ“ Review short notes regularly for quick revision before exams

    Related Topics in Calculus

    More Resources

    Why Choose MastersUp?

    🎯

    AI-Powered Plans

    Personalized study schedules based on your exam date and learning pace

    πŸ“š

    15,000+ Questions

    Verified questions with detailed solutions from past papers

    πŸ“Š

    Smart Analytics

    Track your progress with subject-wise performance insights

    πŸ”–

    Bookmark & Revise

    Save important questions for quick revision before exams

    Start Your Free Preparation β†’

    No credit card required β€’ Free forever for basic features