Concept-wise Practice

recurrence relation MCQ Questions for Class 9

recurrence relation se related questions ko ek jagah revise karein. Har question me bilingual content, answer feedback aur explanation available hai.

Practice Questions

146 questions tagged with recurrence relation.

यदि \(a_n=a_{n-1}+3n\) और \(a_4=31\) है, तो \(a_2\) का मान क्या होगा?

If \(a_n=a_{n-1}+3n\) and \(a_4=31\), what is the value of \(a_2\)?

Explanation opens after your attempt
Correct Answer

A. 10

Explanation

Simple Explanation

पुनरावर्ती नियम से \(a_3=a_2+3(3)=a_2+9\) और \(a_4=a_3+3(4)=a_3+12\) होगा। अतः \(31=a_2+9+12=a_2+21\), इसलिए \(a_2=10\)। विकल्प 12 लेने पर \(a_4=33\) आता, इसलिए वह सही नहीं है। परीक्षा टिप: बाद का पद दिया हो तो पुनरावर्ती संबंध को पीछे की ओर खोलकर ज्ञात पद तक पहुँचें। / Using the recursive rule, \(a_3=a_2+3(3)=a_2+9\) and \(a_4=a_3+3(4)=a_3+12\). Hence, \(31=a_2+9+12=a_2+21\), so \(a_2=10\). If \(a_2=12\), then \(a_4\) would be 33, not 31. Exam tip: When a later term is given, expand the recurrence backwards to reach the required term.

Open Question Page
Ask Friends

यदि \(T_1=2\) और (T_n=(n+1)T_{n-1}-n) है, तो \(T_4\) का मान क्या होगा?

If \(T_1=2\) and (T_n=(n+1)T_{n-1}-n), what is the value of \(T_4\)?

Explanation opens after your attempt
Correct Answer

D. 61

Explanation

Simple Explanation

पुनरावर्ती नियम में प्रत्येक पद निकालते समय उसी पद का सूचकांक n रखा जाता है। अतः \(T_2=3\times2-2=4\), \(T_3=4\times4-3=13\), और \(T_4=5\times13-4=61\)। इसलिए सही उत्तर \(61\) है। \(59\) जैसा निकट विकल्प सामान्यतः अंतिम चरण में 4 घटाने या 5 से गुणा करने में गलती से आ सकता है। परीक्षा टिप: \(T_4\) ज्ञात करने के लिए पहले क्रम से \(T_2\) और \(T_3\) अवश्य निकालें। / In the recursive rule, substitute the index n for each term being calculated. Thus, \(T_2=3\times2-2=4\), \(T_3=4\times4-3=13\), and \(T_4=5\times13-4=61\). Therefore, the correct answer is \(61\). A close option such as \(59\) can result from an error in multiplying by 5 or subtracting 4 in the final step. Exam tip: To find \(T_4\), calculate \(T_2\) and \(T_3\) in order first.

Open Question Page
Ask Friends

किसी अनुक्रम में \(S_1=100\) और \(S_n=S_{n-1}-n^2\) है। \(S_4\) का मान क्या होगा?

In a sequence, \(S_1=100\) and \(S_n=S_{n-1}-n^2\). What is the value of \(S_4\)?

Explanation opens after your attempt
Correct Answer

B. 71

Explanation

Simple Explanation

पुनरावर्ती नियम में प्रत्येक पद पिछले पद से निकाला जाता है। अतः \(S_2=100-2^2=96\), \(S_3=96-3^2=87\) और \(S_4=87-4^2=87-16=71\)। इसलिए सही उत्तर 71 है। 69 प्राप्त करना सामान्यतः चरणों में वर्गों को गलत लेने से हो सकता है। परीक्षा टिप: \(S_1\) से शुरू होने पर \(S_4\) निकालने के लिए \(2^2,3^2,4^2\) घटाइए; \(1^2\) नहीं। / The recursive rule gives each term from the preceding term. Thus, \(S_2=100-2^2=96\), \(S_3=96-3^2=87\), and \(S_4=87-4^2=87-16=71\). Therefore, 71 is correct. A value such as 69 can result from using incorrect squares in the steps. Exam tip: since the sequence starts at \(S_1\), subtract \(2^2,3^2\), and \(4^2\) to find \(S_4\), not \(1^2\).

Open Question Page
Ask Friends

यदि \(R_1=1\) और \(R_n=R_{n-1}^2+n\) है, तो \(R_3\) का मान क्या होगा?

If \(R_1=1\) and \(R_n=R_{n-1}^2+n\), what is the value of \(R_3\)?

Explanation opens after your attempt
Correct Answer

C. 12

Explanation

Simple Explanation

पुनरावर्ती नियम में पहले पिछले पद से अगला पद निकालते हैं। R_2=R_12+2=12+2=3। फिर R_3=R_22+3=32+3=12। इसलिए सही उत्तर 12 है। 10 तब मिलता यदि R_2 का वर्ग लेने के बाद सही पद संख्या न जोड़ी जाए। परीक्षा टिप: हर चरण में n का नया मान लिखकर गणना करें। / In a recursive rule, first find each next term from the preceding term. R_2=R_12+2=12+2=3. Then R_3=R_22+3=32+3=12. Therefore, 12 is correct. A value such as 10 can result from not adding the correct term number after squaring R_2. Exam tip: write the new value of n at every step.

