0

$$ 7000 = \sum_{n=1}^{5} \frac{ \ 1000}{(1 + x)^n} + \sum_{n=6}^{10} \frac{\ 2000}{(1 + x)^n}. $$

I need to solve the equation above. Since it generates a $10th$ degree polynomial, the equation must be solved by some numerical method. However, I'm unfamiliar with numerical methods, so I need a little hand.

Sigma
  • 1,836
  • 15
  • 35

2 Answers2

2

If $y = 1/(1+x)$ the equation can be written as $$ 2\,{y}^{10}+2\,{y}^{9}+2\,{y}^{8}+2\,{y}^{7}+2\,{y}^{6}+{y}^{5}+{y}^{4 }+{y}^{3}+{y}^{2}+y-7 = 0 $$ (EDIT): There is one positive real root, approximately $y=0.8772131213$. The corresponding $x$ value is $1/y - 1 \approx 0.1399738282$. There is one negative real root, approximately $y=-1.190960306$. The corresponding $x$ value is $-1.839658547$.

Robert Israel
  • 448,999
0

Considering what @Robert Israel did, $$f(y)=2\,{y}^{10}+2\,{y}^{9}+2\,{y}^{8}+2\,{y}^{7}+2\,{y}^{6}+{y}^{5}+{y}^{4 }+{y}^{3}+{y}^{2}+y-7 = 0$$ it seems to me that there must be two real roots.

By inspection, $f(-2)=1379$, $f(-1)=-6$, $f(0)=-7$, $f(1)=8$. Using Newton method $$y_1=-1.19096\qquad y_2=0.877213 \implies x_1=0.139974\qquad x_2=-1.83966$$

Looking at the original problem in $x$, there is a vertical asymptote at $x=-1$ and then one solution on the left and one on the right of it.