(Khan Academy) A matrix to represent a linear system, with each row representing one linear equation.

Solved by row operations

Sage

#create an augmented matrix
M = matrix(QQ, [[1,1,1]], [1,2,3], [1,3,4])
v = vector(QQ, [3, 0, -2])
A = M.augment(v, subdivide = True)