Determinants are used here as scaling factors for the areas of the polygons generated by connecting the individual roots of $z$.
- The roots of complex numbers are given by the formula $$z_k=\sqrt[n]{r}\Big(\cos\frac{\theta+2k\pi}{n}+i\sin\frac{\theta+2k\pi}{n}\Big)$$
- Two consecutive roots ($k=0$ and $k=1$) can be represented as $$\begin{bmatrix}\sqrt[n]{r}(\cos\frac{\theta}{n})&\sqrt[n]{r}(\cos\frac{\theta+2\pi}{n}) \\ \sqrt[n]{r}(\sin\frac{\theta}{n})&\sqrt[n]{r}(\sin\frac{\theta+2\pi}{n})\end{bmatrix}$$
- And the determinant of that, after some algebraic manipulation, is given by $$\text{det}=\sqrt[n]{r^2}\Big(\sin\frac{2\pi}{n}\Big)$$
- After excluding the cases where $\displaystyle\sin\frac{2\pi}{n}$ is $0$, I arrived with a final formula of $$r=\Big(\frac{\text{det}}{\sin\frac{2\pi}{n}}\Big)^{\frac{n}{2}}$$
However, the values generated by this formula are incorrect. Here is an example with $n=4$, $\text{det}=3$; the resultant area is $162$ instead of $6$).
The area $a$ for a polygon with $n=4$ and $r=1$ is $4(\frac{r^2}{2})=4(\frac{1}{2})=2$. The area $A$ for the same polygon is then expected to be $a\times\text{det}=2\times3=6$. Instead I get the following: $$r=\Big(\frac{\text{det}}{\sin\frac{2\pi}{n}}\Big)^{\frac{n}{2}}=\Big(\frac{3}{\sin\frac{2\pi}{4}}\Big)^{\frac{4}{2}}=9$$ $$A=4(\frac{r^2}{2})=4(\frac{9^2}{2})=162\neq6$$
At which step did I make an error? Are my assumptions correct in the first place?
Edit: My biggest concern right now is whether complex numbers are allowed to be represented as in step 2.
