Skip to main contentSkip to solution

Consider a sequence of real number x1,x2,x3,...x_1, x_2, x_3, ... such that xn+1=xn+n−1x_{n+1} = x_n + n - 1 for all n≥1n \ge 1. If x1=−1x_1 = -1 then x100x_{100} is equal to

Solution

✅ Correct Option: 2

We have: xn+1=xn+n−1x_{n+1} = x_n + n - 1 for all n≥1n \geq 1, with x1=−1x_1 = -1

This means each term equals the previous term plus (n−1)(n-1).


Let's calculate the first few terms:

x1=−1x_1 = -1 (given)

x2=x1+(1−1)=−1+0=−1x_2 = x_1 + (1-1) = -1 + 0 = -1

x3=x2+(2−1)=−1+1=0x_3 = x_2 + (2-1) = -1 + 1 = 0

x4=x3+(3−1)=0+2=2x_4 = x_3 + (3-1) = 0 + 2 = 2

x5=x4+(4−1)=2+3=5x_5 = x_4 + (4-1) = 2 + 3 = 5

x6=x5+(5−1)=5+4=9x_6 = x_5 + (5-1) = 5 + 4 = 9


Key Insight: Instead of trying to find a pattern in the terms themselves, let's look at the differences between consecutive terms.

From our recurrence relation: xn+1−xn=n−1x_{n+1} - x_n = n - 1

This gives us:

  • x2−x1=1−1=0x_2 - x_1 = 1 - 1 = 0
  • x3−x2=2−1=1x_3 - x_2 = 2 - 1 = 1
  • x4−x3=3−1=2x_4 - x_3 = 3 - 1 = 2
  • x5−x4=4−1=3x_5 - x_4 = 4 - 1 = 3
  • ⋮\vdots
  • xn−xn−1=(n−1)−1=n−2x_n - x_{n-1} = (n-1) - 1 = n - 2

When we add all these differences from x2x_2 to xnx_n:

(x2−x1)+(x3−x2)+(x4−x3)+⋯+(xn−xn−1)=xn−x1(x_2 - x_1) + (x_3 - x_2) + (x_4 - x_3) + \cdots + (x_n - x_{n-1}) = x_n - x_1

All the middle terms cancel out! This is called a telescoping sum.

So: xn−x1=0+1+2+3+⋯+(n−2)x_n - x_1 = 0 + 1 + 2 + 3 + \cdots + (n-2)


The sum 0+1+2+3+⋯+(n−2)0 + 1 + 2 + 3 + \cdots + (n-2) is the sum of first (n−2)(n-2) natural numbers (including 0).

For our sum: 0+1+2+⋯+(n−2)=(n−2)(n−1)20 + 1 + 2 + \cdots + (n-2) = \dfrac{(n-2)(n-1)}{2}


xn−x1=(n−2)(n−1)2x_n - x_1 = \dfrac{(n-2)(n-1)}{2}

Since x1=−1x_1 = -1:

xn=−1+(n−2)(n−1)2x_n = -1 + \dfrac{(n-2)(n-1)}{2}

xn=−2+(n−2)(n−1)2x_n = \dfrac{-2 + (n-2)(n-1)}{2}

xn=(n−2)(n−1)−22x_n = \dfrac{(n-2)(n-1) - 2}{2}

xn=n2−3n+2−22x_n = \dfrac{n^2 - 3n + 2 - 2}{2}

xn=n2−3n2=n(n−3)2x_n = \dfrac{n^2 - 3n}{2} = \dfrac{n(n-3)}{2}


Let's check our formula with known values:

x4=4(4−3)2=4×12=2x_4 = \dfrac{4(4-3)}{2} = \dfrac{4 \times 1}{2} = 2

x5=5(5−3)2=5×22=5x_5 = \dfrac{5(5-3)}{2} = \dfrac{5 \times 2}{2} = 5


x100=100(100−3)2=100×972=97002=4850x_{100} = \dfrac{100(100-3)}{2} = \dfrac{100 \times 97}{2} = \dfrac{9700}{2} = 4850

Therefore, x100=4850x_{100} = 4850

Keyboard Shortcuts

  • Left arrow: Previous question
  • Right arrow: Next question
  • S key: Jump to solution
  • Q key: Jump to question