• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Another math question

Originally posted by: TerribleTerryTate
it should mean the maximum of the set of numbers between -x and x, inclusive

Gee, i didn't know that, i guess i should have paid more attention in my calc classes.
 
just means you take the larger of the two.

so max{-1,0} = 0, max{32,1000}=1000, max{-10,10}=10

basically max{-x,x} intuitively says you take the positive value of the two.
(i.e. if x is negative, -x will be positive so you take that. if x is pos, x will be positive so you take that)

so you just consider abs as piecewise linear function
from (-inf,0) |x|=-x, for [0,inf) |x|=x
... (-inf,0) max{-x,x}=-x, for [0,inf) max{-x,x}=x (so they are equivalent)
 
Back
Top