Can someone check whether the following are the correct minimal polynomials for each root?
For root $\sqrt{3}+\sqrt[3]{5}$, I got $p(x)=x^{6}-9x^{4}-10x^{3}+27x^{2}-90x - 27$.
For root $\cos\theta +i\sin\theta$, where $\theta =\frac{2\pi}{n}$ for $n\geq 1$, I got $p(x)=x^{2}-2x\cos\theta +1$.
For root $\sqrt{\sqrt[3]{2}-i}$, I got $p(x)=x^{12}-15x^{8}-4x^{6}+3x^{4}+12x^{2}+5$.
I tried using a calculator to see whether the equations become zero if I substitute the roots, but no calculator I can find supports such lengthy equations.
Just use sage. Here is the code, just checking:
First polynomial is ok:
In fact, sage can work explicitly in the tower of fields:
For the second question, if we need the minimal polynomial over $\Bbb Q$, the result should be a cyclotomic polynomial. For instance, sage again:
The third one:
Again, one can manually / humanly build the tower of fields, by starting with $\Bbb Q$, and adjoining $i$, then $2^{1/3}$ and its conjugates, then the square root we need.