100% FREE Updated: Mar 2026 Calculus Integral Calculus

Applications of Integrals

Comprehensive study notes on Applications of Integrals for CMI M.Sc. and Ph.D. Computer Science preparation. This chapter covers key concepts, formulas, and examples needed for your exam.

Applications of Integrals

This chapter delves into the practical applications of integral calculus, a cornerstone for advanced quantitative analysis in computer science. Mastery of these techniques, particularly concerning area computation, is crucial for solving problems in fields such as image processing, machine learning optimization, and computational geometry, and represents a frequently tested concept.

---

Chapter Contents

|

| Topic |

|---|-------| | 1 | Area Under and Between Curves |

---

We begin with Area Under and Between Curves.

Part 1: Area Under and Between Curves

We apply definite integrals to calculate the area of regions bounded by curves and lines. This fundamental concept is crucial for understanding various applications in computer graphics, probability, and optimization.

---

Core Concepts

1. Area Under a Curve

We define the area of the region bounded by a continuous function f(x)f(x), the x-axis, and the vertical lines x=ax=a and x=bx=b as the definite integral of f(x)f(x) from aa to bb. If f(x)f(x) is below the x-axis, the integral yields a negative value, representing signed area. For total unsigned area, we integrate f(x)|f(x)|.

📐 Area Under a Curve
A=abf(x)dxA = \int_a^b f(x) \,dx

Where:
f(x)f(x) = the function
a,ba, b = the lower and upper limits of integration (x-values)
When to use: To find the signed area between f(x)f(x) and the x-axis. For total area, use abf(x)dx\int_a^b |f(x)| \,dx.

Worked Example: Calculate the area bounded by f(x)=x2+1f(x) = x^2 + 1, the x-axis, x=0x=0, and x=2x=2.

Step 1: Set up the definite integral.

>

A=02(x2+1)dxA = \int_0^2 (x^2 + 1) \,dx

Step 2: Evaluate the integral.

>

A=[x33+x]02=(233+2)(033+0)=(83+2)0=83+63=143\begin{aligned} A & = \left[ \frac{x^3}{3} + x \right]_0^2 \\ & = \left( \frac{2^3}{3} + 2 \right) - \left( \frac{0^3}{3} + 0 \right) \\ & = \left( \frac{8}{3} + 2 \right) - 0 \\ & = \frac{8}{3} + \frac{6}{3} \\ & = \frac{14}{3} \end{aligned}

Answer: The area is 143\frac{14}{3} square units.

:::question type="MCQ" question="What is the area bounded by the curve y=x3y = x^3, the x-axis, x=1x=-1, and x=1x=1?" options=["0","1/2","1","2"] answer="1/2" hint="Remember that the integral calculates signed area. For total area, consider the absolute value or split the integral." solution="The function y=x3y=x^3 is odd. From x=1x=-1 to x=0x=0, x3x^3 is negative. From x=0x=0 to x=1x=1, x3x^3 is positive.
To find the total area, we must integrate the absolute value:

A=11x3dxA = \int_{-1}^1 |x^3| \,dx

A=10(x3)dx+01x3dxA = \int_{-1}^0 (-x^3) \,dx + \int_0^1 x^3 \,dx

Step 1: Evaluate the first integral.
10(x3)dx=[x44]10=(044)((1)44)=0(14)=14\int_{-1}^0 (-x^3) \,dx = \left[ -\frac{x^4}{4} \right]_{-1}^0 = \left( -\frac{0^4}{4} \right) - \left( -\frac{(-1)^4}{4} \right) = 0 - \left( -\frac{1}{4} \right) = \frac{1}{4}

Step 2: Evaluate the second integral.
01x3dx=[x44]01=(144)(044)=140=14\int_0^1 x^3 \,dx = \left[ \frac{x^4}{4} \right]_0^1 = \left( \frac{1^4}{4} \right) - \left( \frac{0^4}{4} \right) = \frac{1}{4} - 0 = \frac{1}{4}

Step 3: Sum the areas.
A=14+14=12A = \frac{1}{4} + \frac{1}{4} = \frac{1}{2}

The total area is 1/21/2. If we just compute 11x3dx\int_{-1}^1 x^3 \,dx, we get 0, which is the net signed area."
:::

---

2. Area Between Two Curves (with respect to x)

We calculate the area AA of the region bounded by two continuous functions f(x)f(x) and g(x)g(x) and the vertical lines x=ax=a and x=bx=b by integrating the difference between the upper function and the lower function over the interval [a,b][a, b].

📐 Area Between Two Curves (x-axis)
A=ab[f(x)g(x)]dxA = \int_a^b [f(x) - g(x)] \,dx

Where:
f(x)f(x) = the upper function (i.e., f(x)g(x)f(x) \ge g(x) on [a,b][a,b])
g(x)g(x) = the lower function
a,ba, b = the lower and upper limits of integration
When to use: To find the area between two curves y=f(x)y=f(x) and y=g(x)y=g(x) over a specified x-interval.

Worked Example: Find the area of the region bounded by y=x2y = x^2 and y=xy = x.

Step 1: Find the points of intersection by setting the functions equal.

>

x2=xx2x=0x(x1)=0\begin{aligned} x^2 & = x \\ x^2 - x & = 0 \\ x(x - 1) & = 0 \end{aligned}

> The intersection points are x=0x=0 and x=1x=1. These will be our limits of integration.

Step 2: Determine which function is the upper function in the interval [0,1][0, 1].
We can test a point, e.g., x=0.5x=0.5:
f(0.5)=0.5f(0.5) = 0.5
g(0.5)=(0.5)2=0.25g(0.5) = (0.5)^2 = 0.25
Since 0.5>0.250.5 > 0.25, y=xy=x is the upper function.

