Determinant of a 2x2 Matrix

A single number computed from a 2x2 matrix that tells whether the matrix is invertible and helps solve systems of linear equations.

det(abcd)=adbc\det\begin{pmatrix} a & b \\ c & d \end{pmatrix} = ad - bc

Solve a problem with Determinant of a 2x2 Matrix

Type the problem. The solver will use Determinant of a 2x2 Matrix where Determinant of a 2x2 Matrix is the right tool, and tell you when it is not.

Drag one in or paste from the clipboard. JPEG, PNG or WebP. You get the transcription to check before anything is solved.

How to get a better answer
  • Paste the whole problem, including the instruction word — "simplify", "solve for x" and "factor" lead to three different answers.
  • Say what you have already tried. "I got x = 4 and the book says 2" turns a solution into a diagnosis.
  • Set the level in the settings button. A calculus shortcut is not a better answer if you have not met derivatives yet.
  • For a photo, get the whole problem in frame and hold the page flat — you get the transcription to fix before anything is solved.

What each symbol means

What Determinant of a 2x2 Matrix takes
aa
bb
cc
dd
Determinant of a 2x2 Matrix
SymbolMeaning
aaThe top-left entry of a 2x2 matrix; this is the first element in the adbcad - bc formula.
bbThe top-right entry of a 2x2 matrix; this multiplies with c in the subtracted term.
ccThe bottom-left entry of a 2x2 matrix; this multiplies with b in the subtracted term.
ddThe bottom-right entry of a 2x2 matrix; this is the second element in the adad product.

When to use it

When you need to determine if a matrix is invertible or solve a system of two linear equations using matrix methods.

Level

Usually taught in: Algebra II · Appears on: ACT

Worked examples

1. Simple 2x2 Determinant

Problem

Find the determinant of (2314)\begin{pmatrix} 2 & 3 \\ 1 & 4 \end{pmatrix}.
  1. det(2314)=2431\det\begin{pmatrix} 2 & 3 \\ 1 & 4 \end{pmatrix} = 2 \cdot 4 - 3 \cdot 1

    Apply the determinant formula: multiply the main diagonal elements (top-left times bottom-right) and the off-diagonal elements (top-right times bottom-left), then subtract the second product from the first.

  2. =83= 8 - 3

    Compute the products: 2×4=82 \times 4 = 8 and 3×1=33 \times 1 = 3.

  3. =5= 5

    Subtract to get the final determinant value.

Answer: det(2314)=5\det\begin{pmatrix} 2 & 3 \\ 1 & 4 \end{pmatrix} = 5

This determinant is positive, which means the matrix is invertible (non-singular) and the corresponding system of linear equations has a unique solution.

2. Determinant with Negative Numbers

Problem

Find the determinant of (2345)\begin{pmatrix} -2 & 3 \\ 4 & -5 \end{pmatrix}.
  1. det(2345)=(2)(5)34\det\begin{pmatrix} -2 & 3 \\ 4 & -5 \end{pmatrix} = (-2) \cdot (-5) - 3 \cdot 4

    Apply the determinant formula, being careful to include the negative signs in each multiplication.

  2. =1012= 10 - 12

    Compute the products: (2)×(5)=10(-2) \times (-5) = 10 (negative times negative is positive) and 3×4=123 \times 4 = 12.

  3. =2= -2

    Subtract to get the final determinant, which is negative.

Answer: det(2345)=2\det\begin{pmatrix} -2 & 3 \\ 4 & -5 \end{pmatrix} = -2

A negative determinant tells you that this linear transformation reverses orientation (like a reflection), but the matrix is still invertible since the determinant is non-zero.

3. Phone Plan Comparison

Problem

A wireless company offers two pricing plans. Plan A charges $20 monthly plus $1.50 per gigabyte. Plan B charges $15 monthly plus $2 per gigabyte. Set up the plan matrix (201.5152)\begin{pmatrix} 20 & 1.5 \\ 15 & 2 \end{pmatrix} where rows represent the plans and columns represent monthly fee and per-GB cost, then find its determinant.
  1. det(201.5152)=2021.515\det\begin{pmatrix} 20 & 1.5 \\ 15 & 2 \end{pmatrix} = 20 \cdot 2 - 1.5 \cdot 15

    Apply the determinant formula with the monthly fees forming the main diagonal (2020 and 22) and the per-GB charges forming the off-diagonal (1.51.5 and 1515).

  2. =4022.5= 40 - 22.5

    Compute the products: 20×2=4020 \times 2 = 40 and 1.5×15=22.51.5 \times 15 = 22.5.

  3. =17.5= 17.5

    Subtract to find the determinant, which is non-zero, indicating these plans are independent.

