Sarkari RiseLogin

Integral Calculus Questions for NDA

Free, AI-curated practice for the Integral Calculus section of NDA. We have 15+ verified questions in this bank. Below: 5 sample questions. Sign up free to unlock unlimited practice + AI explanations + per-topic analytics.

▶ Start free — NDA mockAll NDA resourcesAlready a user? Sign in →
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.

Sample questions

Q1 · medium · AI-verified
If ∫f(x)dx = F(x) + C, then ∫f(ax + b)dx equals:
  1. F(ax + b) + C
  2. (1/a)F(ax + b) + C
  3. aF(ax + b) + C
  4. F(ax + b)/a + C
Q2 · medium · AI-verified
Find the value of ∫(2x + 3)dx from x = 1 to x = 4
  1. 21
  2. 24
  3. 27
  4. 30
Q3 · medium · AI-verified
The value of ∫cos(3x)dx from x = 0 to x = π/6 is:
  1. 0
  2. 1/3
  3. 2/3
  4. 1
Q4 · medium · AI-verified
Evaluate the definite integral ∫₀¹ (3x² + 2x - 1) dx
  1. 1
  2. 3/2
  3. 2
  4. 0
Q5 · medium · AI-verified
∫(1/√(1 - x²))dx equals:
  1. sin⁻¹x + C
  2. cos⁻¹x + C
  3. tan⁻¹x + C
  4. -sin⁻¹x + C
💡 Want answers + explanations + 10+ more Integral Calculus questions? Sign up free →
⭐ Recommended for NDA aspirants

Pro Plus 6-month

Full SSB AI Interviewer + Essay Coach included
₹2,499~₹13.8/day
Sign up free, then unlockSee all plans →

More NDA topics

Trigonometry
35+ practice questions
Vocabulary
16+ practice questions
Heat and Thermodynamics
15+ practice questions
Modern Physics Basics
15+ practice questions
Physical Geography
15+ practice questions
Algebra and Matrices
15+ practice questions

Free practice, AI explanations, 24 exams — all in one app

Daily 10-Q quiz · AI doubt solver in Hindi + English · adaptive mocks · 4,150+ verified PYQs.

Sign up freePricingTry Daily 10-Q