Differences between revisions 1 and 2
Revision 1 as of 2021-09-06 19:04:38
Size: 745
Comment:
Revision 2 as of 2021-09-06 19:22:52
Size: 932
Comment:
Deletions are marked like this. Additions are marked like this.
Line 20: Line 20:
{{attachment:row-picture.png}}
Line 33: Line 35:
Column 1 is represented as a vector to (2,-1); column 2 as (-1,2). Any combination of these vectors that leads to (0,3) is a solution to the system. Column 1 is represented as a vector to (2,-1); column 2 as (-1,2).

{{attachment:column-picture.png}}

Any combination of these vectors that leads to (0,3) is a solution to the system. For this system, that solution is 1 of column 1 and 2 of column 2.

{{attachment:column-picture-solution.png}}

2 Equations, 2 Unknowns

Introduction

Consider the below system of equations:

2x - y = 0
-x + 2y = 3

This can be envisioned in three ways.

Row Picture

The equations can be plotted together, and all intersections of the lines are solutions to the system.

row-picture.png

Column Picture

The system is equivalent to the following linear combination of columns.

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

Column 1 is represented as a vector to (2,-1); column 2 as (-1,2).

column-picture.png

Any combination of these vectors that leads to (0,3) is a solution to the system. For this system, that solution is 1 of column 1 and 2 of column 2.

column-picture-solution.png


CategoryRicottone

LinearAlgebra/2Equations2Unknowns (last edited 2025-03-24 17:32:48 by DominicRicottone)