Involutory Matrix: Definition, Formula & Examples

#Algebra
TL;DR
An involutory matrix is a square matrix that becomes the identity matrix when multiplied by itself, so $A^2 = I$. That single condition means the matrix is its own inverse ($A^{-1} = A$), its determinant is always $+1$ or $-1$, and its eigenvalues can only be $+1$ or $-1$. The identity matrix and every reflection matrix are involutory.
BT
Bhanzu TeamLast updated on September 6, 202612 min read

What Is An Involutory Matrix?

An involutory matrix is a square matrix $A$ whose square is the identity matrix, meaning $A^2 = I$. Because $A$ multiplied by itself returns the identity, $A$ acts as its own inverse: $A^{-1} = A$. No other matrix is needed to undo it.

The name comes from involution, a word for any operation that reverses itself when applied twice. Reflecting a shape, flipping a photograph, or swapping two rows are all involutions, and each one is described by an involutory matrix.

Two conditions have to hold before a matrix can be involutory:

  • It must be square. Only a square matrix of order $n \times n$ can be multiplied by itself and compared with the identity.

  • The product $A^2$ must equal $I$ exactly. Every diagonal entry of $A^2$ must be $1$ and every off-diagonal entry must be $0$.

Throughout this article we use two running matrices to test the idea:

$$A = \begin{bmatrix} 4 & 15 \ -1 & -4 \end{bmatrix}, \qquad R = \begin{bmatrix} 1 & 0 \ 0 & -1 \end{bmatrix}$$

Both are order $2 \times 2$. As you will see, $A$ is a less obvious involutory matrix, while $R$ is the reflection of a point across the horizontal axis.

How Do You Check If A Matrix Is Involutory?

To check whether a matrix is involutory, square it and compare the result with the identity matrix. If $A^2 = I$, the matrix is involutory; if $A^2$ is anything else, it is not.

The method is three short steps:

  1. Confirm the matrix is square. If it is not, stop, it cannot be involutory.

  2. Compute the product $A \times A$ using row-by-column multiplication.

  3. Compare $A^2$ with the identity matrix of the same order.

Example 1: Test the reflection matrix $R = \begin{bmatrix} 1 & 0 \ 0 & -1 \end{bmatrix}$.

Square it by multiplying $R$ by itself:

$$R^2 = \begin{bmatrix} 1 & 0 \ 0 & -1 \end{bmatrix}\begin{bmatrix} 1 & 0 \ 0 & -1 \end{bmatrix} = \begin{bmatrix} (1)(1)+(0)(0) & (1)(0)+(0)(-1) \ (0)(1)+(-1)(0) & (0)(0)+(-1)(-1) \end{bmatrix} = \begin{bmatrix} 1 & 0 \ 0 & 1 \end{bmatrix}$$

Since $R^2 = I$, the reflection matrix $R$ is involutory.

Final answer: $R$ is involutory, because reflecting across the x-axis twice returns every point to its original place.

What Does A 2×2 Involutory Matrix Look Like?

Not every involutory matrix is as tidy as a reflection. Consider the running matrix $A = \begin{bmatrix} 4 & 15 \ -1 & -4 \end{bmatrix}$, which has no zeros at all.

Example 2: Verify that $A = \begin{bmatrix} 4 & 15 \ -1 & -4 \end{bmatrix}$ is involutory.

Multiply $A$ by itself, one entry at a time:

$$A^2 = \begin{bmatrix} (4)(4)+(15)(-1) & (4)(15)+(15)(-4) \ (-1)(4)+(-4)(-1) & (-1)(15)+(-4)(-4) \end{bmatrix}$$

Work through each entry:

$$A^2 = \begin{bmatrix} 16-15 & 60-60 \ -4+4 & -15+16 \end{bmatrix} = \begin{bmatrix} 1 & 0 \ 0 & 1 \end{bmatrix}$$

$A^2 = I$, so $A$ is involutory even though it looks nothing like the identity.

There is a general pattern behind this. Any $2 \times 2$ matrix of the form

$$\begin{bmatrix} a & b \ c & -a \end{bmatrix}, \qquad \text{with } a^2 + bc = 1,$$