Step 3: Set up and evaluate the integral.

>

A=01(xx2)dx=[x22x33]01=(122133)(022033)=(1213)0=326=16\begin{aligned} A & = \int_0^1 (x - x^2) \,dx \\ & = \left[ \frac{x^2}{2} - \frac{x^3}{3} \right]_0^1 \\ & = \left( \frac{1^2}{2} - \frac{1^3}{3} \right) - \left( \frac{0^2}{2} - \frac{0^3}{3} \right) \\ & = \left( \frac{1}{2} - \frac{1}{3} \right) - 0 \\ & = \frac{3 - 2}{6} \\ & = \frac{1}{6} \end{aligned}

Answer: The area is 16\frac{1}{6} square units.

:::question type="MCQ" question="Calculate the area of the region bounded by y=xy = \sqrt{x} and y=x2y = x^2." options=["1/3","2/3","1","1/2"] answer="1/3" hint="First find the intersection points, then determine which function is above the other in the interval." solution="Step 1: Find intersection points.
Set x=x2\sqrt{x} = x^2. Squaring both sides gives x=x4x = x^4.

x4x=0x^4 - x = 0

x(x31)=0x(x^3 - 1) = 0

This yields x=0x=0 or x3=1x^3=1, so x=1x=1. The intersection points are x=0x=0 and x=1x=1.

Step 2: Determine the upper function on [0,1][0, 1].
Test x=0.5x=0.5:
y1=0.50.707y_1 = \sqrt{0.5} \approx 0.707
y2=(0.5)2=0.25y_2 = (0.5)^2 = 0.25
So, x\sqrt{x} is the upper function.

Step 3: Set up and evaluate the integral.

A=01(xx2)dxA = \int_0^1 (\sqrt{x} - x^2) \,dx

A=01(x1/2x2)dxA = \int_0^1 (x^{1/2} - x^2) \,dx

A=[x3/23/2x33]01A = \left[ \frac{x^{3/2}}{3/2} - \frac{x^3}{3} \right]_0^1

A=[23x3/213x3]01A = \left[ \frac{2}{3}x^{3/2} - \frac{1}{3}x^3 \right]_0^1

A=(23(1)3/213(1)3)(23(0)3/213(0)3)A = \left( \frac{2}{3}(1)^{3/2} - \frac{1}{3}(1)^3 \right) - \left( \frac{2}{3}(0)^{3/2} - \frac{1}{3}(0)^3 \right)

A=(2313)0A = \left( \frac{2}{3} - \frac{1}{3} \right) - 0

A=13A = \frac{1}{3}

"
:::

---

3. Area Between Two Curves (with respect to y)

We can express curves as x=f(y)x = f(y) and x=g(y)x = g(y) and integrate with respect to yy to find the area between them. This is often simpler when the curves are better defined as functions of yy or when the region is bounded by horizontal lines.

📐 Area Between Two Curves (y-axis)
A=cd[f(y)g(y)]dyA = \int_c^d [f(y) - g(y)] \,dy

Where:
f(y)f(y) = the rightmost function (i.e., f(y)g(y)f(y) \ge g(y) on [c,d][c,d])
g(y)g(y) = the leftmost function
c,dc, d = the lower and upper limits of integration (y-values)
When to use: To find the area between two curves x=f(y)x=f(y) and x=g(y)x=g(y) over a specified y-interval.

Worked Example: Find the area of the region bounded by x=y24yx = y^2 - 4y and x=yx = -y.

Step 1: Find the points of intersection by setting the functions equal.

>

y24y=yy23y=0y(y3)=0\begin{aligned} y^2 - 4y & = -y \\ y^2 - 3y & = 0 \\ y(y - 3) & = 0 \end{aligned}

> The intersection points are y=0y=0 and y=3y=3. These will be our limits of integration.

Step 2: Determine which function is the rightmost function in the interval [0,3][0, 3].
Test y=1y=1:
f(1)=124(1)=3f(1) = 1^2 - 4(1) = -3
g(1)=1g(1) = -1
Since 1>3-1 > -3, x=yx=-y is the rightmost function.

Step 3: Set up and evaluate the integral.

>

A=03(y(y24y))dy=03(yy2+4y)dy=03(3yy2)dy=[3y22y33]03=(3(3)22333)(3(0)22033)=(272273)0=2729=27182=92\begin{aligned} A & = \int_0^3 (-y - (y^2 - 4y)) \,dy \\ & = \int_0^3 (-y - y^2 + 4y) \,dy \\ & = \int_0^3 (3y - y^2) \,dy \\ & = \left[ \frac{3y^2}{2} - \frac{y^3}{3} \right]_0^3 \\ & = \left( \frac{3(3)^2}{2} - \frac{3^3}{3} \right) - \left( \frac{3(0)^2}{2} - \frac{0^3}{3} \right) \\ & = \left( \frac{27}{2} - \frac{27}{3} \right) - 0 \\ & = \frac{27}{2} - 9 \\ & = \frac{27 - 18}{2} \\ & = \frac{9}{2} \end{aligned}

Answer: The area is 92\frac{9}{2} square units.

:::question type="NAT" question="What is the area of the region bounded by x=y2x = y^2 and the line x=4x = 4?" answer="32/3" hint="Express the line as x=f(y)x=f(y) and the parabola as x=g(y)x=g(y). Find intersection points in terms of y." solution="Step 1: Find intersection points.
Set y2=4y^2 = 4. This gives y=±2y = \pm 2. So the limits of integration are y=2y=-2 and y=2y=2.

Step 2: Determine the rightmost function on [2,2][-2, 2].
The line x=4x=4 is always to the right of the parabola x=y2x=y^2 (since y24y^2 \le 4 for y[2,2]y \in [-2,2]).
So, f(y)=4f(y) = 4 and g(y)=y2g(y) = y^2.

