Problem 1
c.f. Exercise 3.2.4
To see how the Closure Theorem can fail over \(\mathbb{R}\), consider the ideal \[I = \langle x^2+y^2+z^2+2, 3x^2+4y^2+4z^2+5 \rangle \ .\] Let \(V=\mathbf{V}(I)\), and let \(\pi_1\) be the projection taking \((x,y,z)\) to \((y,z)\).
- Working over \(\mathbb{C}\), prove that \(\mathbf{V}(I_1) = \pi_1(V)\).
- Working over \(\mathbb{R}\), prove that \(V=\emptyset\) and that \(\mathbf{V}(I_1)\) is infinite.
Solution
The following Sage code shows that \(I_1 = \langle y^2 + z^2 - 1 \rangle\).
R.<x,y,z> = PolynomialRing(QQ)
I = ideal(x^2+y^2+z^2+2, 3*x^2 + 4*y^2 + 4*z^2 + 5)
I.elimination_ideal([x])
Thus \(I_1 = \langle y^2+z^2-1 \rangle\). Over \(\mathbb{C}\) we have that \(\mathbf{V}(I_1)=\pi_1(V)\) since \((\sqrt{-3},y,z) \in V\) for all \((y,z) \in \mathbf{V}(I_1)\). However, over \(\mathbb{R}\), since \(x^2+y^2+z^2 \ge 0\) for all \((x,y,z)\), we see that \(V=\emptyset\) while \(\mathbf{V}(I_1)\) is the unit circle (and thus is infinite).