HomeCalculatorsMathAlgebra & EquationsLU Factorization Calculator
Math calculator

LU Factorization Calculator

Doolittle LU factorization with partial pivoting for a small real matrix. Same engine as Linear System. Not a CAS. Runs locally.

Instant result
Result

Enter values to calculate.

Inputs
Mode
Formula
Trust summary Engine tested · Specification checked · 18/18 tests · Production surface contract 3/3 · v1.2.0
Input interpretation
Enter values to calculate.
Result
Model
PA = LU for order 2–3 (engine up to 4).
Scope
Real matrices
Verification
Engine tested · 18/18 tests · Production surface contract 3/3 · Specification checked · v1.2.0
Named expert review
Optional · Not performed
Specification basis
  • ISO 80000-2:2019 Quantities and units — Mathematics
Specification basis
Evidence
7 golden · 2 boundary · 9 property · Production surface contract 3/3 · Artifact integrity PASS
Production
Embedded snapshot: STALE · Last attested schema matched 1.2.0 snapshot / local build · Semantic contract ✓ · Last attestation PASS · current evidence changed · re-attestation required · Public/cache ✓ · Origin ✓ · Live production status STALE (1 capability; 163 remain CURRENT) @ 2026-09-19T00:00:17.039Z
Semantic contract
PASS

Formulas

Core equations used by this calculator.

FactorizationPA = LU
Pivotingpartial row pivots on |uₖₖ|
iDoolittle LU with partial pivoting. Not QR. Not SVD. Order ≤ 4. A singular matrix still returns L and U with a singular_u warning. Float64. Pivot cutoff 10⁻¹⁵.

How to use

1

Enter a square matrix

2×2 or 3×3. Larger composition lives at /workspace/matrix.

2

Read L, U, and P

reconstruction_residual is ‖PA − LU‖_F. Ill-conditioned matrices warn.

Example calculations

Common configurations with formula and result.

ϟ

[[2,1],[1,1]]

Nonsingular

PA = LU
residual ~ 0
ϟ

Singular

[[1,2],[2,4]]

singular U
warning

LU Factorization calculator specification

Version 1.2.0 · Engine tested

Calculation status

Review policy · Evidence

Definition
PA = LU factors a square matrix into a permutation, a unit lower-triangular L, and an upper-triangular U. This page is a discovery surface on the linear-algebra engine (mode=lu).
What it calculates
PA = LU for order 2–3 (engine up to 4).
Inputs
  • order
  • a11…
Outputs
  • L
  • U
  • P
  • reconstruction_residual
  • condition_number
  • singular
Formula
PA = LU
Assumptions
  • Real matrices
  • Order ≤ 4
  • Float64
  • Not a CAS
Units
  • dimensionless
Boundary conditions
  • singular A → singular_u warning, not SINGULAR_MATRIX
  • unknown mode (including svd) → INVALID_MODE
Example
[[2,1],[1,1]] → PA=LU
Validation cases

2 published on this page · 18/18 tests · Production surface contract 3/3 · View evidence

  • order=2 a11=2 a12=1 a21=1 a22=1 → reconstruction_residual≈0
  • order=2 a11=1 a12=2 a21=2 a22=4 → singular=true
Specification basis
  • ISO 80000-2:2019 Quantities and units — Mathematics
Calculation version
1.2.0
}

Frequently asked questions

Key distinctions behind the calculation.

Is this a second LU solver?

No. It is mode=lu on math.linear_algebra, the same engine as /calc/math/linear-system and /workspace/matrix.

What happens when A is singular?

L and U are still returned. singular is true and warning singular_u is set. Inverse remains SINGULAR_MATRIX.