Min and max in order of operations

  • Thread starter Thread starter eyec
  • Start date Start date
  • Tags Tags
    Max Operations
eyec
Messages
6
Reaction score
0
hi,

i was unfortunately unable to find any information about the order of operations in which to apply min and max. (or is it just common knowledge for everyone except me?) consider

min_{i \in I}max_{j \in J} (set of elements with indices i \in I and j \in J)

(actually, this is from http://www.cs.ubc.ca/~kevinlb/teaching/cs532a%20-%202003-4/folk.pdf p.1 which refers to in http://dx.doi.org/10.1016%2F0022-0531(79)90002-4 (which is, however, not free), p.4.) is the minimum or the maximum function applied first? the context in the mentioned papers seems to imply that the first one (min) has precedence. This, however, does not seem intuitive to me because then we have a notation "operation1 operation2 arguments" and do operation2(operation1(arguments)).

thanks ...
 
Last edited by a moderator:
Mathematics news on Phys.org
Hey eyec and welcome to the forums.

The usual convention for this kind of thing is to evaluate things from right to left, but if in doubt you should consult the author for clarification.

So with the usual convention, max is evaluated first and then min.
 
thanks chiro,
so I'm at least certain that I'm not completely wrong about how to deal with max, min ... etc.

maybe i'll ask the author ... in case I find out something, I'll post that again.
 
min and max must act on a collection of objects. So there is only one way to iterpret your expression that makes any sense, and that is

min ( max ( set of elements ) )

You normally write it as

min max ( set of elements )

because the outer ( )s don't add any more information about what it means.

You usally need ()'s around the "set of elements", because the notation for the set is often fairly long and complicated and it's not obvious where it ends.

This is no different from writing say
log sin (x/2)
You wouldn't normally write
log (sin (x/2))
because that's the only thing the expression could mean. But of course
log sin (x/2)
and
sin log (x/2)
mean two different things.
 
thanks AlephZero,

you are certainly right (& so is chiro).

probably the author also meant it like that. if someone wants to examine it, on sciencedirect the paper costs a lot of money but on the author's website you can download it for free. (I just realized that now.) http://arielrubinstein.tau.ac.il/papers/03.pdf
the equation in question is on page 4, first line of section 3.
 
The order is important. Consider
1 2 3
4 2 0
3 2 1
If I take min in each col I get 1, 2, 0, the max of which is 2.
If I take the max of of each row, I get 3, 4, 3, the min of which is 3.
There's some theorem that says min of max >= max of min.
As others have noted, right-to-left is the only valid interpretation.
 
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Fermat's Last Theorem has long been one of the most famous mathematical problems, and is now one of the most famous theorems. It simply states that the equation $$ a^n+b^n=c^n $$ has no solutions with positive integers if ##n>2.## It was named after Pierre de Fermat (1607-1665). The problem itself stems from the book Arithmetica by Diophantus of Alexandria. It gained popularity because Fermat noted in his copy "Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et...
I'm interested to know whether the equation $$1 = 2 - \frac{1}{2 - \frac{1}{2 - \cdots}}$$ is true or not. It can be shown easily that if the continued fraction converges, it cannot converge to anything else than 1. It seems that if the continued fraction converges, the convergence is very slow. The apparent slowness of the convergence makes it difficult to estimate the presence of true convergence numerically. At the moment I don't know whether this converges or not.

Similar threads

Replies
1
Views
3K
Replies
4
Views
3K
Replies
9
Views
3K
Replies
45
Views
5K
Replies
5
Views
2K
Replies
7
Views
2K
Replies
1
Views
3K
Back
Top