Find all "Inner Products" such that <x, Tx> = 0.
Hello,
I came across this problem while preparing for one of my midterms, and it erks me that I still can't find a solution.
Given an linear operator T: R^2 -> R^2 rotation by pi/2 (i.e. T(x, y) = T(-y, x)), find all inner products < , > such that for all vectors x in R^2, <x, Tx> = 0.
It is obvious that the standard inner (dot) product is one such inner product. A few others could certainly be imagined (i.e. scalar multiples of the dot product). But we are, of course, asked to find all possible cases.
I know that all inner products on finite dimensional inner product spaces are represented by a Hermitian matrix G (G = G*) which satisfies the additional condition [x]*G[x] > 0 for all vectors x in V with respect to some basis.
Conversely, when we have such a G satisfying the above, it always represents an inner product on V with respect to a certain basis B.
The inner product is of course given as <x, y> = [y]*[G][x], where [y]* is the conjugate transpose of the coordinate vector of y represented in the basis B, likewise for [x] without the conjugation/transpose.
In the question, the conjugation can be removed, so we have <x, y> = [y]G[x].
The condition imposed on the inner product is <x, Tx> = [Tx]G[x] = 0.
Thus, it seems to be, that to solve the problem we must find all possible G which satisfies this equation.
But the problem I face is that even if I was able to use this equation to find such G, how do I account for the representation of x and Tx in the corresponding basis that G represents an inner product? Needless to say, my attempts down this path of reasoning haven't led me to a solution.
If anyone could help extend this process to get the solution, or propose a different approach, I would appreciate it!
Re: Find all "Inner Products" such that <x, Tx> = 0.
characterizes all inner products, when
varies over positive (symmetric) operators in
. Your hypothesis say
for all
, which means that
must be orthogonal to the othogonal complement of
, and since you're in two dimensions this is just
. By linearity of
it's not difficult to see that
for all
. Since
must be positive, this means
, and so
and all inner products are multiples of the usual.
Re: Find all "Inner Products" such that <x, Tx> = 0.
since we are dealing with R^2, G is a symmetric matrix. moreover, G must be positive-definite, that is, if (x,y) is not (0,0), and G =
[a b]
[b c],

so 
since (x,0) and (0,y) are not (0,0) for x,y ≠ 0, we must have a,c > 0.
moreover, by "completing the squares" we see that:
,
so we must also have, in addition to a,c > 0, that
.
now, in addition, we require that <x,Tx> = 0, that is:
so that:
for all x,y in R. if we choose x = 1, y = 0, we see that b = 0.
if we choose x = y, we see that a = c, so the only possible candidates are matrices of the form aI, for a > 0, that is to say: POSITIVE scalar multiples of the usual inner product.
Re: Find all "Inner Products" such that <x, Tx> = 0.
Thanks guys, very helpful solutions!