- #1
Kernul
- 211
- 7
Homework Statement
I have this linear application:
##f : \mathbb {R}^4 \rightarrow \mathbb {R}^4##
##f((x, y, z, t)) = (-2x - y + t, 2x + y - t, -4x - 2y + 2t, 0)##
and then I have this vector which I have to find the counter-image of it:
##\vec v = (-k, h - 2, k, h^2 - 4)##
With ##h## and ##k## real parameters that vary.
Homework Equations
The Attempt at a Solution
I already found out that the matrix associated with the linear application had rank ##1##.
So, now, I put the vector in the matrix as a column and we have:
##(A|\vec v) = \begin{pmatrix}
-2 & -1 & 0 & 1 & -k\\
2 & 1 & 0 & -1 & h - 2\\
-4 & -2 & 0 & 2 & k\\
0 & 0 & 0 & 0 & h^2 - 4
\end{pmatrix}##
I know that at this time I have to find the determinants and see what happens. The problem here is that I don't know how it works with two parameters, since I've always done it with just one. Do I have two different counter-image because of this? What does it change from the single parameter exercise?
From what I get, the determinants are ##2x2## so the rank is max ##2##, depending on the parameters. We would have:
##|A'| = h - 2 - k##
##|A''| = -2h + 4 - k##
##|A'''| = 2h^2 - 8##
If the last one is ##0## (so ##h = 2##), then the rank would be the same as the rank of the linear application's matrix, and so we could proceed. But what about the ##k## in the other two cases? Should I stick with ##h = 2## and then being forced to put ##k = 0##? Or I have to do it in a different way?