Invertible Matrix Determinant

Report a typo

Imagine you decided to help your friend with NumPy. You created a code that computes a determinant of any invertible matrix. Unfortunately, the lines got mixed. Put them in the right order.

Put the items in the correct order
det = np.linalg.det(inv_arr)
inv_arr = np.linalg.inv(arr)
import numpy as np
arr = np.array([[6, 4], [2, 8]])
___

Create a free account to access the full topic