Is the expression $\max(a + b, b + c, c + d)$ in its simplest from?
Assuming $a,b,c,d$ are positive integers.
What I've Tried:
I've tried several approaches but they all end up as either:
$\max(\max(a, c) + b, c + d)$
or
$\max(a + b, \max(b, d) + c)$
Iff $c+d$ is the greatest:
$$(c+d)>(b+c)\land{(c+d)}>(a+b)$$ $$d>b\land{(c+d)>(a+b)}$$ $$d>b\land{c\le{a}}$$
Iff $b+c$ is the greatest:
$$(b+c)>(a+b)\land{(b+c)>(c+d)}$$ $$c>a\land{b>d}$$
Iff $a+b$ is the greatest:
$$(a+b)>(b+c)\land{(a+b)>(c+d)}$$ $$a>c\land(a+b)>(c+d)$$ $$a>c\land{b\le{d}}$$