I am trying to solve this problem which states as follows:
Find the minimum polynomial for $\sqrt[3]{4}+\sqrt{-27}$ over $\mathbb{Q}(\sqrt[3]{2})$ and $\mathbb{Q}(\sqrt{-3})$.
Here's what I have done so far (please correct me if I am wrong):
Since $\mathbb{Q}(\sqrt[3]{4})=\mathbb{Q}((\sqrt[3]{4})^{2})=\mathbb{Q}(\sqrt[3]{2})$, and $\mathbb{Q}(\sqrt{-27})=\mathbb{Q}(3\sqrt{-3})=\mathbb{Q}(\sqrt{-3})$, we have $\mathbb{Q}(\sqrt[3]{4}+\sqrt{-27})=\mathbb{Q}(\sqrt[3]{2},\sqrt{-3})$. And from the question, we would only need to calculate $\left [ \mathbb{Q}(\sqrt[3]{2},\sqrt{-3}):\mathbb{Q}(\sqrt[3]{2}) \right ]$ and $\left [ \mathbb{Q}(\sqrt[3]{2},\sqrt{-3}):\mathbb{Q}(\sqrt{-3}) \right ]$. Just wondering if there is a general way of solving degree of the form $\left [ \mathbb{Q}(a,b):\mathbb{Q}(a) \right ]$ which might make this easier?
Use Galois Theory. In our case, note that adjoining $\sqrt{-3}$ to $\Bbb Q$ is same as adjoining a primitive third root of unity, let this be $u=(-1+\sqrt{-3})/2$. So we indeed obtain a Galois extension of $\Bbb Q$ after adjoining $a=\sqrt[3]2$ and $b=\sqrt{-3}$. The fields in between are:
(Degrees are over $\Bbb Q$.)
Then we can experiment in sage, of course doing such computations with bare hands is not in conformity with the century... (i.e. using internet, stackexchange, but comuting with pencil and paper):
For short, the code considered the polynomial ring $S=K[Y]$, and computed first the polynomial obtained by building the product of $Y-c$, for all conjugates $c$ of $a^2+b^3$, which are of the shape $c=c_{k,\pm}:=(au^k)^2+(\pm b)^3$.
If we work over $M=\Bbb Q(b)$, then it is enough to take the product of $Y-c$ for $c$ of the shape $(au^k)^2+b^3$.
If we work over $M=\Bbb Q(a)$, then it is enough to take the product of $Y-c$ for $c$ of the shape $a^2+(\pm b)^3$.