Step 3: Set up and evaluate the integral.

A=22(4y2)dyA = \int_{-2}^2 (4 - y^2) \,dy

A=[4yy33]22A = \left[ 4y - \frac{y^3}{3} \right]_{-2}^2

A=(4(2)233)(4(2)(2)33)A = \left( 4(2) - \frac{2^3}{3} \right) - \left( 4(-2) - \frac{(-2)^3}{3} \right)

A=(883)(883)A = \left( 8 - \frac{8}{3} \right) - \left( -8 - \frac{-8}{3} \right)

A=(883)(8+83)A = \left( 8 - \frac{8}{3} \right) - \left( -8 + \frac{8}{3} \right)

A=883+883A = 8 - \frac{8}{3} + 8 - \frac{8}{3}

A=16163A = 16 - \frac{16}{3}

A=48163A = \frac{48 - 16}{3}

A=323A = \frac{32}{3}

"
:::

---

4. Area of Regions Defined by Multiple Functions or Sections

We may need to split the integral into multiple parts if the "upper" or "rightmost" function changes within the interval, or if the region is bounded by more than two curves that define distinct sub-regions.

Worked Example: Find the area of the region bounded by y=x2y = x^2, y=2xy = 2-x, and the x-axis.

Step 1: Sketch the region and identify intersection points.

  • y=x2y=x^2 is a parabola opening upwards.

  • y=2xy=2-x is a line with negative slope, passing through (0,2)(0,2) and (2,0)(2,0).

  • The x-axis is y=0y=0.


Intersection points:
  • x2=0    x=0x^2 = 0 \implies x=0 (parabola intersects x-axis at origin)

  • 2x=0    x=22-x = 0 \implies x=2 (line intersects x-axis at (2,0)(2,0))

  • x2=2x    x2+x2=0    (x+2)(x1)=0    x=2,1x^2 = 2-x \implies x^2+x-2=0 \implies (x+2)(x-1)=0 \implies x=-2, 1. The relevant intersection is at x=1x=1 (point (1,1)(1,1)).


The region is bounded by y=x2y=x^2 from x=0x=0 to x=1x=1, and by y=2xy=2-x from x=1x=1 to x=2x=2, both above the x-axis.

Step 2: Split the area into two integrals.
For x[0,1]x \in [0, 1], the upper curve is y=x2y=x^2 and the lower curve is y=0y=0.
For x[1,2]x \in [1, 2], the upper curve is y=2xy=2-x and the lower curve is y=0y=0.

Step 3: Set up and evaluate the integrals for each section.

>

A1=01(x20)dxA_1 = \int_0^1 (x^2 - 0) \,dx

>
A1=[x33]01=133033=13A_1 = \left[ \frac{x^3}{3} \right]_0^1 = \frac{1^3}{3} - \frac{0^3}{3} = \frac{1}{3}

>

A2=12((2x)0)dxA_2 = \int_1^2 ((2-x) - 0) \,dx

>
A2=[2xx22]12A_2 = \left[ 2x - \frac{x^2}{2} \right]_1^2

>
A2=(2(2)222)(2(1)122)A_2 = \left( 2(2) - \frac{2^2}{2} \right) - \left( 2(1) - \frac{1^2}{2} \right)

>
A2=(42)(212)A_2 = (4 - 2) - \left( 2 - \frac{1}{2} \right)

>
A2=232=432=12A_2 = 2 - \frac{3}{2} = \frac{4-3}{2} = \frac{1}{2}

Step 4: Sum the areas.

>

A=A1+A2=13+12=2+36=56A = A_1 + A_2 = \frac{1}{3} + \frac{1}{2} = \frac{2+3}{6} = \frac{5}{6}

Answer: The total area is 56\frac{5}{6} square units.

:::question type="MSQ" question="Select ALL correct statements about the area of the region bounded by y=sin(x)y = \sin(x) and the x-axis from x=0x=0 to x=2πx=2\pi." options=["The net signed area is 0.","The total unsigned area is 2.","The total unsigned area is 4.","The integral 02πsin(x)dx\int_0^{2\pi} \sin(x) \,dx calculates the total unsigned area."] answer="The net signed area is 0.,The total unsigned area is 4." hint="Consider the graph of sin(x)\sin(x) over the interval. The function goes both above and below the x-axis." solution="Step 1: Analyze the function y=sin(x)y=\sin(x) from x=0x=0 to x=2πx=2\pi.
From x=0x=0 to x=πx=\pi, sin(x)0\sin(x) \ge 0.
From x=πx=\pi to x=2πx=2\pi, sin(x)0\sin(x) \le 0.

Step 2: Calculate the net signed area.

02πsin(x)dx=[cos(x)]02π=(cos(2π))(cos(0))=(1)(1)=0\int_0^{2\pi} \sin(x) \,dx = [-\cos(x)]_0^{2\pi} = (-\cos(2\pi)) - (-\cos(0)) = (-1) - (-1) = 0

So, 'The net signed area is 0.' is correct.

Step 3: Calculate the total unsigned area.
This requires integrating the absolute value: 02πsin(x)dx\int_0^{2\pi} |\sin(x)| \,dx.

A=0πsin(x)dx+π2π(sin(x))dxA = \int_0^{\pi} \sin(x) \,dx + \int_{\pi}^{2\pi} (-\sin(x)) \,dx

A=[cos(x)]0π+[cos(x)]π2πA = [-\cos(x)]_0^{\pi} + [\cos(x)]_{\pi}^{2\pi}

A=((cos(π))(cos(0)))+((cos(2π))(cos(π)))A = ((-\cos(\pi)) - (-\cos(0))) + ((\cos(2\pi)) - (\cos(\pi)))

