Exercise 11
for all
Not cross-checked
This solution has not been cross-checked against the answer printed in NCERT.
NCERT’s answer
$\displaystyle 3,11,35,107,323 ; \quad 3+11+35+107+323+\ldots$
Recursion, term by term. Each term is built from the one before it, so generate them in order using \(\displaystyle a_n=3a_{n-1}+2\) with \(\displaystyle a_1=3\).
\[a_2=3(3)+2=11,\qquad a_3=3(11)+2=35,\]
\[a_4=3(35)+2=107,\qquad a_5=3(107)+2=323.\]The corresponding series is obtained by joining the terms with \(\displaystyle +\) signs.First five terms: \(\displaystyle 3,\ 11,\ 35,\ 107,\ 323\); corresponding series: \(\displaystyle 3+11+35+107+323+\ldots\)