, 1 min read

Diagonal of Squared Jacobian

Original post is here eklausmeier.goip.de/blog/2021/07-25-diagonal-of-squared-jacobian.


Assume f is a m-vector valued function in n-variables, i.e., f:URnRm. The Jacobian is given by

J=(fx1(1)fxn(1)fx1(m)fxn(m))

We use

fxi(j)=f(j)xi.

The diagonal elements Dii of D:=JTJRm×m are

Dii=(fxi(1))2+(fxi(2))2++(fxi(m))2.

One diagonal element can be computed in O(m) multiplications and O(m) additions. All m diagonals can therefore be computed in O(m2) multiplications and O(m2) additions. That's the same effort as one matrix-vector multiplication.

Open questions:

  1. How to fetch the diagonal elements in case of a matrix-free setting?
  2. In case of projections with (1,0,,0), (0,1,,0), etc., do we incur too much effort?