Confusion about this min() operator

AI Thread Summary
The discussion centers on understanding the notation used in a specific equation from the PDF "planning.cs.uiuc.edu/ch2.pdf," particularly the min operator with subscripts found on page 11. The min operator represents the minimum value of an expression over a specified range of variables (uk, uk+1, ... , uK). The subscripts are essential as they indicate which variables are being considered for the minimum, clarifying that all other elements should be treated as constants. Expanding the summation within the braces can further aid in comprehension of the notation.
Jyan
Messages
36
Reaction score
2
I'm reading about planning algorithms and I'm having some difficulty understanding a bit of notation here. The pdf I'm reading is "planning.cs.uiuc.edu/ch2.pdf" and the equation in question is on page 11. I'm not sure I understand what the min operator with all the subscripts actually means. Can anyone try to enlighten me?

Thanks,
 
Last edited by a moderator:
Technology news on Phys.org
Jyan said:
I'm reading about planning algorithms and I'm having some difficulty understanding a bit of notation here. The pdf I'm reading is "planning.cs.uiuc.edu/ch2.pdf" and the equation in question is on page 11. I'm not sure I understand what the min operator with all the subscripts actually means. Can anyone try to enlighten me?

Thanks,

It means the minimum of the expression in braces, over uk, uk+1, ... , uK. It might help your understanding to expand the summation that's inside the braces.
 
Last edited by a moderator:
Why are the subscripts underneath "min" necessary? I just don't understand what meaning they add over just writing "min" alone.
 
Jyan said:
Why are the subscripts underneath "min" necessary? I just don't understand what meaning they add over just writing "min" alone.
It tells you that everything else, that isn't a subscript, should be treated as constant.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I had a Microsoft Technical interview this past Friday, the question I was asked was this : How do you find the middle value for a dataset that is too big to fit in RAM? I was not able to figure this out during the interview, but I have been look in this all weekend and I read something online that said it can be done at O(N) using something called the counting sort histogram algorithm ( I did not learn that in my advanced data structures and algorithms class). I have watched some youtube...
Back
Top