degs2k4
- 72
- 0
Homework Statement
I have a question regarding how to compose 2 transformations, a rotation and a translation, of a linear algebra problem.
Suppose we have a quadratic curve like the following one:
(i) x^2 + y^4 - 6xy +2x -3y +6 = 0
We want to transform the above into its standard position, it order to see what kind of conic is. First we notice that the above curve has been rotated (since it has a cross-product term xy) and translated (since it has terms x^2,x and y^2,y).
Now we want to take it back to its original position by rotating and translating again. First we do the rotation part by means of diagonalization and substitution (x=Px'), which can be seen as a base change that uses matrix P, and get a quadratic of the form:
(ii) ax'^2 + by'^2 + cx' + dy' + e =0
Second, we do the translation by completing squares and substitution (with a variable change like x''=x'-j, y''=y'-k, can be viewed as a vector T=(-j -k)), getting a quadratic form like:
(iii) mx''^2 + ny''^2 + p = 0
Ok, the problem I have comes now. I want to know what the composite transformation (from i to iii) looks like, that is, a matrix Q such that x'' = Q x.
The Attempt at a Solution
So my guess is the following. The rotation transformation was:
\begin{pmatrix} x \\ y \end{pmatrix} = P \begin{pmatrix} x' \\ y' \end{pmatrix}
P^{-1} \begin{pmatrix} x \\ y \end{pmatrix} = \begin{pmatrix} x' \\ y' \end{pmatrix}
now substitute it in the translation:
\begin{pmatrix} x'' \\ y'' \end{pmatrix} = \begin{pmatrix} x' \\ y' \end{pmatrix} + T
\begin{pmatrix} x'' \\ y'' \end{pmatrix} = P^{-1} \begin{pmatrix} x \\ y \end{pmatrix} +T = ((P^{-1}) + TI) \begin{pmatrix} x \\ y \end{pmatrix}
so,
Q = ((P^{-1}) + TI)
But I am not sure about this... is it Ok? Any other ideas ?
Thanks in advance...