I have hyperplanes in $\Bbb R^n$ and the angles between any 2 $i,j$ of them with $\alpha_{ij}$. I want to know all their normal vectors. How to do it systematically?
My try: Let $$ R=(\begin{matrix} cos(\alpha_{ij}) & -sin(\alpha_{ij}) \\ sin(\alpha_{ij}) & cos(\alpha_{ij})\\ \end{matrix}) $$ Let all normalvectors be $(1,0,...,0)$. Fix $n_1$. For the $n_2$ one has the angle to the first one $\alpha_{1,2}$ so apply $R_{ij}(\alpha_{1,2})$ to the components $1,2$ of $n_1$. Fix it. For the third one apply R($\alpha_{1,3}$) to components (1,2), but now what? I do not want to change $\alpha_{1,3}$ so I can rotate around $n_1$ as to modify the angle $\alpha_{2,3}$ but how to make it the right angle and can I even get every angle like this?
Also this approach only works when I have always 1 more dimension to rotate in.
Edit: just needed to solve the system of equations $\vec n_i \vec n_j = cos(\alpha_{ij})$ for all $i,j$ combinations while letting $n_1=(1,0,0,..)$