Solve 2x + y = 5, x + 3y = 10
Solve a 2×2 linear system with Gauss-Jordan elimination.
Solution
- System A is 2×2, b has 2 entries.
- Matrix A [[2, 1], [1, 3]]
- Vector b (5, 10)
- Augmented [A | b] [[2, 1, 5], [1, 3, 10]]
- Row operations R1 → (1/2)·R1; R2 → R2 − (1)·R1; R2 → (1/2.5)·R2; R1 → R1 − (0.5)·R2
- RREF of [A | b] [[1, 0, 1], [0, 1, 3]]
- Conclusion Unique solution — pivot in every variable column.
- Solution x1 = 1, x2 = 3
Try a similar problem yourself
Use the Solve a Linear System (Ax = b) to solve a similar problem with your own values.
Open the solver