I came across the following equality while trying to prove this Multiplicative property of the GCD:
$$\min\{a+c, b+d\} = \min\{a, b\} + \min\{c, d\} + \min\{a - \min\{a, b\}, d - \min\{c,d\}\} + \min\{b - \min\{a, b\}, c - \min\{c,d\}\}, $$
where $a,b,c,d \in \mathbf{N}$. It shouldn't be too difficult to prove - just a matter of checking all the different cases - but I'm having some trouble pinning down exactly what the cases are.
The equation is symmetric in $a, c$ and in $b, d$, right? (Or is it in $a, b$ and in $c,d$…) So that should reduce the number of cases. Also, if $a \leq b \leq c \leq d$ or $a \leq c \leq b \leq d$, for example, then clearly $a+c \leq b+d$; but if $a \leq b \leq d \leq c$ then the cases where $a+c \leq b+d$ and $a+c > b+d$ need to be considered separately.
Any help in crystallising the above would be appreciated; I admit it's not a very appetising problem.