(I don't have a formal background in logic, but I am trying to learn.)
The classical proof works like this:
It is either the case that $\sqrt{2}^\sqrt{2} \in \mathbb{Q}$ or $\sqrt{2}^\sqrt{2} \notin \mathbb{Q}$ If it is the former case, we are done. Otherwise, consider $\left(\sqrt{2}^\sqrt{2}\right)^\sqrt{2} = 2 \in \mathbb{Q}$
The crucial component of this proof is the law of the excluded middle, in particular $\sqrt{2}^\sqrt{2} \in \mathbb{Q}$ or $\sqrt{2}^\sqrt{2} \notin \mathbb{Q}$.
I read (from Software Foundations) that in intutionistic systems like Coq, we could possible derive this by adding the axiom manually.
Definition excluded_middle := forall P : Prop,
P \/ ~ P.
Is there a known proof that does not require this axiom? Is it the case that many important theorems in real analysis cannot be proven in intuitionistic logic?