Question: Solve Ax = b with Gaussian elimination
Part 1: Write a function
[flag, x] = EG(A, b)
to answer the linear system of Gaussian elimination without pivoting.
The solution should be the vector x and flag which takes a value of 0 if the algorithm was executed completely and 1 if it wasn't.
Please show all your work and give an explanation of steps