calculate the sum of a discert series and then limit the the result

1 visualización (últimos 30 días)
Elle
Elle el 10 de Mayo de 2021
Comentada: Elle el 10 de Mayo de 2021
Hi There, I'm solving this problem via Matlab: =?
I tried 'symsum' and 'limit' function like this:
>> limit(symsum(1/k+n,k,1,n),n,inf)
but it seems not work.
Thanks for any info.

Respuesta aceptada

KSSV
KSSV el 10 de Mayo de 2021
Editada: KSSV el 10 de Mayo de 2021
syms k n
f = symsum(1/(k+n),k,1,n)
f = 
s = limit(f,n,inf)
s = 
  3 comentarios
Elle
Elle el 10 de Mayo de 2021
I made a mistake at the meaning of the 'syms'. Now I realize it's stronger than I thought.
Thank you.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Numbers and Precision en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by