Application of Integrals: Edge Cases and Subtle Traps (5)

medium 3 min read

Question

Find the area enclosed between the curves y=x2y = x^2 and y=xy = x.

The trap: figuring out which curve is “on top” between the intersection points. Switch them by accident, and you’ll get a negative or zero answer.

Solution — Step by Step

Set x2=x    x2x=0    x(x1)=0x^2 = x \implies x^2 - x = 0 \implies x(x-1) = 0, so x=0x = 0 or x=1x = 1.

Pick a test point, say x=0.5x = 0.5.

y=x=0.5y = x = 0.5 vs. y=x2=0.25y = x^2 = 0.25.

The line y=xy = x is above the parabola y=x2y = x^2 in this interval.

A=01[(top)(bottom)]dx=01(xx2)dxA = \int_0^1 [(\text{top}) - (\text{bottom})] \, dx = \int_0^1 (x - x^2) \, dx

A=[x22x33]01=1213=16A = \left[\frac{x^2}{2} - \frac{x^3}{3}\right]_0^1 = \frac{1}{2} - \frac{1}{3} = \frac{1}{6}

Final answer: Area =16= \dfrac{1}{6} square units.

Why This Works

The integral ab[f(x)g(x)]dx\int_a^b [f(x) - g(x)] dx gives the signed area between ff and gg. If fgf \geq g throughout [a,b][a, b], the result is the actual geometric area.

If the curves cross within [a,b][a, b], you must split the integral at the crossing points and take absolute values of each piece — otherwise positive and negative parts cancel and you get a wrong answer.

If f(x)g(x)f(x) \geq g(x) on [a,b][a, b]:

A=ab[f(x)g(x)]dxA = \int_a^b [f(x) - g(x)] \, dx

If they cross at c(a,b)c \in (a, b):

A=acfgdx+cbfgdxA = \int_a^c |f - g| \, dx + \int_c^b |f - g| \, dx

Alternative Method

Switch to integrating with respect to yy. The curves become x=yx = y and x=yx = \sqrt{y} (taking the positive branch). For 0y10 \leq y \leq 1, yy\sqrt{y} \geq y, so:

A=01(yy)dy=[2y3/23y22]01=2312=16A = \int_0^1 (\sqrt{y} - y) \, dy = \left[\frac{2y^{3/2}}{3} - \frac{y^2}{2}\right]_0^1 = \frac{2}{3} - \frac{1}{2} = \frac{1}{6} \checkmark

For “area between two curves” problems, sketch the curves before integrating. A 30-second sketch reveals which is on top, where they intersect, and whether you need to split the integral.

Common Mistake

The five most common traps in area-by-integration problems:

  1. Wrong order: (x2x)dx\int (x^2 - x)\,dx instead of (xx2)dx\int (x - x^2)\,dx. Gives a negative; students take the absolute value at the end and might luck out, but the cleaner habit is to identify “top minus bottom” first.

  2. Forgetting to split at crossings: if the question is 12(x3)dx\int_{-1}^{2}(x^3)\,dx “as area,” you must split at x=0x = 0 since x3x^3 changes sign.

  3. Using the curve equation instead of fg|f - g|: 01x2dx\int_0^1 x^2\,dx is the area under y=x2y = x^2, not between y=x2y = x^2 and y=xy = x.

  4. Wrong integration limits: forgetting to find the intersection points first.

  5. Mixing up dxdx and dydy integrations: both work, but you have to set up the limits correctly for the chosen variable.

A solid sketch defeats all five.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next