Solving a max() Function with Binary Operators

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 3K views
Barking_Mad
Messages
11
Reaction score
0
Hey i was wondering if someone could help me express this using standard binary operators.

[tex]f(x,y,z)=\frac{max(0, (x-y) )}{z}[/tex]

i.e. Eliminate the max() function and write it using proper math.

EDIT: max(a,b) simply chooses the largest value of the two variables.
 
Mathematics news on Phys.org
What you have there already is valid, but you can use this one if you like it better

Also, note that z cannot be 0 (the first line is just declaring the domain and codomain of f)

[tex] f: \mathbb{R} \times \mathbb{R} \times \mathbb{R} \backslash \{0\} \to \mathbb{R}[/tex]
[tex] <br /> f(x,y,z) = \left\{<br /> \begin{array} {l l}<br /> \displaystyle{\frac{x-y}{z}} & \text{if} \ x > y \\<br /> 0 & \text{else}<br /> \right.[/tex]
 
hmm yeah, that's not exactly what i was looking for, apologies for lack of clarity.

Im looking for an algebraic expresion of that function, as a fraction or something similar, without the need to use if or else. If that is possible, maybe it isnt.
 
How about

[tex]\frac{|x-y|+(x-y)}{2z}[/tex]
 
ok, now i need to express that without the absolute function, or using polar or complex numbers. Could take me all week...
 
For the absolute value you could use [tex]\sqrt {(x - y)^2}[/tex] (I smell a computer nearby), but it looks like on overshoot to me.