Open Question Page
Ask Friends

यदि \(Q_1=2\), \(Q_2=5\) और \(Q_n=Q_{n-1}+2Q_{n-2}+n\) है, तो \(Q_5\) का मान क्या होगा?

If \(Q_1=2\), \(Q_2=5\), and \(Q_n=Q_{n-1}+2Q_{n-2}+n\), what is the value of \(Q_5\)?

Explanation opens after your attempt
Correct Answer

A. 55

Explanation

Simple Explanation

पुनरावर्ती नियम में प्रत्येक नया पद पिछले दो पदों से निकाला जाता है। Q_3=5+2(2)+3=12, फिर Q_4=12+2(5)+4=26 और Q_5=26+2(12)+5=55। इसलिए सही उत्तर 55 है। 57 जैसा विकल्प तब मिल सकता है जब 2Q_{n-2} या जोड़ने वाले n को गलत लिया जाए। परीक्षा टिप: हर चरण में n का मान 3, 4, 5 क्रम से लिखकर प्रतिस्थापित करें। / Each new term is obtained from the previous two terms using the recursive rule. Q_3=5+2(2)+3=12, then Q_4=12+2(5)+4=26, and Q_5=26+2(12)+5=55. Hence, the correct answer is 55. A value such as 57 can result from incorrectly handling 2Q_{n-2} or the added n. Exam tip: substitute n=3, 4, and 5 step by step.

Open Question Page
Ask Friends

यदि \(O_1=4\) और \(O_n=O_{n-1}+2^n+n\) है, तो \(O_4\) का मान क्या होगा?

If \(O_1=4\) and \(O_n=O_{n-1}+2^n+n\), what is the value of \(O_4\)?

Explanation opens after your attempt
Correct Answer

B. 41

Explanation

Simple Explanation

पुनरावर्ती नियम में प्रत्येक अगला पद पिछले पद में \(2^n+n\) जोड़कर मिलता है। \(O_2=4+2^2+2=10\), \(O_3=10+2^3+3=21\), और \(O_4=21+2^4+4=41\)। इसलिए सही उत्तर 41 है। 45 तब मिल सकता है जब \(2^4\) के साथ \(n=4\) जोड़ने के बजाय कोई अतिरिक्त 4 जोड़ दिया जाए। परीक्षा टिप: हर नए पद के लिए \(n\) का सही मान अलग से लिखकर घात ज्ञात करें। / Under the recursive rule, each new term is obtained by adding \(2^n+n\) to the previous term. \(O_2=4+2^2+2=10\), \(O_3=10+2^3+3=21\), and \(O_4=21+2^4+4=41\). Therefore, the correct answer is 41. A value such as 45 may result from incorrectly adding an extra 4 while finding the fourth term. Exam tip: write the value of \(n\) separately at every step before evaluating the power.

Open Question Page
Ask Friends

किसी अनुक्रम में \(R_1=2\) और \(R_n=nR_{n-1}+n\) है। \(R_4\) का मान क्या होगा?

In a sequence, \(R_1=2\) and \(R_n=nR_{n-1}+n\). What is the value of \(R_4\)?

Explanation opens after your attempt
Correct Answer

C. 88

Explanation

Simple Explanation

पुनरावर्ती नियम में प्रत्येक पद निकालने के लिए पिछले पद का उपयोग किया जाता है। \(R_2=2\times2+2=6\), \(R_3=3\times6+3=21\), और \(R_4=4\times21+4=88\)। इसलिए सही उत्तर 88 है। 82 प्राप्त हो सकता है यदि अंतिम चरण में \(4\) जोड़ने में त्रुटि हो जाए। परीक्षा टिप: हर चरण में वर्तमान \(n\) का मान बदलकर लगाइए। / A recursive rule uses the preceding term to obtain the next term. \(R_2=2\times2+2=6\), \(R_3=3\times6+3=21\), and \(R_4=4\times21+4=88\). Hence, 88 is correct. A value such as 82 can result from an error while adding \(4\) in the final step. Exam tip: substitute the current value of \(n\) separately at every step.

Open Question Page
Ask Friends

यदि \(M_1=1\) और \(M_n=3M_{n-1}+n\) है, तो \(M_3\) का मान क्या होगा?

If \(M_1=1\) and \(M_n=3M_{n-1}+n\), what is the value of \(M_3\)?

Explanation opens after your attempt
Correct Answer

D. 18

Explanation

Simple Explanation

