(MATLAB) Use Gaussian elimination with backward substitution tosolve the following linear system. Do not do any scaled or partialpivoting (In other words do not reorder the equations). The matrixA and the vector b are in the Matlab code below.
A=[0.2028 0.0153 0.4186 0.8381 0.5280;0.1989 0.7468 0.84650.0204 0.7347;0.6039 0.4452 0.5251 0.6811 0.5039;0.2722 0.93180.2026 0.3794 0.3385;0.1988 0.4660 0.6721 0.8317 0.2143];
display(A);
b=[2; 1; 5; 7; 4];
display(b);
Expert Answer
An answer will be send to you shortly. . . . .