7
$\begingroup$

I was watching a video where a problem in Galois theory was posed such that it became necessary to tell if a certain element was a perfect square in a finite field extension of the rationals. By writing a general element in terms of its $\mathbb{Q}$-basis and squaring it, the result was a system of quadratic equations. In particular, it was system of three non-homogeneous equations in three unknowns.

The video deferred the solution to a computer algebra system, which felt unsatisfying. I was wondering what techniques would be useful for solving general equations of this kind.

My only thought was that Groebner bases might be useful (and I'm sure that's how the computer algebra system solves it). But I don't know much about them, and I wonder how amenable the Buchberger algorithm is to solving it by hand.

  • 6
    let us see your system!2017-01-29
  • 1
    It's the system that you get the following way. Take the polynomial t^3 - 3t - 1. Freely adjoin a root of this polynomial. Then show that when you divide out the root from the polynomial and show the remaining quadratic is reducible by showing that its discriminant is a perfect square in the field.2017-01-29
  • 1
    I don't see how in a splitting field of a cubic a problem involving squaring an element can give rise to a system of three quadratic equations2017-02-15
  • 0
    It's not especially relevant to the question. But ultimately you end up needing to know if some element in the extension is a perfect square. Take an arbitrary element written in terms of some basis and square it, and set it equal to the element you're trying to root. The result is quadratic in the arbitrary coefficients you started with.2017-02-16
  • 0
    Is there a link to the video?2017-02-17
  • 0
    https://www.youtube.com/watch?v=NOhDvn4CLUo&list=PLL0ATV5XYF8DTGAPKRPtYa4E8rOLcw88y&index=50&t=10m20s2017-02-17

2 Answers 2

4

Consider quadratic equation of form $ax^2 +by^2 +cxy+dx+ey+f=0$. The polynomial can be decomposited into two factors(polynomial) such as $ax+By+C$ and $dx+Ey+F$. Therefore for a system of two quatratic equations we get four polynomial of first degre(i.e linear equation). The combination of these four equations give four systems of equations their solutions satisfy the initial quadratic system of equations; look at this example: Solve following system of quadratic equations:

$$\begin{cases} 2x^2+2y^2 +5xy-x+y-1=0 \\ -3x^2-2y^2+5xy+10x-8y-8=0 \\ \end{cases} $$ The first equation can be written as:

$$(x+2y-1)(2x+y+1)=0$$ and the second one can be written as:

$$(-x+y+2)(3x-2y-4)=0$$

We get four system os equation wich give following solutions: $$\begin{cases} x+2y-1=0 \\ -x+y+2=0 \\ \end{cases} $$ give $x=5/3$ and $y=-1/3$

$$\begin{cases} x+2y-1=0 \\ 3x-2y-4=0 \\ \end{cases} $$ give $x=5/4$ and $y = -1/8$

$$\begin{cases} 2x+y+1=0 \\ -x+y+2=0 \\ \end{cases} $$ give $x=1/3$ and $y=-5/3$ and

$$\begin{cases} 2x+y+1=0 \\ 3x -2y-4=0 \\ \end{cases} $$
give $x=2/7$ and $y=-11/7$

These are the solutions of the quadratic system of equations.

  • 2
    This is a good thing to keep in mind, but it looks like it only applies when the quadratics are all reducible.... which is a very special condition.2017-02-17
1

It seems systems like these can be solved with the use of resultants.

Say we have three polynomials $f(x, y, z) = g(x, y, z) = h(x, y, z) = 0$ in three variables.

We can treat each as a polynomial in the ring $R[x,y][z]$. We can use a resultant to form a new, simpler system $F(x, y) = Res(f, g) = 0$ and $G(x, y) = Res(g, h) = 0$. This effectively eliminates the $z$ variable from our system.

Doing this again, we get a final polynomial $R(x) = Res(F, G)$ (taken with respect to $y$ this time over the ring $R[x]$).

We solve $R(x) = 0$ to get all possible values of $x$.

Then, we go through each of these possible values and plug them into the system $F(x, y) = G(x, y) = 0$. This gives us the corresponding values for $y$.

And then, with values for $x$ and $y$ in hand, we solve the original system $f(x, y, z) = g(x, y, z) = h(x, y, z) = 0$ to get the corresponding $z$ values.