पुनरावर्ती नियम में पहले पिछले पद का मान निकालते हैं। \(M_2=3M_1+2=3\times1+2=5\)। फिर \(M_3=3M_2+3=3\times5+3=18\)। अतः सही उत्तर 18 है। 16 जैसा उत्तर तब आ सकता है जब \(M_2\) या \(n\) का मान गलत रखा जाए। परीक्षा टिप: प्रत्येक चरण में वर्तमान सूचकांक \(n\) को अलग से जोड़ना न भूलें। / For a recursive rule, first calculate the preceding term. \(M_2=3M_1+2=3\times1+2=5\). Then \(M_3=3M_2+3=3\times5+3=18\). Therefore, 18 is correct. An answer such as 16 can result from using an incorrect value of \(M_2\) or of \(n\). Exam tip: remember to add the current index \(n\) at every step.

Open Question Page
Ask Friends

किसी अनुक्रम में \(L_1=6\) और \(L_n=L_{n-1}+2n+1\) है। \(L_5\) का मान क्या होगा?

In a sequence, \(L_1=6\) and \(L_n=L_{n-1}+2n+1\). What is the value of \(L_5\)?

Explanation opens after your attempt
Correct Answer

A. 38

Explanation

Simple Explanation

दिया है कि प्रत्येक नए पद के लिए पिछले पद में \(2n+1\) जोड़ा जाता है। अतः \(L_2=6+5=11\), \(L_3=11+7=18\), \(L_4=18+9=27\) और \(L_5=27+11=38\)। इसलिए सही उत्तर 38 है। 40 तब मिलता यदि किसी चरण में वृद्धि को गलत लिया जाए। परीक्षा टिप: पुनरावृत्ति संबंध में \(n\) का मान दूसरे पद से शुरू करके क्रमशः रखें। / Each new term is obtained by adding \(2n+1\) to the preceding term. Thus, \(L_2=6+5=11\), \(L_3=11+7=18\), \(L_4=18+9=27\), and \(L_5=27+11=38\). Therefore, 38 is correct. A value such as 40 results from using an incorrect increment at one of the steps. Exam tip: in a recursive rule, substitute consecutive values of \(n\), starting with the second term.

Open Question Page
Ask Friends

यदि \(J_1=50\) और (J_n=J_{n-1}-3(n-1)) है, तो \(J_5\) का मान क्या होगा?

If \(J_1=50\) and (J_n=J_{n-1}-3(n-1)), what is the value of \(J_5\)?

Explanation opens after your attempt
Correct Answer

C. 20

Explanation

Simple Explanation

पुनरावर्ती नियम में प्रत्येक पद के लिए वर्तमान n का मान रखें: J_2=50-3(1)=47, J_3=47-3(2)=41, J_4=41-3(3)=32 और J_5=32-3(4)=20। इसलिए सही उत्तर 20 है। 23 तब मिल सकता है जब अंतिम चरण में 3(n-1) के स्थान पर केवल 3 घटा दिया जाए, जो नियम के अनुसार गलत है। परीक्षा टिप: J_1 से J_5 तक पहुँचने के लिए n=2,3,4,5 के चार चरण लिखें। / Apply the recursive rule using the current value of n: J_2=50-3(1)=47, J_3=47-3(2)=41, J_4=41-3(3)=32, and J_5=32-3(4)=20. Therefore, the correct answer is 20. The value 23 may result from subtracting only 3 in the last step instead of 3(n-1), which does not follow the rule. Exam tip: To move from J_1 to J_5, write the four steps for n=2,3,4,5.

Open Question Page
Ask Friends

किसी अनुक्रम में \(H_1=2\) और (H_n=H_{n-1}+n(n+1)) है। \(H_4\) का मान क्या होगा?

In a sequence, \(H_1=2\) and (H_n=H_{n-1}+n(n+1)). What is the value of \(H_4\)?

Explanation opens after your attempt
Correct Answer

D. 40

Explanation

Simple Explanation

पुनरावर्ती नियम में प्रत्येक पद पिछले पद से निकाला जाता है। \(H_2=2+2(3)=8\), \(H_3=8+3(4)=20\), और \(H_4=20+4(5)=40\)। इसलिए सही उत्तर \(40\) है। \(38\) जैसा विकल्प तब मिल सकता है जब अंतिम चरण में \(4(5)\) के बजाय गलत वृद्धि जोड़ी जाए। परीक्षा टिप: \(H_1\) से शुरू करके \(n=2,3,4\) के लिए क्रमशः पद लिखें। / In a recursive rule, each term is found from the previous term. \(H_2=2+2(3)=8\), \(H_3=8+3(4)=20\), and \(H_4=20+4(5)=40\). Hence, the correct answer is \(40\). A value such as \(38\) can result from using an incorrect increase instead of \(4(5)\) in the final step. Exam tip: Start with \(H_1\) and calculate the terms successively for \(n=2,3,4\).

Open Question Page
Ask Friends

यदि \(G_1=3\) और \(G_n=n+2G_{n-1}\) है, तो \(G_4\) का मान क्या होगा?

If \(G_1=3\) and \(G_n=n+2G_{n-1}\), what is the value of \(G_4\)?

Explanation opens after your attempt
Correct Answer

A. 42

Explanation

Simple Explanation

