This is a question that I have always been interested in:
Suppose we have a system of equations - for example, a system of non-linear equations. From what I have seen, in most cases, we tend to use numerical optimization methods to attempt and find an approximate solution. The idea being, we simply assume that an analytical solution to this system of non-linear equations probably does not exist, and some numerical approximation technique (e.g. Stochastic Gradient Descent) will likely be able to provide a suitable answer in an acceptable amount of time.
But this brings me to my question. Consider the case of Neural Networks (Machine Learning) - in Neural Networks, we are required to find an "optimal" set of weights that minimizes the Loss Function of the Neural Network. Doing this is effectively attempting to "solve" a system of non-linear equations.
It has almost become routine to "solve" these systems of non-linear equations using numerical optimization methods such as "Stochastic Gradient Descent", as we implicitly assume that there probably does not exist an analytical solution to this system of non-linear equations. Although in theory there "might" exist an analytical solution to this system of non-linear equations "perhaps if we looked hard enough" - we just "assume" it probably doesn't exist or if it did exist it would take too much work to uncover, and thus we "solve" this system of equations numerically and "hope" that the numerical solution is "good enough".
But can we actually prove this: Can we mathematically demonstrate that some specific system of non-linear equations does not have an analytical solution?
The closest mathematical theorem I could find that addresses this point is the Abel-Ruffini Theorem (https://en.wikipedia.org/wiki/Abel%E2%80%93Ruffini_theorem) - but I am not sure if this theorem is specifically making claims about the question I am asking.
- Can someone please comment on this : For optimization problems in which we rely on numerical approximations - is it possible that some of these problems might actually have analytical solutions?
Thanks!
(2) For your "non-analytic" solution, it depends on the details like what you exactly mean be non-analytic. Maybe this is related? https://math.stackexchange.com/questions/982984/prove-that-an-equation-has-no-elementary-solution
– Peter Franek Jul 20 '22 at 08:43