Create a script to Solve system Ax b with A 31 8 11 8 15 6
     Create a script to: Solve system Ax = b with A = [31 -8 11  -8 15 -6  11 -6 25], b = [8 -4 13]. Print on screen the error Ax - b. Find a column of the matrix: [10 -8 -7 3  -7 4 11 -1  1 -6 -5 10  4 -10 -1 12  6 -3 -8 12] that can be deleted and yet have the remaining columns still span R^4.![Create a script to: Solve system Ax = b with A = [31 -8 11 -8 15 -6 11 -6 25], b = [8 -4 13]. Print on screen the error Ax - b. Find a column of the matrix: [1  Create a script to: Solve system Ax = b with A = [31 -8 11 -8 15 -6 11 -6 25], b = [8 -4 13]. Print on screen the error Ax - b. Find a column of the matrix: [1](/WebImages/5/create-a-script-to-solve-system-ax-b-with-a-31-8-11-8-15-6-984415-1761505610-0.webp) 
  
  Solution
(1)
On work space
A=[31 -8 11;-8 15 -6;11 -6 25];
b=[8;-4;13];
X=A\\b
On command windo
X =
    0.0804
    -0.0331
     0.4767
![Create a script to: Solve system Ax = b with A = [31 -8 11 -8 15 -6 11 -6 25], b = [8 -4 13]. Print on screen the error Ax - b. Find a column of the matrix: [1  Create a script to: Solve system Ax = b with A = [31 -8 11 -8 15 -6 11 -6 25], b = [8 -4 13]. Print on screen the error Ax - b. Find a column of the matrix: [1](/WebImages/5/create-a-script-to-solve-system-ax-b-with-a-31-8-11-8-15-6-984415-1761505610-0.webp)