is involutory. For our matrix, $a = 4$, $b = 15$, $c = -1$, and $a^2 + bc = 16 + (15)(-1) = 16 - 15 = 1$, so the condition holds. This template is a quick way to build your own involutory examples.

What Are The Properties Of An Involutory Matrix?

Once a matrix satisfies $A^2 = I$, several facts follow automatically. These are the properties examiners test most often.

  • It is its own inverse. From $A^2 = I$ we get $A \cdot A = I$, which is the definition of the inverse of a matrix. So $A^{-1} = A$, and no separate inverse ever needs to be computed.

  • Its determinant is $\pm 1$. Taking determinants of $A^2 = I$ gives $\det(A)^2 = 1$, so the determinant is either $+1$ or $-1$. It is never $0$, which also confirms every involutory matrix is invertible.

  • Its eigenvalues are $\pm 1$. Every eigenvalue $\lambda$ satisfies $\lambda^2 = 1$, so the only possible values are $+1$ and $-1$.

  • Its powers cycle. Because $A^2 = I$, higher powers repeat: $A^n = I$ when $n$ is even, and $A^n = A$ when $n$ is odd.

  • The transpose is also involutory. If $A^2 = I$, then $(A^{T})^2 = (A^2)^{T} = I$, so the transpose $A^{T}$ is involutory too.

A short note on the determinant, since it is a frequent trap. The determinant of an involutory matrix can be negative. Our reflection matrix $R$ has $\det(R) = (1)(-1) - (0)(0) = -1$, and it is still perfectly involutory. Only the identity itself sits at $\det = +1$ among the simplest examples.

What Are Some Examples Of Involutory Matrices?

Involutory matrices appear more often than their name suggests. A few worth knowing:

  • The identity matrix. Since $I \times I = I$, the identity is trivially its own inverse. It is the smallest involutory matrix of every order.

  • Reflection matrices. Reflecting across the x-axis, the y-axis, or the line $y = x$ each gives an involutory matrix, because reflecting twice returns the original. The matrix $\begin{bmatrix} 0 & 1 \ 1 & 0 \end{bmatrix}$ reflects across $y = x$ and swaps a point's coordinates.

  • Row-swap (permutation) matrices. A matrix that interchanges two rows undoes itself when applied twice, so it is involutory. That single row swap is exactly the matrix $\begin{bmatrix} 0 & 1 \ 1 & 0 \end{bmatrix}$ again.

  • Sign-change matrices. A diagonal matrix whose entries are each $+1$ or $-1$, such as $\begin{bmatrix} -1 & 0 \ 0 & 1 \end{bmatrix}$, squares to the identity.

Notice a theme. Every example undoes itself, which is what "its own inverse" means in plain language.

How Is An Involutory Matrix Different From Idempotent And Nilpotent Matrices?

Involutory matrices are one of three special families defined by what happens when you raise the matrix to a power. Students mix them up constantly, because the definitions look almost identical on the page and mean completely different things.

Table: Three matrix families defined by a power condition.

Family

Defining condition

What repeating the matrix does

Determinant

Involutory

$A^2 = I$

Undoes itself; squares back to the identity

$+1$ or $-1$

Idempotent

$A^2 = A$

Stays the same; repeating changes nothing

$0$ or $1$

Nilpotent

$A^{k} = O$ for some $k$

Collapses to the zero matrix after enough powers

$0$

The single letter on the right of the equation is the whole story. Involutory squares to the identity $I$, idempotent squares to itself $A$, and nilpotent eventually reaches the zero matrix $O$. An idempotent matrix acts like a projection that, once applied, never changes anything further, while a nilpotent matrix models something that fades to nothing under repetition.

These three families sit inside the wider study of matrices and determinants. A matrix that is both involutory and idempotent must be the identity, since $A^2 = I$ and $A^2 = A$ force $A = I$.

There is a clean algebraic way to see why an involutory matrix behaves the way it does. Start from the defining condition and factor it like a difference of squares:

$$A^2 = I ;\Longrightarrow; A^2 - I = O ;\Longrightarrow; (A - I)(A + I) = O$$

