Background & Motivation
The geometric and intuitive nature of matrix transpose is well explained (e.g. What is the geometric interpretation of the transpose? and Truly intuitive geometric interpretation for the transpose of a square matrix) as the same stretch but the inverse twist. To better understand this, I formulated this problem:
Definitions
Let $A$ be a real $n \times n$ matrix, and consider $x \in \mathbb R^n$ such that $y = Ax$. If $y \neq 0$, define $Q(A,x)$ to be the unique orthogonal $n \times n$ matrix with determinant 1, and $\lambda(A,x)$ the unique positive real number, such that $y = \lambda(A,x) Q(A,x)x$. And for $y = 0$, define $Q(A,x) = I$ and $\lambda(A,x) = 0$.
Thus, $Q$ captures the twisting action of $A$ on $x$ and $\lambda$ the stretching.
Then define $\mathcal T(A)$ to be the unique real $n \times n$ matrix such that for all $x, \lambda(\mathcal T(A), x) = \lambda(A, x)$ and $Q(\mathcal T(A), x) = Q^{-1}(A,x)$.
Problem
Problem: Show that for any such $A$, $T(A)$ exists, is unique, and equals the transpose of $A$. Do this for both definitions of transpose:
- $T(A)_{ij} = A_{ji}$
- For all $x, y, Ax \cdot y = x \cdot \mathcal T(A)y$
Update
The comments have pointed out some gaps in how I set up this problem: namely in defining $Q$ to be unique I'll accept an answer which provides a good way to define $Q$ uniquely.