• NEET
      • Class 11th
      • Class 12th
      • Class 12th Plus
    • JEE
      • Class 11th
      • Class 12th
      • Class 12th Plus
    • Class 6-10
      • Class 6th
      • Class 7th
      • Class 8th
      • Class 9th
      • Class 10th
    • View All Options
      • Online Courses
      • Distance Learning
      • Hindi Medium Courses
      • International Olympiad
    • NEET
      • Class 11th
      • Class 12th
      • Class 12th Plus
    • JEE (Main+Advanced)
      • Class 11th
      • Class 12th
      • Class 12th Plus
    • JEE Main
      • Class 11th
      • Class 12th
      • Class 12th Plus
  • Classroom
  • NEW
    • NEET
      • 2025
      • 2024
      • 2023
      • 2022
    • JEE
      • 2025
      • 2024
      • 2023
      • 2022
    • Class 6-10
    • JEE Main
      • Previous Year Papers
      • Sample Papers
      • Result
      • Analysis
      • Syllabus
      • Exam Date
    • JEE Advanced
      • Previous Year Papers
      • Sample Papers
      • Mock Test
      • Result
      • Analysis
      • Syllabus
      • Exam Date
    • NEET
      • Previous Year Papers
      • Sample Papers
      • Mock Test
      • Result
      • Analysis
      • Syllabus
      • Exam Date
      • College Predictor
      • Counselling
    • NCERT Solutions
      • Class 6
      • Class 7
      • Class 8
      • Class 9
      • Class 10
      • Class 11
      • Class 12
    • CBSE
      • Notes
      • Sample Papers
      • Question Papers
    • Olympiad
      • NSO
      • IMO
      • NMTC
    • TALLENTEX
    • AOSAT
  • ALLEN E-Store
    • ALLEN for Schools
    • About ALLEN
    • Blogs
    • News
    • Careers
    • Request a call back
    • Book home demo
JEE PhysicsJEE Chemistry
Home
JEE Maths
Orthogonal Matrix

Orthogonal Matrix 

An orthogonal matrix is a special type of square matrix whose rows and columns are orthonormal vectors. In simple terms, a matrix A is orthogonal if the product of the matrix and its transpose equals the identity matrix.

An orthogonal matrix is a special type of square matrix whose transpose is equal to its inverse, i.e., AT=A−1. This means the rows and columns of the matrix are orthonormal vectors — they are perpendicular and of unit length. Orthogonal matrices preserve the length and angle of vectors under transformation, making them essential in geometry, computer graphics, and numerical analysis. Their determinant is always either +1 or –1, indicating volume-preserving transformations.

1.0What is an Orthogonal Matrix?

A matrix A is called orthogonal if:

ATA=AAT=I

Where:

  • AT is the transpose of matrix A
  • I is the identity matrix of the same order

2.0 Properties of Orthogonal Matrix

Here are some important orthogonal matrix properties:

  1. The inverse of an orthogonal matrix is equal to its transpose, i.e., AT=A−1
  2. The determinant of an orthogonal matrix is always +1 or –1 i.e., ∣A∣=±1
  3. The rows and columns form orthonormal sets:
  • Each row (or column) is a unit vector
  • Dot product of distinct rows (or columns) is 0
  1. Product of two orthogonal matrices is also orthogonal.
  2. The transpose of an orthogonal matrix is also orthogonal.

3.0Inverse of Orthogonal Matrix

One of the most useful properties of an orthogonal matrix is:A−1=AT

This means that instead of performing complex inverse operations, we can simply transpose the matrix to get its inverse — saving both time and computation.

4.0Example of Orthogonal Matrix (2 × 2)

Let’s check whether the following matrix is orthogonal:

A=[cosθ−sinθ​sinθcosθ​]

Let’s compute ATA:

AT=[cosθsinθ​−sinθcosθ​]

Now,

ATA=[cosθsinθ​−sinθcosθ​][cosθ−sinθ​sinθcosθ​]=[10​01​]

Therefore, this is an orthogonal matrix.

5.0Orthogonal Matrix Example (3 × 3)

Let’s verify the orthogonality of this 3x3 matrix:

A=3​1​​111​1−11​10−2​​

To verify it's orthogonal:

  • Check if the rows are mutually orthogonal (dot product = 0)
  • Each row has a magnitude of 1 (unit vectors)
  • If both hold true, then ATA=I

