quartz/content/Obsidian Vault/convergence and divergence of series..md
2022-06-07 14:39:39 -06:00

1.2 KiB

#math/calculus

$\epsilon$=tiniest little value N = a possible findable number n = index in the sequence. L = a possible findable limit

convergence (for sequences)

for all \epsilon>0 we can find N: n>N ------- |L-a_n|<\epsilon

divergence (for sequences)

for all M we can find N such that (st): n>N ------ $a_n>M$ The sequence constantly grows in a direction. Or, it can oscillate! sin(x) does not converge, so it's divergent.

test for divergence or convergence of series

from sympy import *
x=symbols('x')
series = Sum(1/(6 + exp(-x)), (x, 1, oo))
series.is_convergent()