Question:medium

Let \(T: \mathbb{R}^3 \to \mathbb{R}^3\) be the linear transformation which reflects every vector in \(\mathbb{R}^3\) through a two-dimensional subspace of \(\mathbb{R}^3\). Let \(P \in \mathbb{R}^{3 \times 3}\) be the matrix representation of \(T\) using the basis

\[ \left\{ \begin{pmatrix} 1 \\ 0 \\ 0 \end{pmatrix}, \begin{pmatrix} 0 \\ 1 \\ 0 \end{pmatrix}, \begin{pmatrix} 0 \\ 0 \\ 1 \end{pmatrix} \right\}. \]

Then the value of \(2 \times \text{trace}(P) - 3 \times \text{determinant}(P)\) is equal to ______. (answer in integer)

Show Hint

A reflection through a plane in R3 has eigenvalues 1, 1, -1; use these to get the trace and determinant directly.
Updated On: Jul 21, 2026
Show Solution

Correct Answer: 5

Solution and Explanation

Instead of arguing through eigenvalues in general, we can just pick one concrete two-dimensional subspace, write down the actual matrix of $T$ for it, and compute trace and determinant directly. Since the answer does not depend on which plane is chosen, any valid choice will do.

  1. Choose a plane: Take the two-dimensional subspace to be the $xy$-plane, that is, all vectors of the form $(x, y, 0)$.
  2. Write down what $T$ does: Reflecting through the $xy$-plane keeps the $x$ and $y$ coordinates the same and flips the sign of the $z$ coordinate, since $z$ is measured perpendicular to this plane. So $T(x,y,z) = (x, y, -z)$.
  3. Write the matrix $P$: Using the standard basis $(1,0,0), (0,1,0), (0,0,1)$, this transformation has the matrix $$P = \begin{pmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & -1 \end{pmatrix}.$$
  4. Compute trace and determinant: The trace is the sum of the diagonal entries, $1+1+(-1)=1$. The determinant of this diagonal matrix is the product of the diagonal entries, $1 \times 1 \times (-1) = -1$.

Now substitute these into the required expression: $2 \times \text{trace}(P) - 3 \times \text{determinant}(P) = 2(1) - 3(-1) = 2+3 = 5$.

Let's summarize:

  • Reflection through any plane in $\mathbb{R}^3$ always has trace 1 and determinant $-1$, since two directions stay fixed and one direction flips sign.
  • The specific plane chosen does not matter; only the type of transformation matters.

So the required value is 5 for any choice of plane.

$$\boxed{5}$$
Was this answer helpful?
0