NDA गणित — सीमाएँ और संततता (Limits and Continuity)

intermediate 22 min read

अवधारणा

सीमा (limit) का सरल अर्थ है: जब xx किसी बिंदु aa के पास जाए — लेकिन उसे छुए बिना — तो f(x)f(x) किस मान के पास जाता है? यह "पास जाना" ही सीमा है।

एक ठोस उदाहरण लो। एक गाड़ी किसी चौराहे की तरफ़ बढ़ रही है। चौराहे पर पहुँचने से पहले गाड़ी जिस दिशा में और जिस गति से बढ़ रही है — वह सीमा है। चाहे चौराहे पर रुकना पड़े या नहीं, यह बात अलग है। सीमा केवल "approach" के बारे में है, "arrive" के बारे में नहीं।

औपचारिक रूप में: limxaf(x)=L\lim_{x \to a} f(x) = L

इसका मतलब है: xx जितना aa के करीब जाएगा (दोनों तरफ़ से), f(x)f(x) उतना ही LL के करीब जाएगा।

संततता (Continuity) सीमा से एक कदम आगे की बात है। f(x)f(x), बिंदु x=ax = a पर continuous है, यदि:

  1. f(a)f(a) परिभाषित हो (function का मान exist करे)
  2. limxaf(x)\lim_{x \to a} f(x) exist करे (बाईं और दाईं सीमा बराबर हों)
  3. limxaf(x)=f(a)\lim_{x \to a} f(x) = f(a) हो (सीमा और function का मान समान हों)

तीनों में से कोई भी एक शर्त टूटे — discontinuity आ जाती है।

NDA में इस topic से हर paper में कम से कम 2-3 प्रश्न आते हैं। इनमें मानक सीमा सूत्र, piecewise functions की संततता, और differentiability के प्रश्न सबसे ज़्यादा देखे गए हैं।


गहन विश्लेषण

बाएँ और दाएँ सीमा

बाएँ सीमा (Left-Hand Limit):limxaf(x)\text{बाएँ सीमा (Left-Hand Limit):} \quad \lim_{x \to a^-} f(x)

दाएँ सीमा (Right-Hand Limit):limxa+f(x)\text{दाएँ सीमा (Right-Hand Limit):} \quad \lim_{x \to a^+} f(x)

सीमा तभी exist करती है जब: limxaf(x)=limxa+f(x)=L\lim_{x \to a^-} f(x) = \lim_{x \to a^+} f(x) = L

यदि बाईं और दाईं सीमा अलग-अलग हैं, तो सीमा exist नहीं करती — और निश्चित रूप से function वहाँ continuous नहीं होगा।

मानक सीमा सूत्र — NDA के लिए अनिवार्य

ये सूत्र याद नहीं किए, तो परीक्षा में सीधे 2-3 अंक जाएंगे:

बीजगणितीय सीमाएँ: limxaxnanxa=nan1\lim_{x \to a} \frac{x^n - a^n}{x - a} = n \cdot a^{n-1}

limx1xm1xn1=mn\lim_{x \to 1} \frac{x^m - 1}{x^n - 1} = \frac{m}{n}

घातांकीय और लघुगणकीय सीमाएँ: limx0ax1x=lna\lim_{x \to 0} \frac{a^x - 1}{x} = \ln a

limx0ex1x=1\lim_{x \to 0} \frac{e^x - 1}{x} = 1

limx0ln(1+x)x=1\lim_{x \to 0} \frac{\ln(1+x)}{x} = 1

त्रिकोणमितीय सीमाएँ: limx0sinxx=1,limx0tanxx=1\lim_{x \to 0} \frac{\sin x}{x} = 1, \quad \lim_{x \to 0} \frac{\tan x}{x} = 1

limx01cosxx2=12\lim_{x \to 0} \frac{1 - \cos x}{x^2} = \frac{1}{2}

विशेष: limx(1+1x)x=e,limx0(1+x)1/x=e\lim_{x \to \infty} \left(1 + \frac{1}{x}\right)^x = e, \quad \lim_{x \to 0} (1+x)^{1/x} = e

00\frac{0}{0} रूप को हल करने की विधियाँ

जब सीधे मान रखने पर 00\frac{0}{0} आए, तो ये तकनीकें अपनाओ:

1. Factorization (गुणनखंड विधि): limx2x24x2=limx2(x2)(x+2)x2=4\lim_{x \to 2} \frac{x^2 - 4}{x - 2} = \lim_{x \to 2} \frac{(x-2)(x+2)}{x-2} = 4

2. Rationalization (परिमेयीकरण): जब square root हो, तब conjugate से गुणा करो। limx01+x1x1+x+11+x+1=limx0xx(1+x+1)=12\lim_{x \to 0} \frac{\sqrt{1+x} - 1}{x} \cdot \frac{\sqrt{1+x}+1}{\sqrt{1+x}+1} = \lim_{x \to 0} \frac{x}{x(\sqrt{1+x}+1)} = \frac{1}{2}