A=(((1))(1))+((1)(1))A = ((-(-1)) - (-1)) + ((1) - (-1))

A=(1+1)+(1+1)A = (1 + 1) + (1 + 1)

A=2+2=4A = 2 + 2 = 4

So, 'The total unsigned area is 4.' is correct.

Step 4: Evaluate other options.
'The total unsigned area is 2.' is incorrect.
'The integral 02πsin(x)dx\int_0^{2\pi} \sin(x) \,dx calculates the total unsigned area.' is incorrect, as this integral gives the net signed area, which is 0."
:::

---

Advanced Applications

Worked Example: Find the area of the region enclosed by y=x3xy = x^3 - x and y=3xy = 3x.

Step 1: Find intersection points.
Set x3x=3xx^3 - x = 3x.
>

x34x=0x(x24)=0x(x2)(x+2)=0\begin{aligned} x^3 - 4x & = 0 \\ x(x^2 - 4) & = 0 \\ x(x-2)(x+2) & = 0 \end{aligned}

> The intersection points are x=2,0,2x=-2, 0, 2.

Step 2: Determine the upper function in each interval.
We have two intervals: [2,0][-2, 0] and [0,2][0, 2].

  • For x[2,0]x \in [-2, 0], test x=1x=-1:

y1=(1)3(1)=1+1=0y_1 = (-1)^3 - (-1) = -1+1 = 0
y2=3(1)=3y_2 = 3(-1) = -3
So, y=x3xy=x^3-x is the upper function on [2,0][-2, 0].
  • For x[0,2]x \in [0, 2], test x=1x=1:

y1=(1)3(1)=11=0y_1 = (1)^3 - (1) = 1-1 = 0
y2=3(1)=3y_2 = 3(1) = 3
So, y=3xy=3x is the upper function on [0,2][0, 2].

Step 3: Set up and evaluate the integrals for each section.

>

A1=20((x3x)3x)dx=20(x34x)dxA_1 = \int_{-2}^0 ((x^3 - x) - 3x) \,dx = \int_{-2}^0 (x^3 - 4x) \,dx

>
A1=[x442x2]20A_1 = \left[ \frac{x^4}{4} - 2x^2 \right]_{-2}^0

>
A1=(0442(0)2)((2)442(2)2)A_1 = \left( \frac{0^4}{4} - 2(0)^2 \right) - \left( \frac{(-2)^4}{4} - 2(-2)^2 \right)

>
A1=0(1642(4))A_1 = 0 - \left( \frac{16}{4} - 2(4) \right)

>
A1=(48)=(4)=4A_1 = - (4 - 8) = - (-4) = 4

>

A2=02(3x(x3x))dx=02(4xx3)dxA_2 = \int_0^2 (3x - (x^3 - x)) \,dx = \int_0^2 (4x - x^3) \,dx

>
A2=[2x2x44]02A_2 = \left[ 2x^2 - \frac{x^4}{4} \right]_0^2

>
A2=(2(2)2244)(2(0)2044)A_2 = \left( 2(2)^2 - \frac{2^4}{4} \right) - \left( 2(0)^2 - \frac{0^4}{4} \right)

>
A2=(2(4)164)0A_2 = \left( 2(4) - \frac{16}{4} \right) - 0

>
A2=(84)=4A_2 = (8 - 4) = 4

Step 4: Sum the areas.

>

A=A1+A2=4+4=8A = A_1 + A_2 = 4 + 4 = 8

Answer: The total area is 88 square units.

:::question type="NAT" question="Find the area of the region bounded by y=exy = e^x, y=exy = e^{-x}, x=0x=0, and x=1x=1." answer="e + 1/e - 2" hint="Identify the upper and lower functions in the given interval and integrate their difference." solution="Step 1: Determine the upper and lower functions on the interval [0,1][0, 1].
For x[0,1]x \in [0, 1], exe^x is an increasing function and exe^{-x} is a decreasing function.
At x=0x=0, e0=1e^0 = 1 and e0=1e^{-0} = 1. The curves intersect at (0,1)(0,1).
For any x>0x > 0, ex>exe^x > e^{-x}. For example, at x=1x=1, e12.718e^1 \approx 2.718 and e10.368e^{-1} \approx 0.368.
So, y=exy=e^x is the upper function and y=exy=e^{-x} is the lower function on [0,1][0, 1].

Step 2: Set up and evaluate the integral.

A=01(exex)dxA = \int_0^1 (e^x - e^{-x}) \,dx

A=[ex(ex)]01A = \left[ e^x - (-e^{-x}) \right]_0^1

A=[ex+ex]01A = \left[ e^x + e^{-x} \right]_0^1

A=(e1+e1)(e0+e0)A = (e^1 + e^{-1}) - (e^0 + e^{-0})

A=(e+1e)(1+1)A = (e + \frac{1}{e}) - (1 + 1)

A=e+1e2A = e + \frac{1}{e} - 2

"
:::

---

Problem-Solving Strategies

💡 Sketch the Region

Always begin by sketching the graphs of the functions. This helps visualize the region, identify intersection points, and correctly determine which function is "above" or "to the right" in different intervals. A rough sketch is often sufficient.

💡 Identify Correct Limits

The limits of integration are either explicitly given or are the x- (or y-) coordinates of the intersection points of the bounding curves. If functions intersect multiple times, you may need to split the integral.

💡 Choose the Right Variable of Integration

Decide whether to integrate with respect to xx or yy. If the "upper" function changes multiple times when integrating with respect to xx, but a single "rightmost" function exists when integrating with respect to yy, then f(y)g(y)dy\int f(y) - g(y) \,dy will be simpler.

---

Common Mistakes

