Differences between revisions 3 and 4
Revision 3 as of 2021-09-06 19:34:57
Size: 935
Comment:
Revision 4 as of 2021-09-06 19:35:47
Size: 873
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
## page was renamed from LinearAlgebra/3Equations2Unknowns
Line 3: Line 2:

3 Equations, 3 Unknowns

Introduction

Consider the below system of equations:

2x - y = 0
-x + 2y - z = -1
-3y + 4z = 4

This can be envisioned in three ways.

Row Picture

These equations can be plotted as 3D planes. The space of intersection gives all solutions to the system. But this is very difficult to visualize and solve.

Column Picture

 ┌  ┐    ┌  ┐    ┌  ┐   ┌  ┐
 │ 2│    │-1│    │ 0│   │ 0│
x│-1│ + y│ 2│ + z│-1│ = │-1│
 │ 0│    │-3│    │ 4│   │ 4│
 └  ┘    └  ┘    └  ┘   └  ┘ 

These columns can be plotted as 3D vectors. Through some combination, the point (0, -1, 4) can be reached. But the solution is trivially x=0, y=0, z=1; note that the target is equivalent to column 3.


CategoryRicottone

LinearAlgebra/3Equations3Unknowns (last edited 2021-09-06 19:35:54 by DominicRicottone)