Y
Hacker News
new
|
ask
|
show
|
jobs
by
smadge
2992 days ago
Some authors might prefer
-- \ / -- 0 < i < n
Ass opposed to
n -- \ / -- i = 1
3 comments
vlasev
2992 days ago
Sometimes we even leave it as "i" instead of "0 < i < n" or "i = 1 to n". Sometimes the range of the summation doesn't even need to be determined in intermediate steps.
link
EvilTerran
2991 days ago
There's also this formulation, which I'm quite partial to:
--- \ / --- i∈[1,n]
link
abhishekjha
2992 days ago
0 < i <= n or upto n-1 respectively.
link