⚠️ Incorrect Order of Functions

❌ Integrating ab(g(x)f(x))dx\int_a^b (g(x) - f(x)) \,dx when f(x)f(x) is above g(x)g(x). This will yield the negative of the correct area.
✅ Always integrate (Upper function - Lower function) or (Rightmost function - Leftmost function). If unsure, use the absolute value: abf(x)g(x)dx\int_a^b |f(x) - g(x)| \,dx.

⚠️ Forgetting Absolute Value for Total Area

❌ Forgetting to split integrals or take absolute values when a function crosses the x-axis, leading to a net signed area instead of total unsigned area.
✅ If the region extends below the x-axis (or to the left of the y-axis for integration wrt yy), calculate the area of each sub-region separately and sum their absolute values.

⚠️ Algebraic Errors in Finding Intersection Points

❌ Incorrectly solving f(x)=g(x)f(x) = g(x) for intersection points leads to wrong limits of integration.
✅ Double-check the algebraic steps for solving equations. Graphing can help catch obvious errors.

---

Practice Questions

:::question type="MCQ" question="What is the area of the region bounded by y=cos(x)y = \cos(x) and y=sin(x)y = \sin(x) from x=0x=0 to x=π/2x=\pi/2?" options=["21\sqrt{2}-1","2222\sqrt{2}-2","11","π/4\pi/4"] answer="2222\sqrt{2}-2" hint="Find the intersection point within the interval and split the integral." solution="Step 1: Find intersection points in [0,π/2][0, \pi/2].
Set cos(x)=sin(x)\cos(x) = \sin(x). This occurs at x=π/4x = \pi/4.

Step 2: Determine upper and lower functions in each sub-interval.

  • For x[0,π/4]x \in [0, \pi/4], cos(x)sin(x)\cos(x) \ge \sin(x). (e.g., at x=0x=0, cos(0)=1,sin(0)=0\cos(0)=1, \sin(0)=0)

  • For x[π/4,π/2]x \in [\pi/4, \pi/2], sin(x)cos(x)\sin(x) \ge \cos(x). (e.g., at x=π/2x=\pi/2, sin(π/2)=1,cos(π/2)=0\sin(\pi/2)=1, \cos(\pi/2)=0)


Step 3: Set up and evaluate the integrals.
A=0π/4(cos(x)sin(x))dx+π/4π/2(sin(x)cos(x))dxA = \int_0^{\pi/4} (\cos(x) - \sin(x)) \,dx + \int_{\pi/4}^{\pi/2} (\sin(x) - \cos(x)) \,dx

First integral:
[sin(x)+cos(x)]0π/4=(sin(π/4)+cos(π/4))(sin(0)+cos(0))\left[ \sin(x) + \cos(x) \right]_0^{\pi/4} = (\sin(\pi/4) + \cos(\pi/4)) - (\sin(0) + \cos(0))

=(22+22)(0+1)=21= \left( \frac{\sqrt{2}}{2} + \frac{\sqrt{2}}{2} \right) - (0 + 1) = \sqrt{2} - 1

Second integral:
[cos(x)sin(x)]π/4π/2=(cos(π/2)sin(π/2))(cos(π/4)sin(π/4))\left[ -\cos(x) - \sin(x) \right]_{\pi/4}^{\pi/2} = (-\cos(\pi/2) - \sin(\pi/2)) - (-\cos(\pi/4) - \sin(\pi/4))

=(01)(2222)=1(2)=21= (0 - 1) - \left( -\frac{\sqrt{2}}{2} - \frac{\sqrt{2}}{2} \right) = -1 - (-\sqrt{2}) = \sqrt{2} - 1

Total area:
A=(21)+(21)=222A = (\sqrt{2} - 1) + (\sqrt{2} - 1) = 2\sqrt{2} - 2

"
:::

:::question type="NAT" question="Compute the area of the region bounded by y=x24y = x^2 - 4 and the x-axis." answer="32/3" hint="The parabola opens upwards and intersects the x-axis at two points. The region is below the x-axis." solution="Step 1: Find the x-intercepts (where y=0y=0).

x24=0x^2 - 4 = 0

(x2)(x+2)=0(x-2)(x+2) = 0

So, x=2x=-2 and x=2x=2. These are the limits of integration.

Step 2: Determine the function's position relative to the x-axis.
For x(2,2)x \in (-2, 2), x24x^2-4 is negative (e.g., at x=0x=0, y=4y=-4). The region is below the x-axis.
To find the area, we integrate (x24)=4x2-(x^2-4) = 4-x^2.

Step 3: Set up and evaluate the integral.

A=22((x24))dx=22(4x2)dxA = \int_{-2}^2 (-(x^2 - 4)) \,dx = \int_{-2}^2 (4 - x^2) \,dx

A=[4xx33]22A = \left[ 4x - \frac{x^3}{3} \right]_{-2}^2

A=(4(2)233)(4(2)(2)33)A = \left( 4(2) - \frac{2^3}{3} \right) - \left( 4(-2) - \frac{(-2)^3}{3} \right)

A=(883)(8+83)A = \left( 8 - \frac{8}{3} \right) - \left( -8 + \frac{8}{3} \right)

A=883+883=16163A = 8 - \frac{8}{3} + 8 - \frac{8}{3} = 16 - \frac{16}{3}

A=48163=323A = \frac{48 - 16}{3} = \frac{32}{3}

"
:::

:::question type="MCQ" question="The area of the region bounded by x=y22yx = y^2 - 2y and x=yx = y is:" options=["9/29/2","13/213/2","17/217/2","27/227/2"] answer="9/29/2" hint="Integrate with respect to y. Find intersection points first." solution="Step 1: Find intersection points.
Set y22y=yy^2 - 2y = y.