The step works because $A$ commutes with itself and with $I$, so the ordinary factorisation of $x^2 - 1$ carries over to matrices. The equation $(A - I)(A + I) = O$ is the reason the eigenvalues can only be $+1$ or $-1$: each eigenvalue must make one of the two factors vanish, so $\lambda = 1$ or $\lambda = -1$.

This factorisation is also the fastest route to the idempotent connection. If $A$ is involutory, then $P = \tfrac{1}{2}(A + I)$ satisfies $P^2 = P$, which makes $P$ idempotent. Every involutory matrix hides an idempotent one inside it, and this formula is the bridge between the two families.

Why Do Involutory Matrices Matter?

An involutory matrix is the algebra of an action that is its own undo button. That idea is more useful than it first looks.

  • Reversible transformations. When a transformation must be exactly reversible by repeating it, a reflection, a swap, a coordinate flip, the matrix that describes it has to satisfy $A^2 = I$. The property is not a curiosity; it is a design requirement.

  • Free inverses. Inverting a matrix is usually the slow, error-prone part of a calculation. If a matrix is known to be involutory, its inverse is already sitting in front of you, because $A^{-1} = A$. There is nothing to compute.

  • A clean spectrum. Because the eigenvalues are pinned to $+1$ and $-1$, involutory matrices split any space into a "kept" part and a "flipped" part. That decomposition is what makes them so common in geometry and physics.

The deep reason these matrices recur is that doing something twice can return you to the start, one of the most basic patterns in mathematics and in the physical world. Involutory matrices are simply that pattern written in the language of matrices and determinants.

Who Discovered Involutory Matrices?

The word involution is far older than matrices. It described self-reversing correspondences in projective geometry in the 1600s, long before anyone wrote a matrix. The matrix version arrived only once matrices themselves became an algebra.

One more name shaped the surrounding theory:

  • James Joseph Sylvester (1814–1897, England) coined the word "matrix" in 1850 and, with Cayley, built the early theory of eigenvalues that explains why an involutory matrix can only have $+1$ and $-1$ as its eigenvalues.

Where Are Involutory Matrices Used In The Real World?

The "undo yourself" property makes involutory matrices quietly useful across several fields.

  • Computer graphics: reflecting a character or image across an axis or plane is an involutory transformation, so applying the same reflection twice restores the original frame, a handy guarantee when building mirror effects.

  • Cryptography: some ciphers are built so that the same operation both encrypts and decrypts. When that operation is a matrix, it must be involutory, so one key matrix runs the message both ways.

  • Quantum computing: several fundamental quantum gates are represented by involutory matrices (the Pauli matrices), where applying the gate twice returns a qubit to its starting state.

  • Signal and image processing: transforms that need to be exactly self-inverting, so that analysis and reconstruction use the same step, are modelled by involutory matrices.

One property, "repeat it to undo it," connects a mirror effect in a game, a two-way cipher, and a quantum gate. Mathematics keeps reusing the same idea across fields that never talk to each other.

What Are The Most Common Involutory Matrix Mistakes?

These three errors account for most lost marks on involutory matrices, and each one comes from confusing the definition with a close neighbour.

Mixing up involutory ($A^2 = I$) with idempotent ($A^2 = A$).

Where it slips in:

A student remembers "square it and something special happens" but not which special result, and writes $A^2 = A$ when the question is about an involutory matrix.

Don't do this:

Do not treat the two conditions as interchangeable. They describe different families with different determinants.

The correct way:

Anchor the right-hand side. Involutory squares to the identity $I$; idempotent squares to itself $A$. If $A^2 = I$, it is involutory.

Assuming the determinant must be $+1$.

Where it slips in:

A student sees "its own inverse" and concludes the determinant has to be $1$, then rejects a valid involutory matrix whose determinant is $-1$.

Don't do this:

Do not force $\det(A) = +1$. Squaring $A^2 = I$ only gives $\det(A)^2 = 1$, which allows both signs.

The correct way:

Accept that $\det(A) = +1$ or $\det(A) = -1$. The reflection matrix $R = \begin{bmatrix} 1 & 0 \ 0 & -1 \end{bmatrix}$ has $\det(R) = -1$ and is still involutory.

