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

1 Ansicht (letzte 30 Tage)
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.

Akzeptierte Antwort

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by