We have:
x1=−1 (our starting value)
xm=xm+1+(m+1) for every positive integer m
This is a recurrence relation that tells us how each term relates to the next term.
From xm=xm+1+(m+1), we can rearrange to get:
xm+1=xm−(m+1)
This tells us: "To get the next term, subtract (m+1) from the current term"
Let's calculate the first few terms:
x2=x1−(1+1)=−1−2=−3
x3=x2−(2+1)=−3−3=−6
x4=x3−(3+1)=−6−4=−10
x5=x4−(4+1)=−10−5=−15
So our sequence is: −1,−3,−6,−10,−15,...
Let's examine the pattern by looking at what we're subtracting:
x1=−1
x2=−1−2
x3=−1−2−3
x4=−1−2−3−4
For xn, we have:
xn=−1−(2+3+4+...+n)
The sum 2+3+4+...+n can be written as:
(1+2+3+...+n)−1
Using the formula for sum of first n natural numbers:
2+3+4+...+n=2n(n+1)−1
Therefore:
xn=−1−(2n(n+1)−1)
xn=−1−2n(n+1)+1
xn=−2n(n+1)
Using our formula xn=−2n(n+1):
x100=−2100(101)=−210100=−5050
Therefore, x100=−5050