y23y=0y^2 - 3y = 0

y(y3)=0y(y - 3) = 0

So, y=0y=0 and y=3y=3. These are the limits of integration.

Step 2: Determine the rightmost and leftmost functions in the interval [0,3][0, 3].
Test y=1y=1:
x1=122(1)=1x_1 = 1^2 - 2(1) = -1
x2=1x_2 = 1
Since 1>11 > -1, x=yx=y is the rightmost function and x=y22yx=y^2-2y is the leftmost function.

Step 3: Set up and evaluate the integral.

A=03(y(y22y))dyA = \int_0^3 (y - (y^2 - 2y)) \,dy

A=03(yy2+2y)dyA = \int_0^3 (y - y^2 + 2y) \,dy

A=03(3yy2)dyA = \int_0^3 (3y - y^2) \,dy

A=[3y22y33]03A = \left[ \frac{3y^2}{2} - \frac{y^3}{3} \right]_0^3

A=(3(3)22333)(3(0)22033)A = \left( \frac{3(3)^2}{2} - \frac{3^3}{3} \right) - \left( \frac{3(0)^2}{2} - \frac{0^3}{3} \right)

A=(272273)0A = \left( \frac{27}{2} - \frac{27}{3} \right) - 0

A=2729=27182=92A = \frac{27}{2} - 9 = \frac{27 - 18}{2} = \frac{9}{2}

"
:::

:::question type="MSQ" question="Consider the region bounded by y=1xy = \frac{1}{x}, the x-axis, x=1x=1, and x=e2x=e^2. Select ALL correct statements." options=["The area of the region is 2.","The integral 1e21xdx\int_1^{e^2} \frac{1}{x} \,dx correctly calculates the area.","The region is entirely above the x-axis.","The area can be found by integrating with respect to y."] answer="The area of the region is 2.,The integral 1e21xdx\int_1^{e^2} \frac{1}{x} \,dx correctly calculates the area.,The region is entirely above the x-axis." hint="Examine the function y=1/xy=1/x on the given interval and its properties." solution="Step 1: Analyze the function y=1/xy = 1/x on the interval [1,e2][1, e^2].
For x[1,e2]x \in [1, e^2], 1/x1/x is continuous and positive. Thus, the region is entirely above the x-axis. This makes 'The region is entirely above the x-axis.' correct.

Step 2: Calculate the area using the definite integral.
Since y=1/xy=1/x is above the x-axis, the area is given by 1e21xdx\int_1^{e^2} \frac{1}{x} \,dx. This makes 'The integral 1e21xdx\int_1^{e^2} \frac{1}{x} \,dx correctly calculates the area.' correct.

A=1e21xdx=[lnx]1e2A = \int_1^{e^2} \frac{1}{x} \,dx = [\ln|x|]_1^{e^2}

A=ln(e2)ln(1)A = \ln(e^2) - \ln(1)

A=20=2A = 2 - 0 = 2

So, 'The area of the region is 2.' is correct.

Step 3: Evaluate the last option.
'The area can be found by integrating with respect to y.'
To integrate with respect to y, we would need to express xx as a function of yy. From y=1/xy=1/x, we get x=1/yx=1/y. The y-limits would range from y=1/e2y=1/e^2 (when x=e2x=e^2) to y=1y=1 (when x=1x=1).
The integral would be 1/e211ydy=[lny]1/e21=ln(1)ln(1/e2)=0ln(e2)=0(2)=2\int_{1/e^2}^1 \frac{1}{y} \,dy = [\ln|y|]_{1/e^2}^1 = \ln(1) - \ln(1/e^2) = 0 - \ln(e^{-2}) = 0 - (-2) = 2.
So, this statement is also correct.

Wait, I need to check the exact wording for MSQ. The prompt states 'Select ALL correct statements'. So if the y-integral is also correct, I should include it.
Re-reading the prompt 'The area can be found by integrating with respect to y.' This is true for this particular case. However, it's not always the easiest way or the standard way if the function is already y=f(x)y=f(x). Given the context of 'applications of integrals', this statement is generally true that an area can sometimes be found by integrating with respect to y. I will include it as correct.

