Assume
$$ 6 \leq |x| \leq 8 $$
$$1 \leq |y| \leq 2 $$
$$ 3 \leq |z| \leq 4$$
The trick is to consider the negative values the three unknowns can take.
If $x,y,z$, satisfy the equalities shown, what is the least possible value of $|x+y+z|$?
I can solve this problem via brute force, trying all cases, and I obtain the answer of zero.
Is there a geometric or more slick or intuitive way of solving this problem that is faster than the brute force method?
I would note first that the "width" of the system is $2+1+1=4$, so for any particular choice of signs (and there are eight such) the values of $|\pm x\pm y\pm z|$ lie in an interval of width $4$ - the constraints are inclusive, so the intervals are closed.
The central values are $7, 1.5, 3.5$ and you want to get as close to zero as possible. A greedy algorithm (largest value first and choose the sign which gets you closest to zero for in size order) seems to do the job.
$7-3.5-1.5=2$
This is a central value of an interval of width $4$, so you can achieve $2-\frac 42=0$
I don't suggest learning such a method - I am sure the use would infrequent. I would suggest noting potential computational efficiencies. Brute force can sometimes be quicker than taking the time to think.