This is a valid orthogonal matrix example (3 × 3) after simplification.

6.0Real-World Applications of Orthogonal Matrices

  • Computer graphics & animation: For rotating objects
  • Quantum mechanics: Orthogonal matrices preserve length and angle
  • Signal processing: Orthogonal transformations reduce computation
  • Data science: PCA (Principal Component Analysis) uses orthogonal matrices

7.0Solved Examples on Orthogonal Matrix

Example 1: Check whether the matrix A=[2​1​−2​1​​2​1​2​1​​] is orthogonal.

Solution:

Step 1: Find AT (transpose of A):

 AT=[2​1​2​1​​−2​1​2​1​​]

Step 2: Multiply ATA:

ATA=[2​1​2​1​​−2​1​2​1​​][2​1​−2​1​​2​1​2​1​​]=[10​01​]

Hence, A is an orthogonal matrix.


Example 2: Show that A=3​1​​111​1−11​11−1​​ is orthogonal.

Solution:

Step 1: Compute dot product of each pair of rows:

  • Each row has magnitude = 1
  • Dot product of different rows = 0

Step 2: Check ATA=I(you can verify by matrix multiplication).

Hence, it is an orthogonal matrix example 3 x 3.


Example 3: Find the inverse of the matrix A=[0−1​10​]

Solution:
Since AA is orthogonal, the inverse is:A−1=AT=[01​−10​]

Inverse of orthogonal matrix is its transpose.


Example 4: Verify whether A=[0−1​10​] is orthogonal.

Solution:
Find ATA :

AT=[01​−10​]andATA=[01​−10​]T[01​−10​]=[10​01​]

Thus, A is orthogonal.

8.0Practice Questions on Orthogonal Matrix

  1. Check whether the following matrix is orthogonal: [cos45∘−sin45∘​sin45∘cos45∘​]
  2. Verify whether A=​100​00−1​010​​is an orthogonal matrix.
  3. Find the inverse of the orthogonal matrix: A=[01​−10​]
  4. Give an example of an orthogonal matrix (3 × 3) with determinant -1.
  5. True or False: Every orthogonal matrix is invertible.

Table of Contents


  • 1.0What is an Orthogonal Matrix?
  • 2.0 Properties of Orthogonal Matrix
  • 3.0Inverse of Orthogonal Matrix
  • 4.0Example of Orthogonal Matrix (2 × 2)
  • 5.0Orthogonal Matrix Example (3 × 3)
  • 6.0Real-World Applications of Orthogonal Matrices
  • 7.0Solved Examples on Orthogonal Matrix
  • 8.0Practice Questions on Orthogonal Matrix

Frequently Asked Questions

A square matrix whose transpose equals its inverse, i.e.,A^T=A^(-1) , is called an orthogonal matrix.

Transpose = Inverse; Determinant is ±1' Orthonormal rows and columns; Product of two orthogonal matrices is orthogonal

Yes. Since A^(-1)=A^(T), all orthogonal matrices are non-singular (invertible).

No. Only square matrices can be orthogonal, since A^(T)A must be an identity matrix.

The transpose of the matrix. That is, A^(-1)=A^T

Join ALLEN!

(Session 2025 - 26)


Choose class
Choose your goal
Preferred Mode
Choose State
  • About
    • About us
    • Blog
    • News
    • MyExam EduBlogs
    • Privacy policy
    • Public notice
    • Careers
    • Dhoni Inspires NEET Aspirants
    • Dhoni Inspires JEE Aspirants
  • Help & Support
    • Refund policy
    • Transfer policy
    • Terms & Conditions
    • Contact us
  • Popular goals
    • NEET Coaching
    • JEE Coaching
    • 6th to 10th
  • Courses
    • Online Courses
    • Distance Learning
    • Online Test Series
    • International Olympiads Online Course
    • NEET Test Series
    • JEE Test Series
    • JEE Main Test Series
  • Centers
    • Kota
    • Bangalore
    • Indore
    • Delhi
    • More centres
  • Exam information
    • JEE Main
    • JEE Advanced
    • NEET UG
    • CBSE
    • NCERT Solutions
    • Olympiad
    • NEET 2025 Results
    • NEET 2025 Answer Key
    • NEET College Predictor

ALLEN Career Institute Pvt. Ltd. © All Rights Reserved.

ISO