A = rand(10,10); b = rand(10,1); x = inv(A)*b; A*x-b max(abs(A*x-b)) x = A\b; A*x-b max(abs(A*x-b)) display('what is this back-slash command?') display('hit any key to find out more') pause help slash