Alternative notation for min and max functions

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
7 replies · 21K views
stevenb
Messages
701
Reaction score
6
I have a general question about the notation of min and max functions. I'm wondering if there is an accepted notation, used by mathematicians, for the min and max functions, other than the usual min(x,y) and max(x,y) that I typically see.

To give similar examples for what I'm looking for.

absolute value: abs(x) is notated as |x|
round to lower integer: floor(x) is notated as [tex]\lfloor x \rfloor[/tex]
round to upper integer: ceil(x) is notated as [tex]\lceil x \rceil[/tex]

Lately, I've been using min and max often and it would be nice to have a shorthand notation. I could make up my own, but I don't want to use a notation that isn't an accepted standard. So far, my searching indicates that I'm stuck with min and max, but I figured this forum would be a good place to see if anybody is aware of any obscure notation that would be acceptable to mathematicians.
 
Mathematics news on Phys.org
If x and y are real numbers, then the maximum is often denoted as [itex]x\vee y[/itex]. The minimum is [itex]x\wedge y[/itex]. In fact, this notation holds in situations more general than real numbers, but then they represent the supremum and the infimum.

The supremum of an arbitrary set (if it exists) can be denoted as [itex]\bigvee X[/itex].
 
micromass said:
If x and y are real numbers, then the maximum is often denoted as [itex]x\vee y[/itex]. The minimum is [itex]x\wedge y[/itex].

Thank you very much. That is interesting. There is some potential for those symbols to have other meanings, but for the context I'm working in, I think this can work well.

I'm wondering if it is proper for me to use this notation to denote functions, and if so, the proper way to write it.

For example if I have f(t)=max(0, g(t)), I'm defining the function f(t) to be equal to g(t) as long as g(t) >=0, and zero otherwise. This is more compact of a notation than a case definition.

I'm tempted to write the following.
[tex]f(t)=0\bigvee g(t)[/tex]

Is this OK, or is it abusing the notation since g(t) is a real function and not a real number?
 
Both 0 and g(t) are real numbers, so there is no problem in writing [itex]0\vee g(t)[/itex].

Writing [itex]0\vee g[/itex] on the other hand is a little abuse of notation. But it should be clear if you know what you are doing.
 
Just out of curiosity, what level algebra is this symbolism used for? This is the first time I've seen it. I am familiar with max and min, just not in this notation. Thanks.
 
Devil Doc said:
Just out of curiosity, what level algebra is this symbolism used for? This is the first time I've seen it. I am familiar with max and min, just not in this notation. Thanks.

It is quite standard notation. It is the notation of lattice theory. It is often used in real analysis books and beyond.
 
micromass said:
Both 0 and g(t) are real numbers, so there is no problem in writing [itex]0\vee g(t)[/itex]

Excellent. This will work very well for me then.

So, looking at a few on-line references on lattice theory, I see that notation is used extensively, as you said. I even notice some nice looking theorems that might prove useful for me in what I'm doing.

Thank you very much for this helpful information.
 
Thanks for the reply and information, micromass. I do appreciate it.