Application of Integrals: Tricky Questions Solved (1)

easy 2 min read

Question

Find the area enclosed by the curve y=x2y = x^2, the xx-axis, and the lines x=1x = 1 and x=3x = 3.

Solution — Step by Step

The area between y=x2y = x^2 and the xx-axis from x=1x = 1 to x=3x = 3:

A=13x2dxA = \int_1^3 x^2\, dx

Since y=x20y = x^2 \geq 0 everywhere, no sign issues.

x2dx=x33\int x^2\, dx = \frac{x^3}{3}

A=[x33]13=27313=913=263A = \left[\frac{x^3}{3}\right]_1^3 = \frac{27}{3} - \frac{1}{3} = 9 - \frac{1}{3} = \frac{26}{3}

Final answer: A=263A = \dfrac{26}{3} square units.

Why This Works

A definite integral computes the signed area between a curve and the xx-axis. When the curve is above the axis (positive yy), the integral gives a positive area directly. When the curve dips below, we get a negative contribution. For unsigned area, we integrate f(x)|f(x)| or split the interval at zeros.

For y=x2y = x^2 on [1,3][1, 3], the curve is above the axis throughout, so the integral gives the geometric area straight up.

Alternative Method

Use the average value approach. The average of x2x^2 on [1,3][1, 3] is approximately (1+9)/2=5(1 + 9)/2 = 5 (rough Simpson estimate). Multiplying by interval length 22 gives 10\approx 10, close to the exact 26/38.6726/3 \approx 8.67. Useful as a sanity check.

For a cleaner numerical method, the function is monotonic, so the area is between rectangles of heights 11 and 99 over width 22: between 22 and 1818. The exact value 8.678.67 fits.

For curves crossing the xx-axis inside the interval, split into pieces. For y=x3y = x^3 on [1,1][-1, 1], the integral is zero (signed), but the geometric area is 10x3dx+01x3dx=1/4+1/4=1/2\int_{-1}^0 |-x^3|\, dx + \int_0^1 x^3\, dx = 1/4 + 1/4 = 1/2.

Common Mistake

Forgetting to take absolute value when the curve dips below the axis. The phrase “area enclosed” usually means geometric (positive) area. If the integral gives a negative number, take its magnitude.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next