BMAD Posted October 10, 2013 Report Share Posted October 10, 2013 The absolute value of a real number is defined as its numerical value without regard for sign. So, for example, abs(2) = abs(−2) = 2. The maximum of two real numbers is defined as the numerically bigger of the two. For example, max(2, −3) = max(2, 2) = 2. Express: abs in terms of max max in terms of abs Quote Link to comment Share on other sites More sharing options...
0 BMAD Posted October 14, 2013 Author Report Share Posted October 14, 2013 abs (x) = max(x,-x) max(x,y) = 1/2(x+y+abs(x-y)) Quote Link to comment Share on other sites More sharing options...
0 DeGe Posted October 11, 2013 Report Share Posted October 11, 2013 abs (x) = max(x,-x) Quote Link to comment Share on other sites More sharing options...
0 Rainman Posted October 11, 2013 Report Share Posted October 11, 2013 (edited) max(x,y) = 1/2(x+y+abs(x-y)) Edited October 11, 2013 by Rainman Quote Link to comment Share on other sites More sharing options...
Question
BMAD
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.