Question: Code says final answer is incorrect. What is wrong with my code? 1 . 2 [ 2 pt ] Write a function called det _
Code says final answer is incorrect. What is wrong with my code?
pt Write a function called detandinv 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.
import numpy as np
def detandinvsquarematrix:
det linalg.detsquarematrix
try:
invnplinalg.invsquarematrix
except nplinalg.LinAlgError:
inv"does not exist"
return det,inv
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
