Background
I've been working on Exercise 1.1 in the book "An Introduction to Finite Tight Frames", which I paraphrase as follows: Let $u_1, u_2, u_3$ be any set of equally spaced unit vectors in $\mathbb{R}^2$ so that for a $2 \pi /3$ rotation matrix counterclockwise $R$ we have $u_2 = R u_1$ and $u_3 = R^2 u_1$. Let $f$ be any vector in $\mathbb{R}^2$. Show that: \begin{align*} f = \frac{2}{3} \left( u_1 \langle u_1, f \rangle + u_2 \langle u_2, f \rangle + u_3 \langle u_3, f \rangle \right) \end{align*} Basically, the intuition is that the sum of the projections onto three equally spaced unit vectors returns the original vector, scaled up by 3/2. The approach given in the solutions, which makes sense to me, is to pick some particular $\{u_1, u_2, u_3\}$, form $V = [u_1, u_2, u_3]$, and then show that for these particular $u_i$ vectors we have $V V^*= \frac{3}{2} I$. The result then follows by noting that any rotated version $TV$ (where $T$ is a rotation matrix) of these vectors also will satisfy the above equation, as $(TV)(TV)^* = TVV^*T^* = T \frac{3}{2}I T^* = \frac{3}{2}I$.
Do we need to pick coordinates?
However, I ended up picking coordinates to calculate $V V^*$ for a particular $\{u_1, u_2, u_3\}$. I was hoping there would be a coordinate-free way to solve this problem. Letting $u_2 = Ru_1$, $u_3 = R^2 u_1$ and $V = [u_1, u_2, u_3]$, can we show that $V V^* = \frac{3}{2} I$ in a coordinate-free way?
An attempt at solution
We can write $V V^*$ as: \begin{align} V V^* &= u_1 u_1^* + u_2 u_2^* + u_3 u_3^*\\ &= u_1 u_1^* + Ru_1 (Ru_1)^* + R^2 u_1 (R^2 u_1)^*\\ &= u_1 u_1^* + Ru_1 u_1^* R^{-1} + R^2 u_1 u_1 ^* (R^2)^{-1} \end{align} (Note that we have used the fact that $R$ is an orthogonal matrix). I wasn't really sure where to go from here. It might be worth noting that that if $\{I = R^0, R, R^2\}$ is the rotation group with three elements, and $\gamma_a$ denotes conjugation by $a$, then we have: \begin{align} V V^* &= \gamma_{R^0} u_1 u_1^* + \gamma_{R^1} u_1 u_1^* + \gamma_{R^2} u_1 u_1^*\\ &= (\gamma_{R^0} + \gamma_{R^1} + \gamma_{R^2}) u_1 u_1^* \\ &= (\gamma_R^0 + \gamma_R^1 + \gamma_R^2) (u_1 u_1^*) \end{align} where $u_1$ is some arbitrary unit vector. However, while this looks neat, I'm not sure how to simplify from here.
Any thoughts appreciated.