पुनरावर्ती नियम में प्रत्येक नया पद पिछले पद से निकाला जाता है। अतः \(G_2=2+2(3)=8\), \(G_3=3+2(8)=19\), और \(G_4=4+2(19)=42\)। इसलिए सही उत्तर 42 है। 44 जैसा विकल्प तब मिल सकता है जब पिछले पद को गलत तरीके से लिया जाए। परीक्षा टिप: \(G_4\) निकालने के लिए पहले क्रम से \(G_2\) और \(G_3\) अवश्य ज्ञात करें। / In a recursive rule, each new term is found from the preceding term. Thus, \(G_2=2+2(3)=8\), \(G_3=3+2(8)=19\), and \(G_4=4+2(19)=42\). Therefore, the correct answer is 42. A value such as 44 can result from using an incorrect previous term. Exam tip: to find \(G_4\), calculate \(G_2\) and \(G_3\) in order first.

Open Question Page
Ask Friends

यदि \(E_1=1\), \(E_2=4\) और \(E_n=E_{n-1}+E_{n-2}+2\) है, तो \(E_5\) का मान क्या होगा?

If \(E_1=1\), \(E_2=4\), and \(E_n=E_{n-1}+E_{n-2}+2\), what is the value of \(E_5\)?

Explanation opens after your attempt
Correct Answer

C. 22

Explanation

Simple Explanation

पुनरावर्ती नियम में प्रत्येक नया पद उसके ठीक पहले के दो पदों के योग में 2 जोड़कर मिलता है। अतः E_3=1+4+2=7, E_4=4+7+2=13 और E_5=7+13+2=22। इसलिए सही उत्तर 22 है। 20 तब मिलता यदि अंतिम चरण में पिछले दो पदों का सही योग न लिया जाए। परीक्षा टिप: ऐसे प्रश्नों में E_3 से शुरू करके प्रत्येक पद क्रमवार लिखें। / In the recursive rule, each new term is obtained by adding 2 to the sum of the two immediately preceding terms. Thus, E_3=1+4+2=7, E_4=4+7+2=13, and E_5=7+13+2=22. Therefore, the correct answer is 22. The value 20 can result from not using the correct two previous terms in the final step. Exam tip: Write the terms one by one, starting from E_3.

Open Question Page
Ask Friends

यदि \(D_1=2\) और \(D_n=2D_{n-1}+n-1\) है, तो \(D_4\) का मान क्या होगा?

If \(D_1=2\) and \(D_n=2D_{n-1}+n-1\), what is the value of \(D_4\)?

Explanation opens after your attempt
Correct Answer

D. 27

Explanation

Simple Explanation

पुनरावर्ती नियम में प्रत्येक पद पिछले पद से निकाला जाता है। अतः \(D_2=2\times2+1=5\), \(D_3=2\times5+2=12\), और \(D_4=2\times12+3=27\)। इसलिए सही उत्तर 27 है। 25 जैसा उत्तर तब आ सकता है जब \(n-1\) वाले पद को गलत जोड़ा जाए। परीक्षा टिप: \(D_4\) निकालने के लिए पहले \(D_2\) और \(D_3\) क्रम से लिखें। / Each term is found from the previous term using the recursive rule. Thus, \(D_2=2\times2+1=5\), \(D_3=2\times5+2=12\), and \(D_4=2\times12+3=27\). Therefore, the correct answer is 27. An answer such as 25 can result from adding the \(n-1\) term incorrectly. Exam tip: To find \(D_4\), calculate \(D_2\) and \(D_3\) in order first.

Open Question Page
Ask Friends

किसी अनुक्रम में \(C_1=5\) और (C_n=C_{n-1}+n(n-1)) है। \(C_4\) का मान क्या होगा?

In a sequence, \(C_1=5\) and (C_n=C_{n-1}+n(n-1)). What is the value of \(C_4\)?

Explanation opens after your attempt
Correct Answer

A. 25

Explanation

Simple Explanation

पुनरावर्ती नियम को क्रमशः लागू करें: \(C_2=5+2(2-1)=7\), \(C_3=7+3(3-1)=13\), और \(C_4=13+4(4-1)=25\)। इसलिए सही उत्तर \(25\) है। \(27\) जैसी निकटतम त्रुटि सामान्यतः \(4(4-1)=12\) को गलत जोड़ने से होती है। परीक्षा टिप: प्रत्येक पद के लिए पहले \(n(n-1)\) निकालें, फिर पिछले पद में जोड़ें। / Apply the recursive rule step by step: \(C_2=5+2(2-1)=7\), \(C_3=7+3(3-1)=13\), and \(C_4=13+4(4-1)=25\). Hence, the correct answer is \(25\). A close distractor such as \(27\) can result from adding \(4(4-1)=12\) incorrectly. Exam tip: calculate \(n(n-1)\) first for each term, then add it to the preceding term.

Open Question Page
Ask Friends

यदि \(B_1=9\) और \(B_n=B_{n-1}+2^n\) है, तो \(B_4\) का मान क्या होगा?

