Sigma notation.

Saldeat

New member
Joined
Jun 18, 2021
Messages
1
Hello,
I'm a first year computer science student and I have a question about sigma.
I'm given this series: 409f1454c67d6e45d9a04c58ab6742f0.png

Now I don't understand something, if I wanna represent how the series looks from 1 to n should it look like this?
1.png

or this?
2.png

Thanks in advance :)
 
Your first option (which was missing an equal sign) is correct because k is the variable that increments each term

[MATH]f_n=\sum_{k=1}^n\frac{n}{n^3+k^2}=\frac{n}{n^3+1^2}+\frac{n}{n^3+2^2}+\cdots+\frac{n}{n^3+n^2}[/MATH]
 
Why would you think that both n and k changes?
n only changes, well when n changes. So what would f2 equal?
 
Top