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 x2โˆ’xโˆ’2=0x^2 - x - 2 = 0 (xโˆ’2)(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+2xโˆ’x33]โˆ’12A = \left[ \frac{x^2}{2} + 2x - \frac{x^3}{3} \right]_{-1}^{2} Evaluate at the upper bound (x=2x=2): 42+4โˆ’83=2+4โˆ’83=103\frac{4}{2} + 4 - \frac{8}{3} = 2 + 4 - \frac{8}{3} = \frac{10}{3} Evaluate at the lower bound (x=โˆ’1x=-1): 12โˆ’2โˆ’(โˆ’13)=12โˆ’2+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=sinโกxy = \sin x and y=cosโกxy = \cos x on the interval [0,ฯ€][0, \pi].

Step 1: Find intersections. Set sinโกx=cosโกx\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}]: cosโกxโ‰ฅsinโกx\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]: sinโกxโ‰ฅcosโกx\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(cosโกxโˆ’sinโกx)โ€‰dx=[sinโกx+cosโกx]0ฯ€/4A_1 = \int_{0}^{\pi/4} (\cos x - \sin x) \, dx = [\sin x + \cos x]_{0}^{\pi/4} A1=(22+22)โˆ’(0+1)=2โˆ’1A_1 = \left(\frac{\sqrt{2}}{2} + \frac{\sqrt{2}}{2}\right) - (0 + 1) = \sqrt{2} - 1

Second Region: A2=โˆซฯ€/4ฯ€(sinโกxโˆ’cosโกx)โ€‰dx=[โˆ’cosโกxโˆ’sinโกx]ฯ€/4ฯ€A_2 = \int_{\pi/4}^{\pi} (\sin x - \cos x) \, dx = [-\cos x - \sin x]_{\pi/4}^{\pi} A2=(โˆ’(โˆ’1)โˆ’0)โˆ’(โˆ’22โˆ’22)=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=(2โˆ’1)+(1+2)=22A = A_1 + A_2 = (\sqrt{2} - 1) + (1 + \sqrt{2}) = 2\sqrt{2}