How to prove that $\Bbb R[x]/\langle x^5+x-3\rangle$ is not an integral domain?
I have used sage to get
sage: x = PolynomialRing(RealField(), 'x').gen()
sage: f = x^5+x-3
sage: f.factor()
$(x - 1.13299756588507) * (x^2 - 0.950761513339099*x + 1.50221285149526) * (x^2 + 2.08375907922416*x + 1.76262856840348)$
How to use a general trick to prove it without using any tool?