I am attempting to express the sentence
"There does not exist a general solution for the 5th degree polynomial equation in radicals"
In 2nd order logic.
So I made the statement clearer by going through a sequence of "specifications" where I take the english statement and make it more rigorous.
There does not exist a general radical expression $Y(a,b,c,d,e,f)$ such that $aY^5 + bY^4 + cY^3 + dY^2 + eY + f = 0$
$\not\exists $ general radical expression $Y(a,b,c,d,e,f)|\forall a,b,c,d,e,f \in \mathbb{Z}, aY^5 + bY^4 + cY^3 + dY^2 + eY + f = 0$
And here is where it gets trick, how do I formalize the notion of a general radical expression? One idea is to create a set $S$ which basically carries the property that $(k \in \mathbb{N}\wedge \mu^k \in S \rightarrow \mu \in S) \wedge (\mathbb{Q} \subseteq S \wedge a,b,c,d,e,f \in S) $ That is any "radical" expression of rationals and the symbols $a,b,c,d,e,f$ is in $S$ giving me
$\not\exists \ Y \in S | (k \in \mathbb{N}\wedge \mu^k \in S \rightarrow \mu \in S) \wedge (\mathbb{Q} \subseteq S) \wedge (a,b,c,d,e,f \in S) |\forall a,b,c,d,e,f \in \mathbb{Q}, aY^5 + bY^4 + cY^3 + dY^2 + eY + f = 0$
But this now leads to a couple issues. How do I make it clear that $Y$ is a function that accepts $a,b,c,d,e,f$ as arguments, and that the initial $a,b,c,d,e,f$ are symbols. And furthermore, is this really the most succint/intuitive way to encode this statement in 2nd order logic? Is there a better way to express the sentence in say 3rd order logic or higher?