Think back to the definition of absolute value:
• If x ≥ 0, then |x| = x.
• If x < 0, then |x| = -x.
In other words, the absolute value always returns a positive number. So if x is positive, leave it alone; but if it's negative, then you have to negate it to get a positive number back.
This means that you cannot simply reduce |x - y | to x - y because you need to consider the possibility that x - y may be negative, in which case |x - y | would reduce to -(x - y) = y - x.
In this case,
|4√2 - 6| = -(4√2 - 6) = 6 - 4√2
because 4√2 < 6, which you can determine by comparing both of these numbers as square roots:
4√2 = √16 √2 = √32
6 = √36
and √32 < √36 because 32 < 36.
Similarly,
|2√10 - 6| = 2√10 - 6
because
2√10 = √4 √10 = √40
6 = √36
So ultimately,
|4√2 - 6| + |2√10 - 6| = (6 - 4√2) + (2√10 - 6) = 2√10 - 4√2