2. (20 points) Let 1 1 A = +(47)-(6) 1 0 1 b = -3 -3 Write a program that (a) evaluates A-¹ by using the the module inv
Posted: Mon Jun 06, 2022 2:28 pm
2. (20 points) Let 1 1 A = +(47)-(6) 1 0 1 b = -3 -3 Write a program that (a) evaluates A-¹ by using the the module inv in numpy's linalg library, (b) and finds the solution of the the equations (A+ A−¹) x numpy's linalg library. Print the solution using the format print("x = \n",x). x = b using the the module solve in