% Consider the following system of equations:
% -2a +5b + c + 3d + 4e - f = 0
% 2a - b - 5c - 2d + 6e + 4f = 1
% -a + 6b - 4c - 5d + 3e - f = -6
% 4a + 3b - 6c - 5d - 2e - 2f = 10
% -3a + 6b + 4c + 2d - 6e + 4f = -6
% 2a + 4b + 4c + 4d + 5e - 4f = -2
% a)
% Define a symbolic variable for each of the equation and usesymbolic
% capability to solve for each unknown. Convert your results todoubles.
% Answer
% b)
% Compare the amount of time it takes to solve the system ofequations
% using left division and symbolic math by using the tic and tocfunction.
% Answer