Indefinite Integration for NDA — Antiderivatives, Substitution & Standard Forms

intermediate 22 min read

Concept

Integration is the reverse of differentiation. When you differentiate F(x) and get f(x), then integrating f(x) gives you back F(x) — plus a constant. That constant is the entire story of why indefinite integration carries a + C at the end.

Think of it this way: differentiation is like a machine that tells you the slope of a curve at every point. Integration is the same machine running backwards — given the slope everywhere, reconstruct the original curve. But here's the catch: infinitely many curves can have the same slope function, each one shifted vertically. The + C captures all of them at once.

More formally, if d/dx [F(x)] = f(x), then ∫ f(x) dx = F(x) + C. We call F(x) the antiderivative (प्रतिअवकल) of f(x).

The symbol is an elongated S, historically standing for "summa" (sum), because integration ultimately connects to summing infinitely many infinitesimally thin strips — but at the indefinite stage, you don't need to worry about limits. Limits appear in definite integration.

Why NDA cares about this: The NDA Maths paper regularly places 3-5 questions on integration. Most of them test whether you can quickly recognise which technique applies — substitution, a standard formula, or a trigonometric identity. The ones that seem hard are usually just disguised versions of a formula you already know. Your job in the exam hall is the recognition, not the derivation.


Deep Dive

The Standard Forms You Must Own

These are non-negotiable. Commit them to memory the same way you memorised your times tables.

| Integrand | Result | |---|---| | xⁿ (n ≠ -1) | xⁿ⁺¹/(n+1) + C | | 1/x | ln|x| + C | | | eˣ + C | | sin x | -cos x + C | | cos x | sin x + C | | sec²x | tan x + C | | cosec²x | -cot x + C | | sec x tan x | sec x + C | | cosec x cot x | -cosec x + C | | 1/(x² + a²) | (1/a) tan⁻¹(x/a) + C | | 1/√(a² - x²) | sin⁻¹(x/a) + C |

The sign errors on the trig ones are where most NDA candidates drop marks. Notice: ∫sin x dx = -cos x + C (negative), but ∫cos x dx = +sin x + C (positive). The cosec² rule gives -cot x + C. Get these wrong in a hurry and you'll pick the mirror-image wrong answer — which is exactly what the option list is designed to tempt you with.

Substitution Method (u-substitution)

This is the workhorse technique. The idea: if the integrand contains a function and (roughly) its own derivative, substitute the inner function as u.

Trigger: You see f(g(x)) · g'(x). Set u = g(x), du = g'(x) dx. The integral collapses.

Example: ∫ x√(x² + 1) dx

Look — x dx is half the derivative of x² + 1. Set u = x² + 1, du = 2x dx, so x dx = du/2.

xx2+1dx=12u1/2du=1223u3/2+C=13(x2+1)3/2+C\int x\sqrt{x^2+1}\, dx = \frac{1}{2}\int u^{1/2}\, du = \frac{1}{2} \cdot \frac{2}{3} u^{3/2} + C = \frac{1}{3}(x^2+1)^{3/2} + C

Step count without substitution: You'd have to expand, attempt partial fractions, fail — several wasted minutes. With substitution: 4 lines.

Trigonometric Identity Reduction

Many trig integrals are unsolvable directly but become trivial after an identity. The two most common reductions:

Half-angle forms:

Protocol: Whenever you see 1 - cos x, 1 + cos x, sin²x, cos²x in the denominator or as the main integrand — apply the half-angle or double-angle identity immediately before doing anything else.

Integration by Parts

Used when the integrand is a product of two "unrelated" functions. The formula:

udv=uvvdu\int u\, dv = uv - \int v\, du

ILATE priority for choosing u: Inverse trig → Logarithm → Algebraic → Trigonometric → Exponential. Whatever comes first in ILATE is your u.

