Why this topic matters · 8 min read
This is a core calculus topic in Agniveer Vayu maths papers, typically worth 8-12 marks. Examiners test limit evaluation (algebraic, L'Hopital's rule), continuity checks at specific points, and derivative calculations. Questions often combine concepts—e.g., 'find the value of k for which f(x) is continuous, then differentiate.' Expect 2-3 multi-step problems in the exam.
Limits and Limit Laws
A limit describes the value a function approaches as the input approaches some value. Think of it like aiming at a target without necessarily hitting it. Limit laws let you break complex limits into simpler pieces. Key insight: the limit exists and equals L if the left-hand limit (approaching from negative side) and right-hand limit (approaching from positive side) both equal L. In Agniveer papers, you'll often see limits that look undefined at first (0/0 form) but can be simplified by factoring, rationalizing, or using L'Hopital's rule.
- lim(x→a) [f(x) + g(x)] = lim f(x) + lim g(x) (sum rule)
- lim(x→a) [f(x) × g(x)] = lim f(x) × lim g(x) (product rule)
- lim(x→a) [f(x) / g(x)] = lim f(x) / lim g(x), provided lim g(x) ≠ 0
- If lim(x→a) f(x) = L, then lim(x→a) [f(x)]^n = L^n (power rule)
- Sandwich theorem: if g(x) ≤ f(x) ≤ h(x) and lim g(x) = lim h(x) = L, then lim f(x) = L
Key formulas
L'Hopital's Rule
If lim(x→a) f(x)/g(x) gives 0/0 or ∞/∞, then lim(x→a) f(x)/g(x) = lim(x→a) f'(x)/g'(x)
When: When direct substitution gives indeterminate form; differentiate numerator and denominator separately
Standard Limit
lim(x→0) [sin(x)/x] = 1 and lim(x→0) [(e^x - 1)/x] = 1
When: Trigonometric and exponential limits near zero; memorize these
Worked examples
Find lim(x→2) [(x^2 - 4)/(x - 2)]. Factor: (x-2)(x+2)/(x-2) = x+2. Substitute x=2: answer is 4.
Find lim(x→0) [sin(3x)/x]. Rewrite as 3 × [sin(3x)/(3x)]. As x→0, sin(3x)/(3x)→1, so answer is 3.
Continuity at a Point
A function is continuous at a point if three conditions hold: (1) f(a) is defined, (2) lim(x→a) f(x) exists, and (3) lim(x→a) f(x) = f(a). Imagine drawing the graph without lifting your pen—that's continuity. Agniveer exams often ask: 'Find the value of constant k such that f(x) is continuous at x = a.' The trick is to set left-hand limit equal to right-hand limit equal to f(a), then solve for k.
- Continuous at a point means no jump, hole, or vertical asymptote at that point
- Check left-hand limit: lim(x→a-) f(x)
- Check right-hand limit: lim(x→a+) f(x)
- If left-hand limit ≠ right-hand limit, function is discontinuous (jump discontinuity)
- Polynomial, exponential, sine, cosine functions are continuous everywhere on their domain
- Rational functions are discontinuous where denominator = 0
Worked examples
f(x) = {x+1 if x<2; k if x=2; 2x-1 if x>2}. For continuity at x=2: lim(x→2-) = 3, lim(x→2+) = 3, so k=3.
f(x) = (x^2 - 1)/(x - 1) at x=1. Simplify to x+1 (for x≠1). lim(x→1) = 2. But f(1) undefined, so discontinuous (removable discontinuity).
Differentiation: Definition and Rules
The derivative measures the rate of change of a function—the slope of the tangent line at a point. The formal definition is f'(a) = lim(h→0) [f(a+h) - f(a)]/h. In practice, you'll use derivative rules to avoid this tedious limit calculation. Agniveer questions test your ability to apply product rule, quotient rule, and chain rule quickly. A common trap: students forget the chain rule when differentiating composite functions like sin(x^2) or e^(3x).
- Power rule: d/dx [x^n] = n × x^(n-1)
- Sum rule: d/dx [f(x) + g(x)] = f'(x) + g'(x)
- Product rule: d/dx [f(x)g(x)] = f'(x)g(x) + f(x)g'(x) (remember: first times derivative of second, plus second times derivative of first)
- Quotient rule: d/dx [f(x)/g(x)] = [f'(x)g(x) - f(x)g'(x)] / [g(x)]^2
- Chain rule: d/dx [f(g(x))] = f'(g(x)) × g'(x) (derivative of outer times derivative of inner)
- d/dx [e^x] = e^x, d/dx [ln(x)] = 1/x, d/dx [sin(x)] = cos(x), d/dx [cos(x)] = -sin(x)
Key formulas
Product Rule Mnemonic
d/dx [uv] = u'v + uv'
When: When differentiating product of two functions; say 'first times derivative of second, plus second times derivative of first'
Chain Rule
d/dx [f(g(x))] = f'(g(x)) × g'(x)
When: When function is composition of two or more functions; differentiate outer function, then multiply by derivative of inner
Quotient Rule
d/dx [u/v] = (u'v - uv') / v^2
When: When differentiating fraction; numerator is 'low times derivative of high minus high times derivative of low, all over low squared'
Worked examples
Differentiate f(x) = (x^2 + 1) × sin(x). Use product rule: f'(x) = 2x × sin(x) + (x^2 + 1) × cos(x).
Differentiate f(x) = e^(3x^2). Use chain rule: f'(x) = e^(3x^2) × 6x.
Differentiate f(x) = (x^2 + 1)/(x - 1). Use quotient rule: f'(x) = [2x(x-1) - (x^2+1)(1)] / (x-1)^2 = (x^2 - 2x - 1) / (x-1)^2.
Differentiability and Relationship to Continuity
If a function is differentiable at a point, it must be continuous at that point. However, the reverse is not always true: a function can be continuous but not differentiable (e.g., at a sharp corner or cusp). In Agniveer exams, you may see a piecewise function and be asked to check both continuity and differentiability. The key: check left and right derivatives separately. If left derivative ≠ right derivative, the function is not differentiable at that point.
- Differentiability implies continuity, but continuity does not imply differentiability
- Left derivative: lim(h→0-) [f(a+h) - f(a)]/h
- Right derivative: lim(h→0+) [f(a+h) - f(a)]/h
- Function is differentiable at a point if left and right derivatives are equal
- Absolute value function |x| is continuous everywhere but not differentiable at x=0 (sharp corner)
⚠ Common mistakes to avoid
- Forgetting to check both left-hand and right-hand limits when testing continuity; many students check only one side
- Misapplying L'Hopital's rule to forms other than 0/0 or ∞/∞; it does NOT work for 0×∞ or ∞-∞ without rewriting first
- Dropping the chain rule: students differentiate e^(3x) as e^(3x) instead of 3e^(3x), or sin(x^2) as cos(x^2) instead of 2x×cos(x^2)
- In quotient rule, writing (u'v - uv')/v instead of (u'v - uv')/v^2; forgetting to square the denominator
- Assuming a function is differentiable everywhere just because it is continuous; forgetting to check for corners, cusps, or vertical tangents
🧠 Memory aids
- LIATE for choosing u in integration by parts (also helps remember which function to differentiate first in product rule): Logarithm, Inverse trig, Algebraic, Trigonometric, Exponential
- For quotient rule: 'Low d-high minus high d-low, square the bottom and away we go'
- Chain rule: 'Outside in, inside out'—differentiate the outside function, then multiply by the derivative of the inside
- Continuity checklist: DEF (Defined, Exists limit, Function value equals limit)
🎯 AGNIVEER VAYU exam tips
- Agniveer Vayu papers typically include 1-2 limit problems (often involving algebraic simplification or L'Hopital's rule) worth 3-4 marks each
- Continuity questions almost always ask you to find a constant k; set up the equation lim(x→a-) = lim(x→a+) = f(a) and solve—this is a formula-based approach
- Differentiation questions test product rule, chain rule, and quotient rule in combination; a single problem may require all three
- Watch for piecewise functions: examiners love asking 'Is f(x) continuous and differentiable at x=a?' Answer both parts separately
- Time management: limit and continuity problems are usually quicker (4-5 mins); differentiation can take 6-8 mins if it involves multiple rules—prioritize accordingly
Q1 · medium · AI-verified
The value of lim(x→0) (1 − cos x) / x² is:
- 1
- 1/2
- 0
- 2
Q2 · medium · AI-verified
If y = x^(sin x), then which method is used to find dy/dx?
- Quotient rule
- Logarithmic differentiation
- Chain rule directly
- Product rule
Q3 · hard · AI-verified
What is lim(x→0) [sin(3x) / tan(5x)]?
- 0
- 1
- 3/5
- 5/3
Q4 · medium · AI-verified
What is the derivative of tan⁻¹(x) with respect to x?
- 1 / (1 + x²)
- 1 / √(1 − x²)
- 1 / (1 − x²)
- −1 / (1 + x²)
Q5 · hard · AI-verified
If f(x) = (x³ − 8) / (x² − 4) for x ≠ 2, and f(x) is continuous at x = 2, then f(2) = ?
- 6
- 2
- 3
- 4