JEE Maths — Application of Integrals Complete Chapter Guide

medium JEE-MAIN 4 min read

Question

How do we use definite integrals to find the area bounded by curves? Walk through the method for area between two curves, area under a parabola, and choosing between horizontal and vertical strips.

(JEE Main — method selection + computation)


Solution — Step by Step

The area between a curve y=f(x)y = f(x) and the x-axis from x=ax = a to x=bx = b:

A=abf(x)dxA = \int_a^b |f(x)|\,dx

The absolute value is critical — if the curve dips below the x-axis, integrate the positive and negative parts separately.

For two curves y=f(x)y = f(x) (upper) and y=g(x)y = g(x) (lower):

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

Example: Area between y=x2y = x^2 and y=xy = x from x=0x = 0 to x=1x = 1.

Here y=xy = x is above y=x2y = x^2 in [0,1][0, 1]:

A=01(xx2)dx=[x22x33]01=1213=16A = \int_0^1 (x - x^2)\,dx = \left[\frac{x^2}{2} - \frac{x^3}{3}\right]_0^1 = \frac{1}{2} - \frac{1}{3} = \mathbf{\frac{1}{6}}

If the curves are easier to express as x=f(y)x = f(y), integrate with respect to yy:

A=y1y2[xrightxleft]dyA = \int_{y_1}^{y_2} [x_{\text{right}} - x_{\text{left}}]\,dy

Use horizontal strips when: the bounding curves are of the form x=(something in y)x = (\text{something in } y), or when vertical strips would require splitting the integral into multiple parts.

Problem TypeApproach
Area under parabola y=ax2y = ax^2Vertical strips, straightforward
Area of ellipseA=πabA = \pi ab (derive via \int or use formula)
Area between parabola and lineFind intersection points first, then integrate difference
Area bounded by $x

Find the area enclosed between y2=4xy^2 = 4x and y=xy = x.

Intersection: y2=4yy=0,4y^2 = 4y \Rightarrow y = 0, 4, so x=0,4x = 0, 4.

Using horizontal strips (easier here since parabola gives x=y2/4x = y^2/4):

A=04(yy24)dy=[y22y312]04=8163=83A = \int_0^4 \left(y - \frac{y^2}{4}\right)\,dy = \left[\frac{y^2}{2} - \frac{y^3}{12}\right]_0^4 = 8 - \frac{16}{3} = \mathbf{\frac{8}{3}}
graph TD
    A["Area Problem"] --> B{"Curves given as y = f of x?"}
    B -->|Yes| C["Vertical strips: integrate dx"]
    B -->|No| D{"Curves as x = g of y?"}
    D -->|Yes| E["Horizontal strips: integrate dy"]
    C --> F["Find intersection points"]
    E --> F
    F --> G["Identify upper/right curve"]
    G --> H["Integrate: upper minus lower"]
    H --> I["Check: use symmetry if possible"]
    style A fill:#fbbf24,stroke:#000,stroke-width:2px
    style H fill:#86efac,stroke:#000

Why This Works

The definite integral geometrically represents the signed area between a curve and an axis. When we compute ab[f(x)g(x)]dx\int_a^b [f(x) - g(x)]\,dx, we are summing up infinitesimally thin vertical rectangles, each of height f(x)g(x)f(x) - g(x) and width dxdx. The choice between vertical and horizontal strips is purely about convenience — both give the same answer.

The skill tested in JEE is not the integration itself (which is usually simple) but the setup: finding intersection points correctly, identifying which curve is on top, and choosing the right variable of integration.


Common Mistake

The number one error: forgetting to find intersection points or finding them incorrectly. If your limits of integration are wrong, the entire answer is wrong — even if the integration is perfect. Always solve f(x)=g(x)f(x) = g(x) carefully and verify by plugging back. Also, do not forget the absolute value when a curve crosses the axis within the integration interval.

For JEE Main, about 1 question per paper comes from this chapter. Most are straightforward area-between-curves problems. The parabola-line and parabola-parabola combinations are the most common. Practise these 10 standard types and you will cover 90% of what appears.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next