By nested radical, I mean an expression of the form $\sqrt{a+b\sqrt{n}}$ where a, b and n are positive integers and n is not a perfect square.
I wrote a computer program that randomly generated pairs of nested radicals (with a common value of n) such that neither nested radical could denest but their product could. One example is:
$$\sqrt{8+2\sqrt{11}} \times \sqrt{13+2\sqrt{11}} = 7+3\sqrt{11}$$
But when I randomly generated pairs of nested radicals (with a common value of n) such that neither nested radical could denest but hoping their sum could, I couldn’t find any. Do any such pairs exist? If so, I’d like a few examples and some guidance about how to find more. If such pairs don’t exist, I’d like to know why not.