Why this topic matters · 10 min read
Integral Calculus is one of the highest-weightage topics in NDA Mathematics, typically contributing 10-15 questions per paper. NDA tests both indefinite and definite integrals, with heavy focus on standard formulas, substitution method, integration by parts, and properties of definite integrals. Expect at least 2-3 questions on definite integral properties and 2-3 on area under curves. This is a scoring topic if formulas are memorized cold — speed matters here.
Indefinite Integration — Standard Forms
Indefinite integration is the reverse of differentiation. When you integrate a function f(x), you find F(x) such that F'(x) = f(x). The result always has a constant C added. Think of it as 'undoing' the derivative. NDA directly tests whether you have memorized the standard integral table — no derivation needed, just recall and apply.
- Always add + C for indefinite integrals — forgetting it is a guaranteed mark loss in theory.
- Integral of x^n = x^(n+1)/(n+1) + C, valid for n not equal to -1.
- Integral of 1/x = ln|x| + C — the absolute value inside log is critical.
- Integral of e^x = e^x + C, integral of a^x = a^x / ln(a) + C.
- Trig integrals: sin x gives -cos x, cos x gives sin x, sec^2 x gives tan x, cosec^2 x gives -cot x.
- Integral of sec x tan x = sec x + C, integral of cosec x cot x = -cosec x + C.
Key formulas
Power Rule
integral of x^n dx = x^(n+1)/(n+1) + C
When: Any polynomial term, n not equal to -1
Exponential
integral of e^(ax) dx = e^(ax)/a + C
When: Exponential with linear argument
1/x Form
integral of 1/x dx = ln|x| + C
When: When n = -1 case
Trig Basics
integral of sin(ax) dx = -cos(ax)/a + C
When: Direct trig integration
Inverse Trig 1
integral of 1/sqrt(1-x^2) dx = arcsin(x) + C
When: When denominator has sqrt(1-x^2)
Inverse Trig 2
integral of 1/(1+x^2) dx = arctan(x) + C
When: When denominator is 1+x^2
Worked examples
Integrate (3x^2 + 2x + 5): Apply power rule term by term. Answer = x^3 + x^2 + 5x + C.
Integrate e^(3x): Use e^(ax)/a formula. Answer = e^(3x)/3 + C.
Methods of Integration — Substitution and By Parts
When direct formula does not apply, NDA tests two main techniques. Substitution (t-substitution) works when you spot a function and its derivative both present. Integration by Parts (IBP) is used when two different types of functions are multiplied — like x times e^x, or x times sin x. The ILATE rule tells you which function to choose as the first function for IBP.
- Substitution: if integrand has f(g(x)) times g'(x), substitute t = g(x), dt = g'(x)dx.
- ILATE rule for IBP: Inverse trig, Logarithm, Algebraic, Trigonometric, Exponential — pick left-most as first function.
- IBP formula: integral of u.v dx = u times integral(v dx) minus integral(u' times integral(v dx)) dx.
- For integrals like integral of ln x dx, use IBP with u = ln x and v = 1.
- Substitution often used with sqrt expressions — substitute the entire root as t.
- Repeated IBP may be needed for x^2 e^x type problems — reduce power each time.
Key formulas
Integration by Parts
integral(u . v dx) = u . integral(v dx) - integral(u' . integral(v dx)) dx
When: Product of two different function types
t-Substitution
If t = g(x), then dt = g'(x)dx, replace and integrate in t
When: Composite function with its derivative present
Worked examples
Integrate x.e^x: Use IBP, u = x (Algebraic), v = e^x. Answer = x.e^x - e^x + C = e^x(x-1) + C.
Integrate 2x/(x^2+1): Substitute t = x^2+1, dt = 2x dx. Integral becomes 1/t dt = ln|t| + C = ln(x^2+1) + C.
Definite Integrals and Their Properties
A definite integral gives a numerical value — the area under the curve between two limits. NDA loves testing properties of definite integrals because they let you evaluate tricky integrals without actual computation. These properties are pure formula-based and extremely high yield — memorize all of them.
- Property 1: integral from a to b of f(x)dx = integral from a to b of f(a+b-x)dx — King's property, most used.
- Property 2: integral from 0 to a of f(x)dx = integral from 0 to a of f(a-x)dx — Queen's property.
- Property 3: integral from -a to a of f(x)dx = 2 times integral from 0 to a of f(x)dx if f is even, and 0 if f is odd.
- Property 4: integral from a to b = minus integral from b to a — swapping limits changes sign.
- Property 5: integral from 0 to 2a of f(x)dx = 2 times integral from 0 to a of f(x)dx if f(2a-x)=f(x), else 0.
- Definite integral of a periodic function over full period is same regardless of starting point.
Key formulas
King's Property
integral(a to b) f(x)dx = integral(a to b) f(a+b-x)dx
When: Simplifying complex definite integrals — most NDA questions use this
Even-Odd Property
integral(-a to a) f(x)dx = 2.integral(0 to a)f(x)dx if even; = 0 if odd
When: Symmetric limits — check if function is even or odd first
Fundamental Theorem
integral(a to b) f(x)dx = F(b) - F(a), where F'(x) = f(x)
When: Computing numerical value of any definite integral
Worked examples
Evaluate integral(0 to pi) x.sin(x)dx/(1+cos^2(x)): Use King's property, replace x with pi-x. The integral I equals pi/2 times integral(0 to pi) sin(x)/(1+cos^2(x))dx. Substitute t = cos x to get I = pi^2/4.
Evaluate integral(-2 to 2) x^3 dx: f(x) = x^3 is odd. By even-odd property, answer = 0 directly.
Area Under Curves
NDA asks you to find the area of regions bounded by curves, lines, or between two curves. The area under a curve y = f(x) between x = a and x = b is the definite integral of f(x). If the curve dips below the x-axis, take the absolute value of that integral. Area between two curves is the integral of the top curve minus the bottom curve.
- Area under y=f(x) from a to b = |integral(a to b) f(x)dx| — use modulus if curve is below x-axis.
- Area between two curves = integral(a to b) [f(x) - g(x)]dx where f(x) is upper curve.
- Find intersection points first by solving f(x) = g(x) — these become your limits.
- Area enclosed by a closed curve: split into parts if curve crosses x-axis within limits.
- NDA commonly asks area of region bounded by parabola and a line — standard setup.
Key formulas
Area Under Curve
A = integral(a to b) |f(x)| dx
When: Area between curve and x-axis
Area Between Curves
A = integral(a to b) [f(x) - g(x)] dx, f(x) >= g(x)
When: Region between two curves
Worked example
Find area between y = x^2 and y = x: Intersections at x=0 and x=1. Area = integral(0 to 1)(x - x^2)dx = [x^2/2 - x^3/3] from 0 to 1 = 1/2 - 1/3 = 1/6 square units.
⚠ Common mistakes to avoid
- Forgetting the constant C in indefinite integrals — even if the method is perfect, missing C can cost marks in MCQ matching type questions.
- In IBP, choosing the wrong first function — always follow ILATE strictly. Choosing e^x over x as first function makes the problem unsolvable cleanly.
- Not checking even or odd nature before integrating from -a to a — students waste time computing what is simply zero for odd functions.
- Using King's property but forgetting to add both I equations before solving — write I + I = 2I step explicitly, not mentally.
- In area problems, not taking absolute value when curve is below x-axis — integrating a negative area and subtracting it instead of adding gives wrong answer.
🧠 Memory aids
- ILATE for Integration by Parts: I Love All The Elephants — Inverse trig, Log, Algebraic, Trig, Exponential.
- King and Queen properties: King replaces x with (a+b-x), Queen replaces x with (a-x) — King rules over both limits, Queen only from 0.
- Even function: graph is Mirror image — integral doubles. Odd function: graph is Rotated — integral cancels to zero. Even = Double, Odd = Zero.
- For trig standard integrals, remember the sign flip: sin integrates to MINUS cos, cos integrates to PLUS sin — opposite to their derivatives.
🎯 NDA exam tips
- NDA typically places 3-4 questions on definite integral properties alone — King's property appears almost every paper. Drill it until it is automatic.
- Questions on area under curve are usually straightforward — parabola vs line or circle vs line. Practice 5-6 standard setups and you will recognize them instantly in exam.
- Time management: indefinite integration questions with substitution should take 60-90 seconds. If you are stuck beyond 2 minutes, move on and return later.
- Standard form integrals (inverse trig, exponential) appear as direct one-step MCQs — these are easy marks. Memorizing the full standard table of 20 integrals is non-negotiable.
- NDA does not ask heavy proof-based questions — focus on application. A question showing an integral and asking which method applies, or giving options for value of a definite integral, are the most common formats.
Q1 · medium · AI-verified
If ∫f(x)dx = F(x) + C, then ∫f(ax + b)dx equals:
- F(ax + b) + C
- (1/a)F(ax + b) + C
- aF(ax + b) + C
- F(ax + b)/a + C
Q2 · medium · AI-verified
Find the value of ∫(2x + 3)dx from x = 1 to x = 4
- 21
- 24
- 27
- 30
Q3 · medium · AI-verified
The value of ∫cos(3x)dx from x = 0 to x = π/6 is:
- 0
- 1/3
- 2/3
- 1
Q4 · medium · AI-verified
Evaluate the definite integral ∫₀¹ (3x² + 2x - 1) dx
- 1
- 3/2
- 2
- 0
Q5 · medium · AI-verified
∫(1/√(1 - x²))dx equals:
- sin⁻¹x + C
- cos⁻¹x + C
- tan⁻¹x + C
- -sin⁻¹x + C