Load Balancing: Can't understand the summation term

In summary, the conversation discusses the term "Summation of (j tj)" and clarifies that it refers to the sum of terms rather than a multiplication. They also mention that the limits of the summation are from j=1 to m. The conversation also mentions that j is the index used for the summation, similar to a "for" loop in programming.
  • #1
zak100
462
11
TL;DR Summary
Hi,
I am trying to understand a summation term related to load balancing
I can’t understand the term Summation of (j tj). Are we multiplying j and tj. But the text is not talking about multiplying, it says”Total processing time
cant understand summation term.jpg


Somebody please guide me.

Zulfi.
 
Technology news on Phys.org
  • #2
the summation just sums the terms.

##\sum_{n=0}^{10}{(2n+1)} = 1 + 3 + 5 + 7 + ... + 21##

in your case:

##\sum_{j=1}^{m}{(t_j)} = t_1 + t_2 + t_3 + ...##

but they left out the limits of j=1 to m.
 
  • Like
Likes zak100
  • #3
Hi,
Thanks for your response.

You mean its not multiplying j with ##t_j##
##\sum_j t_j ##

Thanks.

God bless you.

Zulfi.
 
  • #4
The j is saying that is the index the summation indexes over rather like a “for”loop in programming j is the “for” loop index.
 
Back
Top