Facebook Pixel
Mathos AI logo

Area Between Curves

Area Between Curves

Finding the area between two curves is a direct application of definite integrals. Instead of finding the area under a single curve down to the x-axis, we calculate the area of the region bounded between an upper curve and a lower curve.

The Formula

If a function f(x)f(x) is greater than or equal to another function g(x)g(x) on an interval [a,b][a, b] (meaning f(x)f(x) is the "top" curve and g(x)g(x) is the "bottom" curve), the area AA between them is:

A=ab[f(x)g(x)]dxA = \int_{a}^{b} [f(x) - g(x)] \, dx

Steps to Find the Area

  1. Find the intersection points: Set the two equations equal to each other to find where the curves intersect. These xx-values will usually be your limits of integration, aa and bb.
  2. Determine the upper and lower functions: Pick a test point between aa and bb to see which function has the higher yy-value.
  3. Set up the integral: Subtract the lower function from the upper function.
  4. Integrate and evaluate: Compute the definite integral.

Example 1: Bounded by Two Functions

Problem: Find the area between y=x2y = x^2 and y=x+2y = x + 2.

Step 1: Find intersections. Set the equations equal to each other: x2=x+2x^2 = x + 2 x2x2=0x^2 - x - 2 = 0 (x2)(x+1)=0(x - 2)(x + 1) = 0 The curves intersect at x=1x = -1 and x=2x = 2. These are our bounds.

Step 2: Determine upper and lower functions. Pick a test point in the interval [1,2][-1, 2], such as x=0x = 0:

  • y=(0)2=0y = (0)^2 = 0
  • y=(0)+2=2y = (0) + 2 = 2

Since 2>02 > 0, y=x+2y = x + 2 is the upper function and y=x2y = x^2 is the lower function.

Step 3 & 4: Set up and evaluate the integral. A=12[(x+2)x2]dxA = \int_{-1}^{2} [(x + 2) - x^2] \, dx A=[x22+2xx33]12A = \left[ \frac{x^2}{2} + 2x - \frac{x^3}{3} \right]_{-1}^{2} Evaluate at the upper bound (x=2x=2): 42+483=2+483=103\frac{4}{2} + 4 - \frac{8}{3} = 2 + 4 - \frac{8}{3} = \frac{10}{3} Evaluate at the lower bound (x=1x=-1): 122(13)=122+13=76\frac{1}{2} - 2 - \left(-\frac{1}{3}\right) = \frac{1}{2} - 2 + \frac{1}{3} = -\frac{7}{6} Subtract the lower bound result from the upper bound result: A=103(76)=206+76=276=92A = \frac{10}{3} - \left(-\frac{7}{6}\right) = \frac{20}{6} + \frac{7}{6} = \frac{27}{6} = \frac{9}{2}

Example 2: Functions that Cross Over

Problem: Find the area enclosed by y=sinxy = \sin x and y=cosxy = \cos x on the interval [0,π][0, \pi].

Step 1: Find intersections. Set sinx=cosx\sin x = \cos x. On the interval [0,π][0, \pi], this occurs at x=π4x = \frac{\pi}{4}. Because the curves cross, the upper and lower functions will switch. We must split the integral into two parts: [0,π4][0, \frac{\pi}{4}] and [π4,π][\frac{\pi}{4}, \pi].

Step 2: Determine upper and lower functions for each interval.

  • On [0,π4][0, \frac{\pi}{4}]: cosxsinx\cos x \ge \sin x (e.g., at x=0x=0, cos(0)=1\cos(0)=1, sin(0)=0\sin(0)=0).
  • On [π4,π][\frac{\pi}{4}, \pi]: sinxcosx\sin x \ge \cos x (e.g., at x=π2x=\frac{\pi}{2}, sin(π2)=1\sin(\frac{\pi}{2})=1, cos(π2)=0\cos(\frac{\pi}{2})=0).

Step 3 & 4: Set up and evaluate the integrals.

First Region: A1=0π/4(cosxsinx)dx=[sinx+cosx]0π/4A_1 = \int_{0}^{\pi/4} (\cos x - \sin x) \, dx = [\sin x + \cos x]_{0}^{\pi/4} A1=(22+22)(0+1)=21A_1 = \left(\frac{\sqrt{2}}{2} + \frac{\sqrt{2}}{2}\right) - (0 + 1) = \sqrt{2} - 1

Second Region: A2=π/4π(sinxcosx)dx=[cosxsinx]π/4πA_2 = \int_{\pi/4}^{\pi} (\sin x - \cos x) \, dx = [-\cos x - \sin x]_{\pi/4}^{\pi} A2=((1)0)(2222)=1(2)=1+2A_2 = (-(-1) - 0) - \left(-\frac{\sqrt{2}}{2} - \frac{\sqrt{2}}{2}\right) = 1 - (-\sqrt{2}) = 1 + \sqrt{2}

Total Area: A=A1+A2=(21)+(1+2)=22A = A_1 + A_2 = (\sqrt{2} - 1) + (1 + \sqrt{2}) = 2\sqrt{2}