If \(B_1=9\) and \(B_n=B_{n-1}+2^n\), what is the value of \(B_4\)?

Explanation opens after your attempt
Correct Answer

C. सैंतीस37

Explanation

Simple Explanation

पुनरावृत्ति नियम में प्रत्येक पद पिछले पद में संबंधित घात जोड़कर मिलता है। इसलिए \(B_2=9+2^2=13\), \(B_3=13+2^3=21\) और \(B_4=21+2^4=37\)। अतः सही उत्तर सैंतीस है। 39 पाने के लिए घातों या जोड़ की शुरुआत गलत लेनी पड़ेगी। परीक्षा टिप: \(B_1\) दिया हो तो अगला पद निकालते समय नियम में \(n=2\) रखें। / In the recursive rule, each term is obtained by adding the relevant power to the preceding term. Thus, \(B_2=9+2^2=13\), \(B_3=13+2^3=21\), and \(B_4=21+2^4=37\). Therefore, 37 is correct. Getting 39 would result from using an incorrect exponent or starting the additions incorrectly. Exam tip: when \(B_1\) is given, use \(n=2\) in the rule to find the next term.

Open Question Page
Ask Friends

किसी अनुक्रम में \(A_1=1\) और \(A_n=nA_{n-1}+1\) है। \(A_4\) का मान क्या होगा?

In a sequence, \(A_1=1\) and \(A_n=nA_{n-1}+1\). What is the value of \(A_4\)?

Explanation opens after your attempt
Correct Answer

B. 41

Explanation

Simple Explanation

पुनरावर्ती नियम में प्रत्येक पद निकालने के लिए उसके पिछले पद का उपयोग होता है। \(A_2=2\times1+1=3\), \(A_3=3\times3+1=10\), और \(A_4=4\times10+1=41\)। इसलिए सही उत्तर 41 है। 37 जैसे विकल्प में \(A_4\) के लिए 4 से गुणा करने की प्रक्रिया सही ढंग से लागू नहीं होती। परीक्षा टिप: हर नए पद के लिए पहले \(n\) का मान लिखें, फिर पिछले पद को उससे गुणा करके 1 जोड़ें। / A recursive rule uses the preceding term to find each new term. \(A_2=2\times1+1=3\), \(A_3=3\times3+1=10\), and \(A_4=4\times10+1=41\). Hence, the correct answer is 41. An option such as 37 results from not applying the multiplication by 4 correctly while finding \(A_4\). Exam tip: write the value of \(n\) first, then multiply the previous term by it and add 1.

Open Question Page
Ask Friends

यदि \(z_1=2\), \(z_2=3\) और \(z_n=z_{n-1}z_{n-2}+1\) है, तो \(z_5\) का मान क्या होगा?

If \(z_1=2\), \(z_2=3\), and \(z_n=z_{n-1}z_{n-2}+1\), what is the value of \(z_5\)?

Explanation opens after your attempt
Correct Answer

D. 155

Explanation

Simple Explanation

पुनरावर्ती नियम के अनुसार प्रत्येक नया पद अपने पहले के दो पदों के गुणन में 1 जोड़कर मिलता है। अतः z_3=3×2+1=7, z_4=7×3+1=22 और z_5=22×7+1=155। इसलिए सही उत्तर 155 है। 153 तब मिलता यदि अंतिम चरण में 1 जोड़ने का नियम भूल जाएँ। परीक्षा टिप: ऐसे प्रश्नों में पदों को क्रम से लिखते हुए हर चरण में दोनों पिछले पदों का उपयोग करें। / By the recursive rule, each new term is obtained by multiplying the previous two terms and adding 1. Thus, z_3=3×2+1=7, z_4=7×3+1=22, and z_5=22×7+1=155. Therefore, the correct answer is 155. A value such as 153 can result from forgetting the final “+1” in the rule. Exam tip: write each term in sequence and use both preceding terms at every step.

Open Question Page
Ask Friends

किसी अनुक्रम में \(y_1=7\) और (y_n=y_{n-1}+(n-1)2) है। \(y_5\) का मान क्या होगा?

In a sequence, \(y_1=7\) and (y_n=y_{n-1}+(n-1)2). What is the value of \(y_5\)?

Explanation opens after your attempt
Correct Answer

A. 37

Explanation

Simple Explanation

पुनरावर्ती नियम को क्रमशः लागू करें: \(y_2=7+1^2=8\), \(y_3=8+2^2=12\), \(y_4=12+3^2=21\) और \(y_5=21+4^2=37\)। इसलिए सही उत्तर 37 है। 39 जैसे विकल्प में वर्गों के योग या प्रारम्भिक पद को गलत जोड़ने की संभावना होती है। परीक्षा टिप: \(y_5\) के लिए वृद्धि पदों में \(1^2,2^2,3^2,4^2\) ही शामिल होंगे। / Apply the recursive rule step by step: \(y_2=7+1^2=8\), \(y_3=8+2^2=12\), \(y_4=12+3^2=21\), and \(y_5=21+4^2=37\). Therefore, the correct answer is 37. A value such as 39 can result from adding the squares or the initial term incorrectly. Exam tip: to find \(y_5\), include exactly the increments \(1^2,2^2,3^2,4^2\).

