Matrix Minor Finder Calculator

Calculate matrix minors with clear steps and validation. Pick a position, or compute all minors. Export tables to CSV or PDF for sharing instantly.

Supports 2x2 up to 7x7. Larger sizes take longer.
“All minors” computes every Mij.
Uses 1-based indices.

Enter matrix values

Tip: You can paste numbers quickly, then tab across fields.
Row 1
n = 3
Row 2
n = 3
Row 3
n = 3

Example data

Sample 3x3 matrix and one minor computation preview.

Matrix A
2-13
045
12-2
Minor example
Find M12: remove row 1, column 2.
05
1-2
Determinant: (0x-2) - (5x1) = -5.

Formula used

For a square matrix A, the minor of entry aij is:

Mij = det(A(i,j))

A(i,j) is the reduced matrix formed by deleting row i and column j. The determinant is computed by standard expansion rules.

How to use this calculator

  1. Select the matrix size from the dropdown.
  2. Choose “Single minor” or “All minors” mode.
  3. If using “Single minor”, pick the row and column.
  4. Enter your matrix values, then press Submit.
  5. Review the reduced submatrix and the computed determinant.
  6. Use the export buttons to save CSV or PDF.

Practical meaning of a minor

In linear algebra, a minor is the determinant of a reduced matrix formed by deleting one row and one column. Minors power cofactor expansion, adjugate construction, and inverse computation for non‑singular matrices. This calculator automates the reduction and determinant steps, so you can focus on reasoning, sign patterns, and documenting each intermediate matrix cleanly.

Input sizing and performance notes

As matrix size grows, the operation count rises quickly. For an n×n matrix, a single minor requires a determinant of size (n−1)×(n−1). Computing all minors requires n² such determinants, so work scales steeply beyond 5×5. In typical coursework, 2×2 through 4×4 are instant, 5×5 is still comfortable, and 6×6 to 7×7 can feel heavier on older laptops.

How the computation is structured

For a chosen position (i, j), the tool builds A(i,j) by skipping row i and column j, then evaluates det(A(i,j)). The determinant is computed by expansion with alternating signs, mirroring the textbook rule. Results show the original matrix, the reduced submatrix, and the final minor value. When you switch to “all minors,” the output becomes an n×n table of Mij values ready for cofactor or adjugate work.

Quality checks you can apply

Simple checks help validate outputs. If two rows of A(i,j) are identical, the minor must be zero. If a reduced submatrix has a row of zeros, the determinant collapses and the minor is often zero as well. For diagonal or triangular matrices, many minors equal products of remaining diagonal entries, so you can verify several positions quickly. Row swaps flip determinant signs, so pay attention when comparing hand work.

Using minors in real workflows

Minors appear in sensitivity analysis, coordinate transforms, and symbolic manipulation, especially when forming cofactors and adjugates. Engineers use them when solving small systems by hand, and analysts meet them in determinant‑based identities and matrix diagnostics. Exporting CSV or PDF lets you attach computations to lab notebooks, reports, or peer review, including the exact reduced matrices used. That traceability matters when results must be reproduced or audited later. For teaching, compare minors across positions to see structure, then use the minor matrix to build cofactors systematically without extra algebra.

FAQs

What is a matrix minor?

A matrix minor Mij is the determinant of the submatrix obtained by deleting row i and column j from the original square matrix.

How is a minor different from a cofactor?

A cofactor Cij equals (−1)i+j times the minor Mij. Cofactors include an alternating sign pattern; minors are unsigned determinants.

What sizes does the calculator support?

It supports square matrices from 2x2 up to 7x7. Larger sizes are possible in theory, but computation time grows quickly for all-minors mode.

Why do some minors become zero?

If the reduced submatrix has dependent rows or a full zero row/column, its determinant is zero. This commonly happens with repeated rows or sparse matrices.

Can I use decimals or scientific notation?

Yes. Enter integers, decimals, or scientific notation such as 1.2e-3. Non-numeric entries are flagged and treated as zero for safety.

How do the exports help?

CSV is convenient for spreadsheets and further analysis. PDF is useful for sharing fixed reports, including the input matrix and the computed minor tables.

Related Calculators

Row Reduction RREF CalculatorDiagonalization Checker CalculatorLU Decomposition Steps CalculatorQR Decomposition Steps Calculatormatrix calculator with variablesGauss-Jordan inverse calculatorPolynomial linear independence calculatorLinear independence of matrix calculatorComplex matrix inverse calculatorQR decomposition least squares

Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.