ΘρϵηΠατπ

Homogeneous System of Equations
A system of equations is called homoegenous if each of the contstant terms is equal to 0. A homogeneous system therefore has the form: a11x1+a12x2++a1nxn=0a12x1+a22x2++a2nxn=0am1x1+am2x2++amnxn=0 where aij are coefficients and xj are variables
Encoding a system of Equations into Matrix Vector Multiplication
The solution set of the following system of equations is the same as the solution set for Ax=b
TODO
Solution space of a homogeneous system of equations
Given a homogenous system of equations embedded in Ax=0, where A is an m×n matrix. We Define the solution space to be S={xn:Ax=0}
The solution space of a homogeneous system of equations forms a subspace
of n
TODO
Basis for a Solution Space
Find a basis for the solution space of the following matrix encoded system of equations [242036305881]v=0

The matrix can be row reduced to the following form:

[10410132120000]

Which represents the following system of equations

1x+0y+4z+1w=00x+1y+32z12w=00x+0y+0z+0w=0

Since z and w are free variables, we let s,t and set z=s and w=t , now using back substitution, we can deduce the following

0x+1y+32z12t=0y=12t32s1x+0y+4z+1w=0x=4st

Therefore the solution set is given by

{[4st32s+12tst]:s,t}={s[43210]+t[11201]:s,t}

It can be confirmed that the two vectors v1=[11201] and v2=[43210] are linearly independent due to the non-matching zero in the third component, thus the solution space can be written as span({v1,v2}), therefore a possible basis for the solution set is (v1,v2).