Answer: det(201.5152)=17.5\det\begin{pmatrix} 20 & 1.5 \\ 15 & 2 \end{pmatrix} = 17.5

Since the determinant is non-zero, the two pricing structures represent independent plans; this non-zero determinant is important when using matrix methods to solve for break-even points or analyze multiple service options.

Common mistakes

Where Determinant of a 2x2 Matrix usually goes wrong
Answer came out wrong
Writing ad+bcad + bc instead of adbcad - bc in the formula.
Remember the rule: determinant equals the product of the main diagonal minus the product of the off-diagonal, written as adbcad - bc not ad+bcad + bc.
For matrix (2345)\begin{pmatrix} -2 & 3 \\ 4 & -5 \end{pmatrix}, computing 2×53×4=1012=22 \times 5 - 3 \times 4 = 10 - 12 = -2 by dropping the negative signs.
Always write (2)(5)34=1012=2(-2) \cdot (-5) - 3 \cdot 4 = 10 - 12 = -2; include negative signs in parentheses to prevent losing them during calculation.
Computing bcadbc - ad instead of adbcad - bc (reversing the order of subtraction).
Label the matrix positions clearly: main diagonal elements (aa and dd) form the first product, off-diagonal elements (bb and cc) form the second; always compute adad first, then subtract bcbc.
The mistakeWhy it is wrongThe fix
Writing ad+bcad + bc instead of adbcad - bc in the formula.Students sometimes misremember the formula or overlook the minus sign, treating it like a sum of products instead of a difference.Remember the rule: determinant equals the product of the main diagonal minus the product of the off-diagonal, written as adbcad - bc not ad+bcad + bc.
For matrix (2345)\begin{pmatrix} -2 & 3 \\ 4 & -5 \end{pmatrix}, computing 2×53×4=1012=22 \times 5 - 3 \times 4 = 10 - 12 = -2 by dropping the negative signs.When matrix elements are negative, students sometimes ignore the signs to make the calculation feel easier and forget to track them through the work.Always write (2)(5)34=1012=2(-2) \cdot (-5) - 3 \cdot 4 = 10 - 12 = -2; include negative signs in parentheses to prevent losing them during calculation.
Computing bcadbc - ad instead of adbcad - bc (reversing the order of subtraction).Confusion about which product comes first and which is subtracted; reading the matrix left-to-right instead of by diagonals can cause this error.Label the matrix positions clearly: main diagonal elements (aa and dd) form the first product, off-diagonal elements (bb and cc) form the second; always compute adad first, then subtract bcbc.

Tips and when to use something else

  • If the determinant is zero, the matrix is singular (not invertible), meaning a system of linear equations has either no solution or infinitely many solutions rather than a unique solution.
  • For larger matrices (3x3 or bigger), use Laplace expansion or the cofactor method instead of trying to apply the 2x2 formula.
  • In Cramer's Rule, the determinant appears in the denominator when solving systems of linear equations, so calculating it correctly is crucial for finding accurate solutions.
  • A zero determinant tells you immediately that a matrix has no inverse, saving time when you need to invert matrices or determine whether unique solutions exist.

Frequently asked questions

What does it mean if the determinant is zero?
A zero determinant means the matrix is singular and not invertible. For a system of linear equations, this indicates either infinitely many solutions or no solution exists, rather than a unique solution.
Why is the determinant formula for 2x2 matrices specifically adbcad - bc?
This formula comes from the definition of determinant as the signed area of the parallelogram formed by the matrix's column vectors. For 2x2 matrices, the product-and-subtract method efficiently captures that geometric relationship.
Can a determinant be negative?
Yes, determinants can be any real number—positive, negative, or zero. A negative determinant indicates the matrix's transformation reverses orientation (like a reflection), while a positive one preserves it.
How does a 2x2 matrix determinant relate to larger matrices?
Determinants of larger matrices (3x3, 4x4, etc.) are calculated using the 2x2 determinant as a building block through methods like Laplace expansion or cofactor expansion.

Need a different method?

The full solver is not scoped to one formula — type any problem and it will pick the method.

Open the math solver

Reviewed 2026-09-18