NDA rarely goes deeper than one application of integration by parts — they don't test iterated IBP or reduction formulae at this level. So if you're doing IBP twice on an NDA question, reconsider whether substitution works faster.

Standard Form for Inverse Trig Integrals

The form ∫ 1/(x² + a²) dx = (1/a) tan⁻¹(x/a) + C catches many candidates off guard because of the 1/a coefficient. The trap option always places tan⁻¹(x/a) + C (missing the 1/a) or 2 tan⁻¹(x/a) + C. Always verify: differentiate your answer and check it matches the integrand.

For a = 2: ∫ 1/(x² + 4) dx = (1/2) tan⁻¹(x/2) + C. Not tan⁻¹(x/2), not (1/4) tan⁻¹(x/2). The 1/a factor is 1/2.


Memory Tricks & Shortcuts

patternCAST-Sign for Trig Integrals

The four trig integrals (sin, cos, sec², cosec²) alternate signs in a specific pattern. Write:

  • ∫sin → **−**cos
  • ∫cos → **+**sin
  • ∫sec² → **+**tan
  • ∫cosec² → **−**cot

Pattern: negative, positive, positive, negative. Or remember "sin starts negative, cos starts positive, sec² positive, cosec² negative." Cross-check in 2 seconds by noticing: differentiating sin gives +cos (not -cos), so integrating goes opposite → -cos. This eliminates sign errors on option lists. Standard time to recall: 15s without this pattern; under 3s with it.

patternDerivative-Inside Scan for Substitution

Before writing a single line, scan the integrand for this: is there a composite function AND something proportional to its inner derivative also present? If yes, substitution will work. Specifically:

  • See x and x² + k → let u = x² + k
  • See sin x and cos x in numerator/denominator → let u = whichever is in the denominator
  • See f'(x)/f(x) → that's d/dx [ln|f(x)|], answer is ln|f(x)| + C

This scan takes under 10 seconds and saves you from attempting integration by parts on a substitution problem — which would cost 3+ minutes.

patternHalf-Angle Reflex for 1 ± cos x

Any time you see 1 - cos x or 1 + cos x (especially in the denominator), fire the half-angle identity immediately without thinking:

1 - cos x = 2sin²(x/2) and 1 + cos x = 2cos²(x/2)

The resulting integrand will always reduce to a cosec²(x/2) or sec²(x/2) form, giving a cot(x/2) or tan(x/2) answer. The only remaining step is the chain rule coefficient: ∫cosec²(x/2) dx. Since the inner function is x/2, its derivative is 1/2, so you divide by 1/2 (i.e., multiply by 2):

∫cosec²(x/2) dx = -2cot(x/2) + C

The 2025 NDA question is solved in 3 steps using this reflex. Without it: 8+ steps.

eliminationVerify by Differentiating — The 30-Second Confidence Check

After getting an answer, differentiate it mentally and check it matches the original integrand. This takes 15-30 seconds and eliminates all sign errors and coefficient errors. In a 4-option MCQ, the wrong options are typically the answer with a wrong sign or a wrong coefficient — one fast verification step separates full marks from zero on every integration question. Effective step-count saved: you avoid picking the "mirror" wrong answer, which appears in roughly 3 of 4 option lists on NDA integration questions.

patternILATE One-Shot Decision for IBP

For integration by parts ∫u dv = uv - ∫v du, you need to pick u instantly. Use ILATE in order: Inverse trig → Log → Algebra → Trig → Exponential

The first function present in this list becomes u. Example: ∫x eˣ dxx is Algebraic, is Exponential. A comes before E, so u = x, dv = eˣ dx. Result: x eˣ - eˣ + C. This decision takes under 5 seconds with ILATE. Without a rule, candidates spend 30-60 seconds trying both choices to see which simplifies.


Fast-Solving Framework

When an NDA integration question appears, run this decision tree:

Step 1 — Is it a direct standard form? Look at the integrand. Does it match xⁿ, sin x, cos x, 1/(x²+a²) etc. immediately? If yes, write the answer in under 20 seconds.