Open Question Page
Ask Friends

यदि \(x_1=1\) और \(x_n=2x_{n-1}+n^2\) है, तो \(x_3\) का मान क्या होगा?

If \(x_1=1\) and \(x_n=2x_{n-1}+n^2\), what is the value of \(x_3\)?

Explanation opens after your attempt
Correct Answer

C. 21

Explanation

Simple Explanation

पुनरावर्ती नियम में पहले पिछला पद ज्ञात करते हैं। \(x_2=2x_1+2^2=2(1)+4=6\)। फिर \(x_3=2x_2+3^2=2(6)+9=21\)। इसलिए सही उत्तर 21 है। 18 तब मिल सकता है जब \(x_2\) के स्थान पर गलती से \(x_1\) का उपयोग किया जाए। परीक्षा टिप: हर नए पद के लिए पहले ठीक पिछले पद को नियम में रखें। / In a recursive rule, first find the preceding term. \(x_2=2x_1+2^2=2(1)+4=6\). Then \(x_3=2x_2+3^2=2(6)+9=21\). Therefore, the correct answer is 21. A value such as 18 can result from incorrectly using \(x_1\) in place of \(x_2\). Exam tip: substitute the immediately preceding term at each step.

Open Question Page
Ask Friends

किसी अनुक्रम में \(w_1=0\) और \(w_n=w_{n-1}+2^{n-1}\) है। \(w_5\) का मान क्या होगा?

In a sequence, \(w_1=0\) and \(w_n=w_{n-1}+2^{n-1}\). What is the value of \(w_5\)?

Explanation opens after your attempt
Correct Answer

B. 30

Explanation

Simple Explanation

पुनरावर्ती नियम को क्रमशः लागू करें: \(w_2=0+2^1=2\), \(w_3=2+2^2=6\), \(w_4=6+2^3=14\) और \(w_5=14+2^4=30\)। इसलिए सही उत्तर 30 है। 28 तब मिलता यदि अंतिम वृद्धि को गलत लिया जाए। परीक्षा टिप: \(w_1\) से \(w_5\) तक जाने के लिए नियम चार बार लागू होता है। / Apply the recursive rule step by step: \(w_2=0+2^1=2\), \(w_3=2+2^2=6\), \(w_4=6+2^3=14\), and \(w_5=14+2^4=30\). Therefore, the correct answer is 30. A value such as 28 can result from using the final increment incorrectly. Exam tip: from \(w_1\) to \(w_5\), apply the rule four times.

Open Question Page
Ask Friends

यदि \(v_1=4\) और \(v_n=2v_{n-1}-1\) है, तो \(v_5\) का मान क्या होगा?

If \(v_1=4\) and \(v_n=2v_{n-1}-1\), what is the value of \(v_5\)?

Explanation opens after your attempt
Correct Answer

D. 49

Explanation

Simple Explanation

पुनरावर्ती नियम में प्रत्येक पद पाने के लिए पिछले पद को 2 से गुणा करके 1 घटाते हैं। अतः \(v_2=2(4)-1=7\), \(v_3=2(7)-1=13\), \(v_4=2(13)-1=25\) और \(v_5=2(25)-1=49\)। इसलिए सही उत्तर 49 है। 47 निकट का विकल्प हो सकता है, पर वह दिए गए नियम को लगातार लागू करने पर नहीं मिलता। परीक्षा टिप: हर चरण में पहले पिछले पद का दोगुना करें, फिर 1 घटाएँ। / In the recursive rule, multiply the preceding term by 2 and then subtract 1. Thus, \(v_2=2(4)-1=7\), \(v_3=2(7)-1=13\), \(v_4=2(13)-1=25\), and \(v_5=2(25)-1=49\). Therefore, the correct answer is 49. Although 47 is a close distractor, it is not obtained by applying the given rule successively. Exam tip: at each step, double the previous term before subtracting 1.

Open Question Page
Ask Friends

यदि \(t_1=x\), \(t_n=t_{n-1}+n\) और \(t_5=24\) है, तो (x) का मान क्या होगा?

If \(t_1=x\), \(t_n=t_{n-1}+n\), and \(t_5=24\), what is the value of (x)?

Explanation opens after your attempt
Correct Answer

A. 10

Explanation

Simple Explanation

पुनरावर्ती नियम से क्रमशः \(t_2=x+2\), \(t_3=x+2+3\), \(t_4=x+2+3+4\) और \(t_5=x+2+3+4+5=x+14\) होगा। दिया है \(t_5=24\), अतः \(x+14=24\) और \(x=10\)। विकल्प 11 लेने पर \(t_5=25\) आता, इसलिए वह सही नहीं है। परीक्षा टिप: पुनरावर्ती श्रेणी में दिए गए पद तक हर जोड़ी गई संख्या लिखकर प्रथम पद का व्यंजक बनाइए। / Using the recursive rule, \(t_2=x+2\), \(t_3=x+2+3\), \(t_4=x+2+3+4\), and \(t_5=x+2+3+4+5=x+14\). Since \(t_5=24\), we get \(x+14=24\), so \(x=10\). If \(x=11\), then \(t_5=25\), so it is not correct. Exam tip: In a recursive sequence, list every added term up to the required term before solving for the first term.