Thinking "its own inverse" means "equals the identity."

Where it slips in:

A student reads $A^{-1} = A$ and jumps to $A = I$, assuming only the identity can be its own inverse.

Don't do this:

Do not collapse every involutory matrix to the identity. Many non-identity matrices satisfy $A^2 = I$.

The correct way:

Test with the definition. $\begin{bmatrix} 4 & 15 \ -1 & -4 \end{bmatrix}$ is its own inverse yet is clearly not the identity, because its square, not the matrix itself, equals $I$.

Practice Problems On Involutory Matrices

Answers follow each problem. Work them before checking.

  1. Verify that $\begin{bmatrix} 0 & 1 \ 1 & 0 \end{bmatrix}$ is involutory.
    (Answer: its square is $\begin{bmatrix} 1 & 0 \ 0 & 1 \end{bmatrix} = I$, so yes.)

  2. Is $\begin{bmatrix} 1 & 1 \ 0 & 1 \end{bmatrix}$ involutory?
    (Answer: its square is $\begin{bmatrix} 1 & 2 \ 0 & 1 \end{bmatrix} \neq I$, so no.)

  3. Find $\det \begin{bmatrix} -1 & 0 \ 0 & 1 \end{bmatrix}$ and state whether the matrix is involutory.
    (Answer: $\det = -1$; squaring gives $I$, so it is involutory with determinant $-1$.)

  4. For which values of $x$ is $\begin{bmatrix} x & 0 \ 0 & -1 \end{bmatrix}$ involutory?
    (Answer: the square is $\begin{bmatrix} x^2 & 0 \ 0 & 1 \end{bmatrix}$, which equals $I$ when $x^2 = 1$, so $x = \pm 1$.)

  5. Verify that $A = \begin{bmatrix} 5 & -4 \ 6 & -5 \end{bmatrix}$ is involutory.
    (Answer: $A^2 = \begin{bmatrix} 1 & 0 \ 0 & 1 \end{bmatrix}$; also $a^2 + bc = 25 - 24 = 1$, so yes.)

  6. Using $A$ from Problem 5, write $A^{-1}$.
    (Answer: since $A$ is involutory, $A^{-1} = A = \begin{bmatrix} 5 & -4 \ 6 & -5 \end{bmatrix}$.)

Where Should You Go Next After Involutory Matrices?

Involutory matrices sit at the crossroads of inverses, determinants, and eigenvalues, and each of those opens a natural next door.

  1. Inverse of a matrix. See the general method for finding an inverse, then appreciate how much work an involutory matrix saves by being its own.

  2. Eigenvalues. Understand why the eigenvalues of an involutory matrix are locked to $+1$ and $-1$, and how eigenvalues classify matrices in general.

  3. Determinant of a matrix. Learn how the determinant decides invertibility, and why an involutory matrix can never have a determinant of zero.

If your child is building these foundations, a live Bhanzu trainer teaches matrix families starting from the "why" behind each condition in the Bhanzu algebra program.

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What is an involutory matrix in simple terms?
It is a square matrix that undoes itself. Multiply it by itself and you get the identity matrix back, which is the same as saying the matrix is its own inverse.
Is the identity matrix an involutory matrix?
Yes. Since $I \times I = I$, the identity matrix satisfies $A^2 = I$ and is the simplest involutory matrix of any order.
Can the determinant of an involutory matrix be $2$?
No. Squaring $A^2 = I$ forces $\det(A)^2 = 1$, so the determinant can only be $+1$ or $-1$, never $2$ or any other value.
What is the difference between an involutory and an idempotent matrix?
An involutory matrix satisfies $A^2 = I$ (it squares to the identity), while an idempotent matrix satisfies $A^2 = A$ (it squares to itself). The only matrix that is both is the identity.
Are all involutory matrices symmetric?
No. Reflection matrices happen to be symmetric, but a matrix such as $\begin{bmatrix} 4 & 15 \ -1 & -4 \end{bmatrix}$ is involutory and not symmetric. Symmetry is a separate property.
How do you find the inverse of an involutory matrix?
You do not have to compute anything. An involutory matrix is its own inverse, so $A^{-1} = A$ by definition.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →