- #1
mathdad
- 1,283
- 1
Given two real numbers a and b, the notation min(a, b) denotes the smaller of the two numbers. In cases where a = b, then min(a, b) denotes the common value of a and b. It can be shown that min(a, b) can be expressed in terms of absolute value as follows:
min(a, b) = (a + b - | a - b |)/2
Verify this equation in the following case:
a = 6 and b = 1
Solution:
m(6, 1) = (6 + 1 - | 6 - 1 |)/2
m(6, 1) = (7 - | 5 |)/3
min(6, 1) = (7 - 5)/2
m(6, 1) = (2/2)
min(6, 1) = 1
We can say that if a = 6 and b = 1, then the smallest of the two numbers is 1.
Question:
Can this be done with expressions?
For example, if a = 2x and b = 3x, can we use the above equation to find min(a, b)? What about max(a, b)?
min(a, b) = (a + b - | a - b |)/2
Verify this equation in the following case:
a = 6 and b = 1
Solution:
m(6, 1) = (6 + 1 - | 6 - 1 |)/2
m(6, 1) = (7 - | 5 |)/3
min(6, 1) = (7 - 5)/2
m(6, 1) = (2/2)
min(6, 1) = 1
We can say that if a = 6 and b = 1, then the smallest of the two numbers is 1.
Question:
Can this be done with expressions?
For example, if a = 2x and b = 3x, can we use the above equation to find min(a, b)? What about max(a, b)?