Question:medium

For every real number \(x \neq -1\), let \(f(x) = \frac{x}{x+1}\). Write \(f_1(x) = f(x)\) and for \(n \geq 2\), \(f_n(x) = f(f_{n-1}(x))\). Then \(f_1(-2), f_2(-2), \ldots, f_n(-2)\) must be:

Show Hint

When applying a recursive function like this, calculate the first few terms to recognize a pattern, then generalize using the discovered pattern.
Updated On: Jan 29, 2026
  • \(\frac{2n}{3 \cdot 1 \cdot 5 \cdot \ldots \cdot (2n-1)}\)
  • \(1\)
  • \(\frac{1}{2} \binom{2n}{n}\)
  • \(\frac{2n}{n}\)
Show Solution

The Correct Option is A

Solution and Explanation

Step 1: Given the function \( f(x) = \frac{x}{x+1} \), we aim to find a general form for \( f_n(x) \), where \( f_n(x) = f(f_{n-1}(x)) \) for \( n \geq 2 \).

Step 2: Calculate the initial terms:

  • For \( n = 1 \), \( f_1(x) = f(x) = \frac{x}{x+1} \).
  • For \( n = 2 \), apply \( f \) to \( f_1(x) \):

\[ f_2(x) = f(f_1(x)) = f\left(\frac{x}{x+1}\right) = \frac{\frac{x}{x+1}}{\frac{x}{x+1}+1} = \frac{x}{2x+1} \]

  • For \( n = 3 \), apply \( f \) to \( f_2(x) \):

\[ f_3(x) = f(f_2(x)) = f\left(\frac{x}{2x+1}\right) = \frac{\frac{x}{2x+1}}{\frac{x}{2x+1}+1} = \frac{x}{3x+1} \]

Step 3: Observing the pattern, the general form is:

\[ f_n(x) = \frac{x}{(2n-1)x+1} \]

Step 4: Substitute \( x = -2 \) into the formula:

\[ f_n(-2) = \frac{-2}{(2n-1)(-2)+1} \]

  • Examples: \[ f_1(-2) = \frac{-2}{-2+1} = 2, \quad f_2(-2) = \frac{-2}{-4+1} = \frac{2}{3}, \quad f_3(-2) = \frac{-2}{-6+1} = \frac{2}{5} \quad \text{and so on.} \]

Step 5: From \( f_n(-2) = \frac{2}{(2n-1)} \), the product follows the form:

\[ \frac{2n}{3 \cdot 1 \cdot 5 \cdots (2n-1)}. \]

Was this answer helpful?
0