Suppose $A,B,C$ are i.i.d. random variables with uniform distribution on $[-1,1]$. I'm interested in the expected roots of the polynomial $Ax^2 + Bx + C$, which are complex random variables given by $$Z_1 = \frac{-B+\sqrt{B^2-4AC}}{2A}$$ and $$Z_2 = \frac{-B-\sqrt{B^2-4AC}}{2A}.$$
Making simulations, I computed $$E[Z_1] \approx 0.3559 + 0.0005i$$ and $$E[Z_2] \approx -0.6421 - 0.0005i.$$
To confirm this resuts, I need to calculate this values mathematically. For $E[Z_1]$ for instance, this means to calculate the integral $$\frac{1}{8}\int_{-1}^1 \int_{-1}^1 \int_{-1}^1 \frac{-b+\sqrt{b^2-4ac}}{2a}\ da\ db\ dc.$$
Unfortunately, looks like this integral has different values when we change the order of integration. I tried to compute with Wolframalpha. It gives me zero or can't compute depending on the order. Probably this is because the term $\frac{1}{2a}$ goes to infinity in the interval of integration, so we can't use Fubini's Theorem. I'm not sure if Wolframalpha just failed to compute some integrals or $E[Z_1]$ is really not defined. This second scenario means $Z_1$ has no expected value, so the random polynomial $Ax^2 + Bx + C$ has no expected root. I think this is a strange scenario, therefore I really need to confirm whether this is the case or not.