Following on from an earlier question, and in search of a conceptual insight, I asked myself:
Given real numbers $a \ge b \ge c \ge d \ge 0 \tag{1}$ Prove that
$a^n - b^n + c^n - d^n \ge (a - b + c - d)^n \text{ for all } \underline{n \in \mathbb{R}} \tag{2}$
First, I wrote a toy program to do a quick test, and it hinted that the conjecture may indeed be true as long as $n \ge 1 \tag{3}$
Next, I proceeded to prove it for $n \in \mathbb{N}$ by using a simple substitution technique given in this answer. $\begin{aligned}x = a-b && y = b-c && z = c-d\end{aligned} \tag{S}$
Transforms $(1)$ into: $x, y, z, d \ge 0 \tag{4}$
Transforms $(2)$ into: $(x+y+z+d)^n - (y+z+d)^n + (z+d)^n - d^n \ge (x+z)^n \tag{5}$
which is true since:
$\displaystyle \begin{aligned} & (x+y+z+d)^n - (y+z+d)^n + (z+d)^n - d^n - (x+z)^n \\ = & \sum_{r=1}^n \binom{n}{r}(x+z)^{n-r}(y+d)^r - \sum_{r=1}^n \binom{n}{r}z^{n-r}(y+d)^r + \sum_{r=1}^{n-1}d^{n-r}z^r \\= &\sum_{r=1}^n \binom{n}{r}(y+d)^r\left((x+z)^{n-r} - z^{n-r} \right)+ \sum_{r=1}^{n-1}d^{n-r}z^r \\= & \sum_{r=1}^n \binom{n}{r}(y+d)^r\left(\sum_{q=1}^{n-r} \binom{n-r}{q}x^q z^{n-r-q}\right)+ \sum_{r=1}^{n-1}d^{n-r}z^r \\ =& \text{sum of non-negative terms}\\\ge & 0\end{aligned}$
And this is where I got stuck, as I don't know how to prove it for any real $n \ge 1$.
I would appreciate any help in this direction.