Open Question Page
Ask Friends

यदि \(r_1=1\), \(r_2=2\) और \(r_n=r_{n-1}+3r_{n-2}\) है, तो \(r_5\) का मान क्या होगा?

If \(r_1=1\), \(r_2=2\), and \(r_n=r_{n-1}+3r_{n-2}\), what is the value of \(r_5\)?

Explanation opens after your attempt
Correct Answer

B. 26

Explanation

Simple Explanation

पुनरावर्ती नियम के अनुसार प्रत्येक नया पद पिछले पद में उससे दो स्थान पहले वाले पद का 3 गुना जोड़कर मिलता है। अतः \(r_3=2+3(1)=5\), \(r_4=5+3(2)=11\), और \(r_5=11+3(5)=26\)। इसलिए सही उत्तर 26 है। 23 जैसी संख्या तब मिल सकती है जब पिछले-दूसरे पद को सही ढंग से 3 से गुणा न किया जाए। परीक्षा टिप: पदों को क्रम से लिखकर हर चरण में \(r_{n-1}\) और \(r_{n-2}\) अलग-अलग पहचानें। / By the recursive rule, each new term equals the previous term plus 3 times the term two places before it. Thus, \(r_3=2+3(1)=5\), \(r_4=5+3(2)=11\), and \(r_5=11+3(5)=26\). Therefore, the correct answer is 26. A value such as 23 can result from not multiplying the second previous term by 3 correctly. Exam tip: list the terms in order and identify \(r_{n-1}\) and \(r_{n-2}\) separately at each step.

Open Question Page
Ask Friends

किसी अनुक्रम में \(m_1=2\) और \(m_n=m_{n-1}+3n\) है। \(m_4\) का मान क्या होगा?

In a sequence, \(m_1=2\) and \(m_n=m_{n-1}+3n\). What is the value of \(m_4\)?

Explanation opens after your attempt
Correct Answer

A. 29

Explanation

Simple Explanation

पुनरावर्ती नियम में प्रत्येक पद के लिए वर्तमान सूचकांक का मान रखा जाता है। अतः \(m_2=2+3(2)=8\), \(m_3=8+3(3)=17\) और \(m_4=17+3(4)=29\)। इसलिए सही उत्तर 29 है। 32 तब मिलता यदि अंतिम चरण में \(3n\) के स्थान पर कोई गलत वृद्धि जोड़ी जाए। परीक्षा टिप: \(m_1\) दिया हो तो अगला पद निकालते समय \(n=2\) से शुरुआत करें। / In the recursive rule, substitute the current index each time. Thus, \(m_2=2+3(2)=8\), \(m_3=8+3(3)=17\), and \(m_4=17+3(4)=29\). Therefore, 29 is correct. A value such as 32 would result from using an incorrect increment in the final step instead of \(3n\). Exam tip: when \(m_1\) is given, begin finding the next term with \(n=2\).

Open Question Page
Ask Friends

किसी अनुक्रम में \(j_1=1\) और \(j_n=j_{n-1}+n^2\) है। \(j_4\) का मान क्या होगा?

In a sequence, \(j_1=1\) and \(j_n=j_{n-1}+n^2\). What is the value of \(j_4\)?

Explanation opens after your attempt
Correct Answer

B. 30

Explanation

Simple Explanation

पुनरावर्ती नियम में प्रत्येक पद पिछले पद में वर्तमान सूचकांक का वर्ग जोड़कर मिलता है। इसलिए \(j_2=1+2^2=5\), \(j_3=5+3^2=14\), और \(j_4=14+4^2=30\)। अतः सही उत्तर 30 है। \(1^2\) को अलग से जोड़ना उचित नहीं है, क्योंकि \(j_1=1\) पहले से दिया हुआ प्रारम्भिक पद है। परीक्षा टिप: पुनरावर्ती अनुक्रम में आरम्भिक पद से क्रमशः अगले पद निकालें। / In the recursive rule, each term is obtained by adding the square of the current index to the preceding term. Thus, \(j_2=1+2^2=5\), \(j_3=5+3^2=14\), and \(j_4=14+4^2=30\). Therefore, the correct answer is 30. Adding \(1^2\) separately would be incorrect because \(j_1=1\) is already the given initial term. Exam tip: compute recursive sequences step by step from the initial term.

Open Question Page
Ask Friends

यदि \(h_1=3\) और \(h_n=n h_{n-1}\) है, तो \(h_4\) का मान क्या होगा?

If \(h_1=3\) and \(h_n=n h_{n-1}\), what is the value of \(h_4\)?

Explanation opens after your attempt
Correct Answer

C. 72

Explanation

Simple Explanation