Step 2 — Is there a trig identity hiding? If you see sin²x, cos²x, 1 - cos x, 1 + cos x — apply the relevant identity first. The integral will collapse to a standard form.

Step 3 — Substitution scan. Is there a composite function with its derivative (or proportional derivative) present? Set u = inner function, convert, integrate.

Step 4 — Integration by parts. Is it a product of two unrelated function types? Apply ILATE, run one cycle of IBP.

If none of the above work within 30 seconds: look at the answer options. Work backwards — differentiate each option and see which matches the integrand. This reverse-check takes about 60 seconds and guarantees the correct answer on any standard NDA question without requiring you to execute the forward method at all.

Never guess without at least a sign-check on the options.


Solved PYQs

Why this question: This is a 2025 NDA question that tests the half-angle identity reflex — if you don't see 1 - cos x = 2sin²(x/2) immediately, the problem looks impossible.

Previous Year Questionपिछले वर्ष का प्रश्न2025
Let the function y = (1 − cos x)^(−1), where x ≠ 2nπ and n is an integer. What is ∫ y dx equal to?
  1. −tan(x/2) + c
  2. −cot(x/2) + c
  3. tan(x/2) + c
  4. cot(x/2) + c
Solutionसमाधान
Using 1 − cos x = 2 sin²(x/2), we get y = 1/(2 sin²(x/2)) = (1/2) cosec²(x/2). Then ∫ y dx = (1/2) ∫ cosec²(x/2) dx = (1/2)·(−2 cot(x/2)) + c = −cot(x/2) + c.

Solving path: Recognise 1 - cos x = 2sin²(x/2). Then y = 1/(2sin²(x/2)) = (1/2)cosec²(x/2). Integrate: (1/2) × (-2cot(x/2)) + C = -cot(x/2) + C. The factor of 2 in the antiderivative of cosec²(x/2) comes from the chain rule (inner derivative is 1/2, so you divide by 1/2). Answer: option B.


Why this question: Tests the 1/(x² + a²) standard form — the most commonly confused formula because of the 1/a coefficient that many candidates forget.

Previous Year Questionपिछले वर्ष का प्रश्न
∫(1/(x² + 4))dx equals:
∫(1/(x² + 4))dx बराबर है:
  1. (1/2)tan⁻¹(x/2) + C
  2. tan⁻¹(x/2) + C
  3. 2tan⁻¹(x/2) + C
  4. (1/4)tan⁻¹(x/2) + C
  1. (1/2)tan⁻¹(x/2) + C
  2. tan⁻¹(x/2) + C
  3. 2tan⁻¹(x/2) + C
  4. (1/4)tan⁻¹(x/2) + C
Solutionसमाधान
Using the standard form ∫1/(x² + a²)dx = (1/a)tan⁻¹(x/a) + C, where a = 2, we get (1/2)tan⁻¹(x/2) + C.
मानक रूप ∫1/(x² + a²)dx = (1/a)tan⁻¹(x/a) + C का उपयोग करके, जहाँ a = 2, हमें (1/2)tan⁻¹(x/2) + C मिलता है।

Solving path: Match to ∫ 1/(x² + a²) dx = (1/a)tan⁻¹(x/a) + C with a = 2. Result: (1/2)tan⁻¹(x/2) + C. Verify: differentiate (1/2)tan⁻¹(x/2) using chain rule: (1/2) × 1/(1 + x²/4) × (1/2) = (1/2) × 4/(4 + x²) × (1/2) = 1/(x² + 4). Confirmed. Answer: option A.


Why this question: Classic substitution problem. Recognising x dx as half of d(x²+1) is the key insight — the entire problem resolves in 4 lines.

