Question: How to fix this code. I keep getting assertion error. 1 . 2 [ 2 pt ] Write a function called det _ and _

How to fix this code. I keep getting assertion error.
1.2[2 pt] Write a function called det_and_inv that takes as an input a square matrix (a numpy array) and returns a tuple with two elements (a) the determinant, and (b) the inverse if it mathematically exists and the string "does not exist" otherwise.
In [12]: import numpy as np
def det_and_inv(matrix):
det=np.linalg.det(matrix)
if det !=0:
Inv=np.linalg.inv(matrix)
return det,inv
Else:
return det, "does not exist"
 How to fix this code. I keep getting assertion error. 1.2[2

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!