Galois theory tells us that $\frac{z^{11}-1}{z-1} = z^{10} + z^9 + z^8 + z^7 + z^6 + z^5 + z^4 + z^3 + z^2 + z + 1$ can be solved in radicals because its group is solvable. Actually performing the calculation is beyond me, though - here what I have got so far:
Let the roots be $\zeta^1,\zeta^2,\ldots,\zeta^{10}$, following Gauss we can split the problem into solving quintics and quadratics by looking at subgroups of the roots. Since 2 is a generator of the group $[2,4,8,5,10,9,7,3,6,1]$ we can partition into the five subgroups of conjugate pairs $[2,9]$,$[4,7]$,$[8,3]$,$[5,6]$,$[10,1]$.
Now put $q_1 = \zeta^2+\zeta^9$,$q_2 = \zeta^4+\zeta^7$,$q_3 = \zeta^8+\zeta^3$,$q_4 = \zeta^5+\zeta^6$,$q_5 = \zeta^{10}+\zeta^1$. So if we can solve the quintic $(q - q_1)(q - q_2)(q - q_3)(q - q_4)(q - q_5) = q^5 + q^4 - 4q^3 - 3q^2 + 3q + 1 = 0$ we would just be left to solve a few quadratic equations.
Now pari/gp tells me this quintic has the cyclic group C(5):
? polgalois(x^5 + x^4 - 4*x^3 - 3*x^2 + 3*x + 1)
%1 = [5, 1, 1, "C(5) = 5"]
I've worked through examples of solving quadratic and cubic equations based on the galois group but when it comes to this quintic I'm completely stumped so any advice would be tremendously helpful! Thanks.
Edit: Thanks to Robin Chapman the problem is reduced significantly. Let $\omega$ be a primitive 5th root of unity (which is easy to express in radicals), it only remains to express $(q_1 + \omega q_2 + \omega^2 q_3 + \omega^3 q_4 + \omega^4 q_5)^5$ in terms of rationals and powers of $\omega$ (and then everything can be substituted back and solved easily). We know this is possible because the term is fixed by the quintics galois group, how to actually perform this evades me but I will try to find a way.