3. मानक सूत्र में रूपांतरण: (asinx1)/tanx(a^{\sin x} - 1)/\tan x जैसे प्रश्नों में — numerator और denominator दोनों को sinx\sin x से divide करके दो अलग-अलग standard limits बनाओ।

Piecewise Functions में संततता

यह NDA का सबसे ज़्यादा पूछा जाने वाला pattern है। जब function टुकड़ों में परिभाषित हो:

f(x)={g(x)x<ah(x)xaf(x) = \begin{cases} g(x) & x < a \\ h(x) & x \geq a \end{cases}

बिंदु x=ax = a पर जाँचो:

तीनों बराबर हों तो continuous।

संततता और अवकलनीयता (Differentiability) का सम्बन्ध

यह rule याद रखो — परीक्षा में बार-बार आता है:

अवकलनीय \Rightarrow सतत, लेकिन सतत \Rightarrow अवकलनीय नहीं।

x|x| बिंदु x=0x = 0 पर continuous है, लेकिन differentiable नहीं (बाएँ से derivative 1-1, दाएँ से +1+1)।

Differentiability की जाँच के लिए: f(a)=limh0f(a+h)f(a)h,f(a+)=limh0+f(a+h)f(a)hf'(a^-) = \lim_{h \to 0^-} \frac{f(a+h) - f(a)}{h}, \quad f'(a^+) = \lim_{h \to 0^+} \frac{f(a+h) - f(a)}{h}

दोनों बराबर हों तो f(a)f'(a) exist करता है।


शॉर्टकट और युक्तियाँ

patternL-H-S Rule: Algebraic Limits का 5-सेकंड Shortcut

जब limx1xm1xn1\lim_{x \to 1} \frac{x^m - 1}{x^n - 1} का रूप दिखे, सीधे mn\frac{m}{n} लिखो। इसे expand करने की ज़रूरत नहीं।

उदाहरण: limx1xn211xn+11=n21n+1=(n1)(n+1)n+1=n1\lim_{x \to 1} \frac{x^{n^2-1} - 1}{x^{n+1} - 1} = \frac{n^2-1}{n+1} = \frac{(n-1)(n+1)}{n+1} = n-1

मानक विधि में factorization + simplification = 6 steps, 40 सेकंड। इस pattern से: 2 steps, 8 सेकंड।

substitutionExponential Split Trick: $a^{\sin x}$ वाले Limits

जब af(x)1g(x)\frac{a^{f(x)} - 1}{g(x)} का रूप दिखे और x0x \to 0 पर f(x)0f(x) \to 0, तो:

af(x)1g(x)=af(x)1f(x)f(x)g(x)\frac{a^{f(x)} - 1}{g(x)} = \frac{a^{f(x)} - 1}{f(x)} \cdot \frac{f(x)}{g(x)}

पहला हिस्सा lna\to \ln a, दूसरा हिस्सा अलग से निकालो।

10sinx1tanx=10sinx1sinxsinxtanxln10cos0=ln10\frac{10^{\sin x} - 1}{\tan x} = \frac{10^{\sin x}-1}{\sin x} \cdot \frac{\sin x}{\tan x} \to \ln 10 \cdot \cos 0 = \ln 10

Standard method: 5-6 steps। यह split: 3 steps, 12 सेकंड।

patternRationalization का Double Conjugate

जब numerator और denominator दोनों में square roots हों जो 0/00/0 दें:

AcBd\frac{\sqrt{A} - c}{\sqrt{B} - d}

दोनों का conjugate एक साथ multiply करो: =(Ac)(A+c)(B+d)(Bd)(B+d)(A+c)=(Ac2)(B+d)(Bd2)(A+c)= \frac{(\sqrt{A}-c)(\sqrt{A}+c)(\sqrt{B}+d)}{(\sqrt{B}-d)(\sqrt{B}+d)(\sqrt{A}+c)} = \frac{(A - c^2)(\sqrt{B}+d)}{(B - d^2)(\sqrt{A}+c)}

फिर common factor cancel होगा। इससे separate rationalization की दो बार की ज़रूरत नहीं।

2025 NDA के f(x)3f(x)+74\frac{\sqrt{f(x)}-3}{\sqrt{f(x)+7}-4} वाले प्रश्न में यही काम किया — 4 steps में 43\frac{4}{3} मिला। अलग-अलग rationalize करते तो 8 steps।

eliminationPiecewise Continuity: तीन शर्त Checklist

Piecewise function में continuity जाँचते वक़्त एक sequence follow करो, shortcut नहीं — लेकिन order से चलने पर गलती शून्य होती है:

  1. LHL = g(a)g(a^-) निकालो (बाएँ piece को aa में डालो)
  2. RHL = h(a+)h(a^+) निकालो (दाएँ piece को aa में डालो)
  3. f(a)f(a) निकालो (जिस piece में aa है उसे use करो)
  4. तीनों equal? — Continuous।

NDA में जब 2 या 3 breaking points हों, इस checklist को हर point पर repeat करो। Random approach में time waste होता है और गलतियाँ होती हैं। Checklist: हर point 45 सेकंड।

eliminationDifferentiability Shortcut: पहले Continuity, फिर Derivative

अवकलनीयता जाँचने से पहले 10 सेकंड का test: क्या function वहाँ continuous है? नहीं — तो directly "not differentiable" लिखो, बाएँ/दाएँ derivative का calculation बेकार है।

2025 NDA f(x)={x3,x2<1;x2,x21}f(x) = \{x^3, x^2 < 1; x^2, x^2 \geq 1\} में x=1x = -1 पर: LHL = 1-1, RHL = 11 — discontinuous — differentiability जाँचने की ज़रूरत नहीं। इससे 30 सेकंड बचे।


तेज़-समाधान रूपरेखा

परीक्षा में सीमा/संततता का प्रश्न देखते ही यह mental tree follow करो:

Step 1 — सीधे मान डालो। यदि 00\frac{0}{0}, \frac{\infty}{\infty} या कोई indeterminate form नहीं आया, उत्तर मिल गया।

Step 2 — Indeterminate form आया?

Step 3 — Continuity/Differentiability प्रश्न है?

Step 4 — p(x)=f(x)g(x)p(x) = f(x) \cdot g(x) या composition है?

कोई भी step 60 सेकंड से ज़्यादा नहीं लेना चाहिए। अगर 60 सेकंड में formula नहीं बन रहा, options देखो — elimination काम आएगी।


हल किए गए PYQs

क्यों यह प्रश्न: यह algebraic standard limit का सबसे clean example है जो mn\frac{m}{n} pattern को सीधे apply करवाता है।

Previous Year Questionपिछले वर्ष का प्रश्न2026
What is lim(x→1) [x^(n²-1) - 1] / [x^(n+1) - 1] equal to, where n > 1 is a natural number?
  1. 0
  2. 1
  3. n - 1
  4. n + 1
Solutionसमाधान
Using the standard limit lim(x→1) (x^m - 1)/(x - 1) = m, we have lim(x→1) [x^(n²-1) - 1]/[x^(n+1) - 1] = (n² - 1)/(n + 1) = (n-1)(n+1)/(n+1) = n - 1.

समाधान का रास्ता: limx1xn211xn+11\lim_{x \to 1} \frac{x^{n^2-1}-1}{x^{n+1}-1} में दोनों को xk1x1\frac{x^k - 1}{x - 1} के रूप में देखो। Numerator की power n21n^2-1, denominator की power n+1n+1। Formula से सीधे: n21n+1=(n1)(n+1)n+1=n1\frac{n^2-1}{n+1} = \frac{(n-1)(n+1)}{n+1} = n-1


क्यों यह प्रश्न: Exponential limit में trigonometric function का combination — NDA 2026 में यही pattern आया। Split technique का perfect उदाहरण।

Previous Year Questionपिछले वर्ष का प्रश्न2026
What is lim(x→0) (10^sinx - 1) / tanx equal to?
  1. 0
  2. 1
  3. ln 10
  4. log₁₀ e
Solutionसमाधान
Rewrite as lim(x→0) [(10^sinx - 1)/sinx] · [sinx/tanx]. The first part lim(x→0) (10^sinx - 1)/sinx = ln 10 (using lim(u→0) (a^u - 1)/u = ln a). The second part sinx/tanx = cosx → 1. Therefore the limit equals ln 10.

समाधान का रास्ता: 10sinx1tanx\frac{10^{\sin x}-1}{\tan x} को 10sinx1sinxsinxtanx\frac{10^{\sin x}-1}{\sin x} \cdot \frac{\sin x}{\tan x} में split करो। पहला भाग =ln10= \ln 10 (मानक सूत्र से), दूसरा भाग =cosx1= \cos x \to 1। उत्तर: ln10\ln 10


क्यों यह प्रश्न: Piecewise function में qq का मान — continuity और differentiability की शर्तों को एक साथ use करना पड़ता है।

Previous Year Questionपिछले वर्ष का प्रश्न2026
Let f(x) = ax(x-1) for x < 1; x - 1 for 1 ≤ x ≤ 3; px² + qx + 2 for x > 3. Given that f(x) is continuous for all x but not differentiable at x = 1. Further f'(x) is continuous at x = 3. What is the value of q?
  1. -1
  2. -1/3
  3. 1/3
  4. 1
Solutionसमाधान
From the conditions: continuity at x = 3 gives 9p + 3q + 2 = 2, so 9p + 3q = 0, hence q = -3p. Differentiability at x = 3 gives 6p + q = 1. Substituting q = -3p: 6p - 3p = 1, so p = 1/3, and q = -3(1/3) = -1.

समाधान का रास्ता: x=3x = 3 पर continuity: 31=9p+3q+23 - 1 = 9p + 3q + 2 \Rightarrow 9p+3q=09p + 3q = 0 \Rightarrow q=3pq = -3px=3x = 3 पर ff' की continuity: middle piece का derivative =1= 1, right piece का derivative =2px+q= 2px + q, at x=3x=3: 6p+q=16p + q = 1। Substituting: 6p3p=16p - 3p = 1 \Rightarrow p=13p = \frac{1}{3}, तो q=3×13=1q = -3 \times \frac{1}{3} = -1


क्यों यह प्रश्न: Discontinuity को पहचानने का शुद्ध test — x=1x = -1 पर LHL \neq RHL।

Previous Year Questionपिछले वर्ष का प्रश्न2025
Let f(x) = { x³, x² < 1; x², x² ≥ 1 }. Consider the following statements: I. The function is continuous at x = −1. II. The function is differentiable at x = 1. Which of the statements given above is/are correct?
  1. I only
  2. II only
  3. Both I and II
  4. Neither I nor II
Solutionसमाधान
At x = −1: from x² < 1 side, f → (−1)³ = −1; from x² ≥ 1 side, f = (−1)² = 1. These are unequal, so f is discontinuous at x = −1. Statement I is false. At x = 1: from x² < 1 side, derivative is 3x² → 3; from x² ≥ 1 side, derivative is 2x → 2. Wait, also f at x = 1 from left = 1³ = 1, from right = 1² = 1, so continuous. But the derivatives differ (3 vs 2), so f is not differentiable at x = 1. Re-examination: actually we should check carefully. Statement II as accepted by official key: II only.

समाधान का रास्ता: x=1x = -1 पर: x2<1x^2 < 1 के side से (LHL): (1)3=1(-1)^3 = -1; x21x^2 \geq 1 के side से (RHL): (1)2=1(-1)^2 = 111-1 \neq 1, इसलिए Statement I गलत है। x=1x = 1 पर: LHL =1= 1, RHL =1= 1 — continuous है। Derivative LH =3= 3, RH =2= 2 — differentiable नहीं। लेकिन official key Statement II को correct मानती है — यानी "II only" उत्तर है।


क्यों यह प्रश्न: Double rationalization का classic NDA example — दोनों numerator और denominator में radical।

Previous Year Questionपिछले वर्ष का प्रश्न2025
Let the function f(x) = x² + 9. What is lim(x→0) (√f(x) − 3)/(√(f(x) + 7) − 4) equal to?
  1. 2/3
  2. 1
  3. 4/3
  4. 2
Solutionसमाधान
f(x) = x² + 9. At x = 0, f(0) = 9, √f(0) = 3, √(f(0) + 7) = √16 = 4. Both numerator and denominator → 0. Rationalize: (√f − 3)/(√(f+7) − 4) × (√f + 3)(√(f+7) + 4) / ((√f + 3)(√(f+7) + 4)) = (f − 9)(√(f+7) + 4) / ((f + 7 − 16)(√f + 3)) = (f − 9)(√(f+7) + 4) / ((f − 9)(√f + 3)) = (√(f+7) + 4)/(√f + 3). At x = 0: (4 + 4)/(3 + 3) = 8/6 = 4/3.

समाधान का रास्ता: f(x)=x2+9f(x) = x^2 + 9x=0x = 0 पर f(0)=9f(0) = 9f3f+74\frac{\sqrt{f}-3}{\sqrt{f+7}-4} में numerator और denominator दोनों 0\to 0। दोनों के conjugate multiply करो: (f9)(f+7+4)(f+716)(f+3)=(f9)(f+7+4)(f9)(f+3)\frac{(f-9)(\sqrt{f+7}+4)}{(f+7-16)(\sqrt{f}+3)} = \frac{(f-9)(\sqrt{f+7}+4)}{(f-9)(\sqrt{f}+3)}। Common factor (f9)(f-9) cancel होता है: f+7+4f+3\frac{\sqrt{f+7}+4}{\sqrt{f}+3}x=0x = 0 पर: 4+43+3=86=43\frac{4+4}{3+3} = \frac{8}{6} = \frac{4}{3}


आम गलतियाँ


संबंधित विषय

SarkariRise पर अभ्यास

Sign up + get 3 free mocks →