Matrix as TransformationJEE Main

Where the basis vectors land — interactive Mathematics simulation for IIT-JEE.

Concept

A 2×2 matrix IS a transformation of the plane: its columns are where the basis vectors î and ĵ land. Everything else follows by linearity. The determinant is the area-scaling factor of the map — negative means the plane got flipped, zero means it collapsed onto a line (no inverse possible).

Key formula

(abcd)(xy)=x(ac)+y(bd),det=adbc=area factor\begin{pmatrix}a&b\\c&d\end{pmatrix}\begin{pmatrix}x\\y\end{pmatrix} = x\begin{pmatrix}a\\c\end{pmatrix} + y\begin{pmatrix}b\\d\end{pmatrix}, \qquad \det = ad - bc = \text{area factor}

Derivation

The unit square spanned by î, ĵ maps to the parallelogram spanned by the columns. Its area = |ad − bc| — expand the cross product.

det = 0 ⟺ columns parallel ⟺ plane squashed to a line ⟺ no inverse. Inverse matrix: swap a↔d, negate b, c, divide by det — it exactly undoes the geometry.

Scenarios to explore

  • Matrix as Transformation — Watch where basis vectors land — determinant as area scale.

Real-world applications

  • Computer graphics: every sprite rotation/scale/shear is one of these.
  • Solving systems: Cramer's rule is determinant ratios.
  • Eigenvectors = directions the map only stretches — gateway to advanced topics.

JEE exam tips

  • det(kA) = k²·detA for 2×2 (kⁿ in n×n) — the classic scaling trap.
  • AB ≠ BA in general, but det(AB) = det(BA) always.
  • Singular (det 0) ⟺ rows/columns proportional ⟺ non-trivial solutions of AX = 0.

Common mistakes

  • Reading ROWS as the landing spots (it's the COLUMNS).
  • det(A + B) ≠ det A + det B — determinants multiply, not add: det(AB) = detA·detB.
  • Thinking negative determinant means smaller area (it means reflection).

Exam traps to avoid

  • Rotation matrix [cosθ, −sinθ; sinθ, cosθ] has det = 1 — pure rotations never change area.
  • adj(A)·A = det(A)·I — adjugate identities feed many JEE one-liners.