Final check on the options and my choice.

  • 'The area of the region is 2.' - Correct.

  • 'The integral 1e21xdx\int_1^{e^2} \frac{1}{x} \,dx correctly calculates the area.' - Correct.

  • 'The region is entirely above the x-axis.' - Correct.

  • 'The area can be found by integrating with respect to y.' - Correct, as shown by the calculation.
  • It seems all four statements are correct. I need to output exactly 4 options for MCQ/MSQ. If all 4 are correct, that's fine.
    The question asks to select ALL correct. So all four are valid options.
    My initial thought of "The area can be found by integrating with respect to y." being potentially incorrect was not based on mathematical truth, but rather on it being less direct for this specific problem (since it's already y=f(x)y=f(x)). But mathematically, it can be found that way. So it is a correct statement.
    Therefore, all four options are correct.
    "answer" field for MSQ: comma-separated exact option texts.

    Answer: "The area of the region is 2.,The integral 1e21xdx\int_1^{e^2} \frac{1}{x} \,dx correctly calculates the area.,The region is entirely above the x-axis.,The area can be found by integrating with respect to y."
    "
    :::

    ---

    Summary

    Key Formulas & Takeaways

    |

    | Formula/Concept | Expression |

    |---|----------------|------------| | 1 | Area Under f(x)f(x) | A=abf(x)dxA = \int_a^b f(x) \,dx | | 2 | Total Area Under f(x)f(x) | A=abf(x)dxA = \int_a^b |f(x)| \,dx | | 3 | Area Between f(x)f(x) and g(x)g(x) (x-axis) | A=ab[f(x)g(x)]dxA = \int_a^b [f(x) - g(x)] \,dx (where f(x)g(x)f(x) \ge g(x)) | | 4 | Area Between f(y)f(y) and g(y)g(y) (y-axis) | A=cd[f(y)g(y)]dyA = \int_c^d [f(y) - g(y)] \,dy (where f(y)g(y)f(y) \ge g(y)) | | 5 | Strategy: Intersection Points | Crucial for defining limits of integration. Set functions equal to find them. | | 6 | Strategy: Sketching | Helps visualize the region and determine upper/lower or rightmost/leftmost functions. |

    ---

    What's Next?

    💡 Continue Learning

    This topic connects to:

      • Volume of Solids of Revolution: Areas are extended into 3D using disk, washer, or shell methods.

      • Arc Length: Integrals are used to find the length of a curve segment.

      • Surface Area of Revolution: Combining arc length and rotation to find surface areas.

      • Probability and Statistics: Probability density functions use areas under curves to represent probabilities.

    ---

    Chapter Summary

    Applications of Integrals — Key Points

    The definite integral abf(x)dx\int_a^b f(x) \, dx quantifies the net signed area between the curve y=f(x)y=f(x) and the x-axis from x=ax=a to x=bx=b.
    To determine the total area between y=f(x)y=f(x) and the x-axis over [a,b][a,b], evaluate abf(x)dx\int_a^b |f(x)| \, dx. This often necessitates identifying roots and partitioning the integral.
    The area bounded by two curves y=f(x)y=f(x) and y=g(x)y=g(x) over [a,b][a,b] is given by abf(x)g(x)dx\int_a^b |f(x) - g(x)| \, dx. If f(x)g(x)f(x) \ge g(x) on [a,b][a,b], this simplifies to ab(f(x)g(x))dx\int_a^b (f(x) - g(x)) \, dx.
    For regions defined by curves x=f(y)x=f(y) and x=g(y)x=g(y) from y=cy=c to y=dy=d, the area is calculated as cdf(y)g(y)dy\int_c^d |f(y) - g(y)| \, dy.
    Accurately identifying intersection points is critical for establishing the correct limits of integration when these are not explicitly provided.
    A preliminary sketch of the region is invaluable for correctly identifying the "upper" and "lower" (or "right" and "left") functions and the appropriate integration bounds.

    ---

    Chapter Review Questions

    :::question type="MCQ" question="What is the total area bounded by the curve y=x24y = x^2 - 4 and the x-axis?" options=["163\frac{16}{3}", "323\frac{32}{3}", "163-\frac{16}{3}", "00"] answer="323\frac{32}{3}" hint="Identify the x-intercepts to define the integration interval. Remember that total area requires considering the absolute value of the function." solution="The curve y=x24y=x^2-4 intersects the x-axis at x=2x=-2 and x=2x=2. The parabola opens upwards, meaning the region between the curve and the x-axis from x=2x=-2 to x=2x=2 lies below the x-axis.
    The total area is calculated as 22x24dx=22(x24)dx=22(4x2)dx\int_{-2}^{2} |x^2-4| \, dx = \int_{-2}^{2} -(x^2-4) \, dx = \int_{-2}^{2} (4-x^2) \, dx.
    Utilizing symmetry, this is 202(4x2)dx2 \int_{0}^{2} (4-x^2) \, dx.
    Evaluating the integral: 2[4xx33]02=2((4(2)233)(0))=2(883)=2(2483)=2(163)=3232 \left[ 4x - \frac{x^3}{3} \right]_0^2 = 2 \left( (4(2) - \frac{2^3}{3}) - (0) \right) = 2 \left( 8 - \frac{8}{3} \right) = 2 \left( \frac{24-8}{3} \right) = 2 \left( \frac{16}{3} \right) = \frac{32}{3}."
    :::

    :::question type="NAT" question="Calculate the area of the region bounded by y=x2y = x^2 and y=x+2y = x+2." answer="4.5" hint="Determine the points of intersection of the two curves. Then, identify which function is greater over the interval of integration." solution="First, find the intersection points by setting the equations equal: x2=x+2x^2 = x+2.
    Rearranging gives x2x2=0x^2 - x - 2 = 0, which factors as (x2)(x+1)=0(x-2)(x+1) = 0.
    Thus, the intersection points occur at x=1x=-1 and x=2x=2.
    Over the interval [1,2][-1, 2], we need to determine which function is the 'upper' curve. Testing x=0x=0, y=02=0y=0^2=0 and y=0+2=2y=0+2=2. Since 2>02 > 0, y=x+2y=x+2 is the upper curve.
    The area is 12((x+2)x2)dx\int_{-1}^{2} ((x+2) - x^2) \, dx.
    Evaluating the integral:
    [x22+2xx33]12\left[ \frac{x^2}{2} + 2x - \frac{x^3}{3} \right]_{-1}^{2}
    =(222+2(2)233)((1)22+2(1)(1)33)= \left( \frac{2^2}{2} + 2(2) - \frac{2^3}{3} \right) - \left( \frac{(-1)^2}{2} + 2(-1) - \frac{(-1)^3}{3} \right)
    =(2+483)(122+13)= \left( 2 + 4 - \frac{8}{3} \right) - \left( \frac{1}{2} - 2 + \frac{1}{3} \right)
    =(683)(32+13)= \left( 6 - \frac{8}{3} \right) - \left( -\frac{3}{2} + \frac{1}{3} \right)
    =(1883)(9+26)= \left( \frac{18-8}{3} \right) - \left( \frac{-9+2}{6} \right)
    =103(76)=103+76=206+76=276=4.5= \frac{10}{3} - \left( -\frac{7}{6} \right) = \frac{10}{3} + \frac{7}{6} = \frac{20}{6} + \frac{7}{6} = \frac{27}{6} = 4.5."
    :::

    :::question type="MCQ" question="Find the area of the region bounded by x=y2x = y^2 and x=2yx = 2-y." options=["92\frac{9}{2}", "276\frac{27}{6}", "163\frac{16}{3}", "323\frac{32}{3}"] answer="92\frac{9}{2}" hint="Integrate with respect to yy. Determine the intersection points in terms of yy and identify the 'rightmost' curve." solution="To find the intersection points, set y2=2yy^2 = 2-y.
    Rearranging gives y2+y2=0y^2 + y - 2 = 0, which factors as (y+2)(y1)=0(y+2)(y-1) = 0.
    Thus, the intersection points occur at y=2y=-2 and y=1y=1.
    Over the interval [2,1][-2, 1], we need to determine which function is the 'rightmost' curve. Testing y=0y=0, x=02=0x=0^2=0 and x=20=2x=2-0=2. Since 2>02 > 0, x=2yx=2-y is the rightmost curve.
    The area is 21((2y)y2)dy\int_{-2}^{1} ((2-y) - y^2) \, dy.
    Evaluating the integral:
    [2yy22y33]21\left[ 2y - \frac{y^2}{2} - \frac{y^3}{3} \right]_{-2}^{1}
    =(2(1)122133)(2(2)(2)22(2)33)= \left( 2(1) - \frac{1^2}{2} - \frac{1^3}{3} \right) - \left( 2(-2) - \frac{(-2)^2}{2} - \frac{(-2)^3}{3} \right)
    =(21213)(44283)= \left( 2 - \frac{1}{2} - \frac{1}{3} \right) - \left( -4 - \frac{4}{2} - \frac{-8}{3} \right)
    =(12326)(42+83)= \left( \frac{12-3-2}{6} \right) - \left( -4 - 2 + \frac{8}{3} \right)
    =76(6+83)= \frac{7}{6} - \left( -6 + \frac{8}{3} \right)
    =76(18+83)= \frac{7}{6} - \left( \frac{-18+8}{3} \right)
    =76(103)=76+206=276=92= \frac{7}{6} - \left( -\frac{10}{3} \right) = \frac{7}{6} + \frac{20}{6} = \frac{27}{6} = \frac{9}{2}."
    :::

    :::question type="NAT" question="Find the area of the region bounded by y=x1y = |x-1| and y=2y=2." answer="4" hint="Sketch the region to visualize the 'V' shape of the absolute value function. Identify intersection points to establish integration limits and consider splitting the integral if necessary, or use geometric properties." solution="The curve y=x1y=|x-1| has its vertex at (1,0)(1,0). It consists of two linear segments: y=(x1)=1xy=-(x-1) = 1-x for x1x \le 1 and y=x1y=x-1 for x1x \ge 1.
    The line y=2y=2 intersects y=x1y=|x-1| when x1=2|x-1|=2.
    This yields two possibilities: x1=2    x=3x-1=2 \implies x=3 or x1=2    x=1x-1=-2 \implies x=-1.
    The region is bounded above by y=2y=2 and below by y=x1y=|x-1|.
    The total area is given by 13(2x1)dx\int_{-1}^{3} (2 - |x-1|) \, dx.
    Due to the absolute value, we split the integral at x=1x=1:
    Area =11(2(1x))dx+13(2(x1))dx= \int_{-1}^{1} (2 - (1-x)) \, dx + \int_{1}^{3} (2 - (x-1)) \, dx
    =11(1+x)dx+13(3x)dx= \int_{-1}^{1} (1+x) \, dx + \int_{1}^{3} (3-x) \, dx

    Evaluate the first integral:
    [x+x22]11=(1+122)(1+(1)22)=(1+12)(1+12)=32(12)=42=2\left[ x + \frac{x^2}{2} \right]_{-1}^{1} = \left( 1 + \frac{1^2}{2} \right) - \left( -1 + \frac{(-1)^2}{2} \right) = \left( 1 + \frac{1}{2} \right) - \left( -1 + \frac{1}{2} \right) = \frac{3}{2} - (-\frac{1}{2}) = \frac{4}{2} = 2.

    Evaluate the second integral:
    [3xx22]13=(3(3)322)(3(1)122)=(992)(312)=9252=42=2\left[ 3x - \frac{x^2}{2} \right]_{1}^{3} = \left( 3(3) - \frac{3^2}{2} \right) - \left( 3(1) - \frac{1^2}{2} \right) = \left( 9 - \frac{9}{2} \right) - \left( 3 - \frac{1}{2} \right) = \frac{9}{2} - \frac{5}{2} = \frac{4}{2} = 2.

    Total Area =2+2=4= 2 + 2 = 4.

    Alternatively, by geometry: The region is a triangle with vertices at (1,2)(-1,2), (1,0)(1,0), and (3,2)(3,2). This is a simple triangle with base length 3(1)=43 - (-1) = 4 and height 20=22 - 0 = 2. The area of this triangle is 12×base×height=12×4×2=4\frac{1}{2} \times \text{base} \times \text{height} = \frac{1}{2} \times 4 \times 2 = 4."
    :::

    ---

    What's Next?

    💡 Continue Your CMI Journey

    With a solid understanding of calculating areas using definite integrals, you are poised to advance to further applications. The immediate next steps involve exploring Volumes of Revolution, employing methods such as the Disk/Washer and Shell techniques, which directly extend the concept of integrating infinitesimal cross-sectional areas. Subsequent topics like Arc Length and Surface Area of Revolution will further enrich your grasp of integral calculus's geometric power. These applications are fundamental for a comprehensive command of the CMI Calculus syllabus.

    🎯 Key Points to Remember

    • Master the core concepts in Applications of Integrals 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