Consider a matrix $W \in \mathbb{R}^{n\times m}$ with corresponding singular value decomposition, $W = ULV^T$, and a vector $\mathbf{x} \in \mathbb{R}^{m}$. Is it possible to compute matrix-vector-products of the form $U L^k V^T \mathbf{x}$ without explicitly computing the SVD?
If $k$ is odd, this is easy. For example, $W W^{T} W\mathbf{x} = UL^3V^T\mathbf{x}$. But I can't see an obvious way to solve this for even powers.
For context, I want to avoid the SVD as computing the matrix vector products will typically be much cheaper (e.g. for $k \ll n)$. Ideally, a working algorithm would have complexity $O(kmn)$ instead of $O(mn^2 + nm^2)$.
I highly doubt there is an exact formula. But, if you want a good approximation, here is an idea: Find a polynomial $f(x) = \sum f_j x^j$ of degree $d$ which is a good approximation of $x^{(k-1)/2}$. (More on this later.) Then $\sum f_j (WW^T)^j W \vec{x} = U \left( \sum f_j L^{2j+1} \right) V^T \vec{x}$. For each singular value $\lambda$, $\sum f_j \lambda^{2j+1}$ will be $\lambda f(\lambda^2) \approx \lambda^k$. If we organize the evaluation as in Horner's method as $W( f_0 \vec{x} + \cdots + W^T W(f_{d-2} \vec{x} + W^T W (f_{d-1} \vec{x} + W^T W f_d \vec{x})) \cdots )$, it will only take $O(dmn)$ steps.
Now, how to approximate $x^{k-1/2}$ by polynomials? Minor observations first: (1) We can precompute our $f(x)$ for many values of $k$, so this needn't count against our computation time if we expect $k$ to stay bounded. (2) A variant of this might be to precompute a good approximation $g(x)$ for $x^{(k-1)/2}$ on $[0,1]$, then compute a bound $M$ for the squares of the singular values, such as $\mathrm{Tr}(W^T W)$, and use $f(x) = M^{(k-1)/2} g(x/M)$. (3) We could just take an approximation $h(x)$ to $\sqrt{x}$ and multiply by $x^{k/2-1}$, or raise it to the $2k-1$ power, but neither of those is likely to be the best option; it would probably be better to optimize for each $k$ separately.
With that out of the way, how well can polynomials approximate $\sqrt{x}$? A numerical analyst would have better strategies, but what I did was to expand $\sqrt{x}$ in the Laguerre polynomials. I chose Laguerre polynomials because they are natural for functions defined on $[0, \infty)$, but I am not an expert and, if this is important, I would suggest trying several families of orthogonal polynomials to see which is better.
The cubic approximation is $$\frac{\sqrt{\pi }}{192} \left(x^3-15 x^2+90 x+30\right)$$ and does an okay job on the range $[0,4]$ and not so well on $[4,9]$ (Laguerre in blue, $\sqrt{x}$ in red).
The degree $10$ approximation is $\sqrt{\pi}$ times
and looks pretty good!