fldz
Forlp n, 0, maxn
fSlv = (A+n)/(B/n-1)
fadd
Next n
fstp X
you didn't specify a range for n, Maple gives the following:thumbsup:
sum((A*n+n^2)/(B-n), n = 0 .. m) = -(m+1)*B-(m+1)*A-(1/2)*(m+1)^2+(1/2)*m+1/2-B*(B+A)*Psi(m+1-B)+B*(B+A)*Psi(-B)
A little obvious thing is that n range can not include BGreat :thumbsup:
One practical use is to keep computer nerds occupied with enjoy write program from a new formula :tongue:
Xn = (A+n)/(B/n-1) = nA/(B-n) + n^2/(B-n). If we call Yn = nA/(B-n), Zn = n^2/(B-n).lack of find a formula for sum together is use computing power in a loop anyway
By L'Hôpital's Rule, lim(n->infinite)Yn = -A, lim(n->infinite)Zn = -infinite. Since neither of the two limits is zero, none of the series cannot be convergent, neither Xn.
As for the sequence of partial sums Sum(n=1, N)(Xn), I have not found a formula for it. Maybe someone would have better luck.
lim (x->infinite)(f(x)/g(x)) = lim (x->infinite) (f'(x)/g'(x))https://en.wikipedia.org/wiki/L'H%C3%B4pital's_rule
Sum (n=1,infinite)(A*an+B*bn) = A*Sum(an) + B*Sum(bn)
If Xn = Yn + Zn, if Yn and Zn are convergents, then Xn is convergent; if Yn or Zn ar not convergent, then Xn neither.
If Sum(an) is convergent (is a real scalar) => lim(n->infinite) (an) = 0Thus
If lim(n->infinite) (an) != 0 => Sum(an) is not convergent
lim (n->infinite)(B/n) = 0 whenever B!= 0, if B=0 then it is undeterminated.
Interesting site :thumbsup:. It seems that whatever you think about, anyone has already done it and uploaded to internet :biggrin:.Could it be automated processing?