Previous Year Questionपिछले वर्ष का प्रश्न
The integral ∫x√(x² + 1)dx equals:
समाकल ∫x√(x² + 1)dx बराबर है:
  1. (1/3)(x² + 1)^(3/2) + C
  2. (2/3)(x² + 1)^(3/2) + C
  3. (1/2)(x² + 1)^(3/2) + C
  4. (x² + 1)^(3/2) + C
  1. (1/3)(x² + 1)^(3/2) + C
  2. (2/3)(x² + 1)^(3/2) + C
  3. (1/2)(x² + 1)^(3/2) + C
  4. (x² + 1)^(3/2) + C
Solutionसमाधान
Let u = x² + 1, then du = 2x dx, so x dx = du/2. The integral becomes (1/2)∫u^(1/2)du = (1/2) × (2/3)u^(3/2) = (1/3)(x² + 1)^(3/2) + C.
मान लेते हैं u = x² + 1, तो du = 2x dx, अतः x dx = du/2। समाकलन (1/2)∫u^(1/2)du = (1/2) × (2/3)u^(3/2) = (1/3)(x² + 1)^(3/2) + C बन जाता है।

Solving path: Let u = x² + 1, du = 2x dx, so x dx = du/2. Integral becomes ∫√u × (du/2) = (1/2)∫u^(1/2) du = (1/2) × (2/3)u^(3/2) + C = (1/3)(x²+1)^(3/2) + C. Answer: option A.


Why this question: Tests the double-angle identity for sin²x — a very common NDA integrand that cannot be handled directly.

Previous Year Questionपिछले वर्ष का प्रश्न
The integral ∫sin²x dx equals:
समाकल ∫sin²x dx बराबर है:
  1. x/2 - (sin2x)/4 + C
  2. x/2 + (sin2x)/4 + C
  3. -x/2 + (sin2x)/4 + C
  4. x - (sin2x)/2 + C
  1. x/2 - (sin2x)/4 + C
  2. x/2 + (sin2x)/4 + C
  3. -x/2 + (sin2x)/4 + C
  4. x - (sin2x)/2 + C
Solutionसमाधान
Using the identity sin²x = (1 - cos2x)/2, we get ∫sin²x dx = ∫(1 - cos2x)/2 dx = x/2 - (sin2x)/4 + C.
sin²x = (1 - cos2x)/2 सर्वसमिका का उपयोग करके, हमें ∫sin²x dx = ∫(1 - cos2x)/2 dx = x/2 - (sin2x)/4 + C मिलता है।

Solving path: Apply sin²x = (1 - cos 2x)/2. Then ∫sin²x dx = ∫(1 - cos 2x)/2 dx = (1/2)∫1 dx - (1/2)∫cos 2x dx = x/2 - (1/2)(sin 2x / 2) + C = x/2 - sin(2x)/4 + C. Answer: option A. The trap is option B (wrong sign on the sin 2x term).


Why this question: Straightforward definite integral but included to show the evaluate-and-substitute process — also confirms that + C cancels in definite integrals.

Previous Year Questionपिछले वर्ष का प्रश्न
Find the value of ∫(2x + 3)dx from x = 1 to x = 4
x = 1 से x = 4 तक ∫(2x + 3)dx का मान ज्ञात कीजिए।
  1. 21
  2. 24
  3. 27
  4. 30
  1. 21
  2. 24
  3. 27
  4. 30
Solutionसमाधान
∫(2x + 3)dx = x² + 3x + C. Evaluating from 1 to 4: (16 + 12) - (1 + 3) = 28 - 4 = 24.
∫(2x + 3)dx = x² + 3x + C। 1 से 4 तक मूल्यांकन करने पर: (16 + 12) - (1 + 3) = 28 - 4 = 24।

Solving path: ∫(2x + 3) dx = x² + 3x + C. Evaluate from 1 to 4: [4² + 3(4)] - [1² + 3(1)] = [16 + 12] - [1 + 3] = 28 - 4 = 24. Answer: option B. Note C cancels — you never need C for definite integrals.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →