A friend of mine asked me this question yesterday and I tried to solve it using case distinctions which turned out to be rather cumbersome, and he then showed me a very elegant proof which I would like to share as I have not found it anywhere on the internet (please share if you find the name of the problem!).
Let $0<a, b, c, d \in \mathbb{N}$, $ab = cd$. Say whether $a+b+c+d$ is prime and prove it.
My approach was the following: Suppose the sum was prime, call it $p:=a+b+c+d$. Then at least one of our numbers must be odd, since the sum of four even numbers is even. Similarly, the sum of two odd numbers is even, so we can exclude the case of two odd and two even numbers.
Suppose we had exactly one even number, wlog let $d$ even. then $cd$ is an even number since multiplication with even yields even, but $ab$ is odd since the product of odd numbers stays odd, contradiction.
Suppose we had exactly one odd number, wlog let $a$ odd. Then we factor $a, b, c, d$ into primes and find $ab = \Pi_{i} p_i^{n_i}=cd$. Since $c, d$ both are even we have at least two factors 2 in the factorization. This is where I get stuck.
So this is my friend's answer:
Let $p:=a + b + c + d$. Multiply with any of the numbers, wlog $a$: Then $pa=a²+ab+ac+ad$. We then use our assumption $ab=cd$ to substitute $pa=a²+cd+ac+ad$ which we can factor into $pa=(a+d)(a+c)$. Since both these factors are larger than $a$, one of them must divide $p$, hence $p$ is not prime.
EDIT: I love this proof and would like to get better at thinking in this manner. My actual question is: Does this problem have a name and do you know any similar riddles/ problems I could work on?