How to Use
Set up the system:
- [A|b]: Augmented matrix
- Steps: Row operations shown
- Output: REF + solution
Partial Pivoting
Swap rows to put largest element in pivot position. Prevents division by small numbers (numerical instability). Always used in practice.
Complexity
O(n³/3) multiplications for elimination. O(n²/2) for back-substitution. Total: O(n³/3). LU decomposition is equivalent but stores the work for reuse.
Step-by-Step Instructions
- 1Select a system.
- 2View row operations.
- 3See echelon form.
- 4Back-substitute.
- 5Get solution.