पुनरावर्ती नियम में प्रत्येक पद निकालने के लिए उसके सूचकांक से पिछले पद का गुणा किया जाता है। अतः \(h_2=2\times3=6\), \(h_3=3\times6=18\), और \(h_4=4\times18=72\)। इसलिए सही उत्तर 72 है। 64 जैसे विकल्प में नियम के अनुसार क्रमशः 2, 3 और 4 से गुणा नहीं किया गया है। परीक्षा में \(h_4\) तक पहुँचने के लिए \(n=2,3,4\) के चरण अलग-अलग लिखें। / Under the recursive rule, each term is found by multiplying the previous term by its index. Thus, \(h_2=2\times3=6\), \(h_3=3\times6=18\), and \(h_4=4\times18=72\). Therefore, 72 is correct. An option such as 64 does not follow the required successive multiplications by 2, 3, and 4. Exam tip: write the steps for \(n=2,3,4\) separately to avoid using the wrong index.

Open Question Page
Ask Friends

यदि \(d_n=d_{n-1}+2n\) और \(d_4=25\) है, तो \(d_1\) का मान क्या होगा?

If \(d_n=d_{n-1}+2n\) and \(d_4=25\), what is the value of \(d_1\)?

Explanation opens after your attempt
Correct Answer

A. 7

Explanation

Simple Explanation

पुनरावर्ती नियम से पीछे चलें: \(d_4=d_3+8\), \(d_3=d_2+6\) और \(d_2=d_1+4\)। अतः \(d_4=d_1+4+6+8=d_1+18\)। चूँकि \(d_4=25\), इसलिए \(d_1=25-18=7\)। विकल्प 8 लेने पर \(d_4=26\) आता, इसलिए वह सही नहीं है। परीक्षा टिप: किसी पुनरावर्ती अनुक्रम में दिया गया बाद का पद हो तो नियम को क्रमशः पीछे की ओर लागू करें। / Work backward using the recursive rule: \(d_4=d_3+8\), \(d_3=d_2+6\), and \(d_2=d_1+4\). Hence, \(d_4=d_1+4+6+8=d_1+18\). Since \(d_4=25\), \(d_1=25-18=7\). If \(d_1=8\), then \(d_4\) would be 26, not 25. Exam tip: when a later term is given in a recursive sequence, apply the rule step by step backward.

Open Question Page
Ask Friends

किसी अनुक्रम में \(c_1=1\), \(c_2=3\) और \(c_n=2c_{n-1}+c_{n-2}\) है। \(c_5\) का मान क्या होगा?

In a sequence, \(c_1=1\), \(c_2=3\), and \(c_n=2c_{n-1}+c_{n-2}\). What is the value of \(c_5\)?

Explanation opens after your attempt
Correct Answer

D. 41

Explanation

Simple Explanation

पुनरावर्ती नियम के अनुसार प्रत्येक नया पद पिछले पद के दोगुने और उससे पहले वाले पद के योग के बराबर है। अतः \(c_3=2(3)+1=7\), \(c_4=2(7)+3=17\), और \(c_5=2(17)+7=41\)। इसलिए सही उत्तर 41 है। 39 जैसा निकट विकल्प तब मिल सकता है जब पिछले दो पदों में गलत पद लिया जाए। परीक्षा टिप: हर चरण में पिछले दो सही पद लिखकर ही अगला पद निकालें। / By the recursive rule, each new term equals twice the preceding term plus the term before it. Thus, \(c_3=2(3)+1=7\), \(c_4=2(7)+3=17\), and \(c_5=2(17)+7=41\). Therefore, the correct answer is 41. A close distractor such as 39 can result from using an incorrect previous term. Exam tip: write the two preceding terms at every step before calculating the next one.

Open Question Page
Ask Friends

किसी अनुक्रम में \(a_1=3\) और \(a_n=2a_{n-1}+n+1\) है। \(a_4\) का मान क्या होगा?

In a sequence, \(a_1=3\) and \(a_n=2a_{n-1}+n+1\). What is the value of \(a_4\)?

Explanation opens after your attempt
Correct Answer

C. 49

Explanation

Simple Explanation

पुनरावर्ती नियम में प्रत्येक पद के लिए उसी पद का सूचकांक लेना होता है। \(a_2=2(3)+2+1=9\), \(a_3=2(9)+3+1=22\), और \(a_4=2(22)+4+1=49\)। अतः सही उत्तर \(49\) है। \(46\) जैसा उत्तर प्रायः \(n+1\) वाले भाग में सूचकांक गलत रखने से मिलता है। परीक्षा टिप: हर चरण में \(n\) का नया मान लिखकर ही गणना करें। / In a recursive rule, use the index of the term currently being found. \(a_2=2(3)+2+1=9\), \(a_3=2(9)+3+1=22\), and \(a_4=2(22)+4+1=49\). Therefore, the correct answer is \(49\). An answer such as \(46\) can result from using an incorrect value of the index in the \(n+1\) part. Exam tip: write the new value of \(n\) at every step before calculating.

Open Question Page
Ask Friends