Question: Impliment the function Indy4Vec that takes in four 3 dimentional vectors each represented as an array and tells whether they are linearly independent. v1=np.array([-1,3,4]) v2=np.array([6,-2,9])

Impliment the function Indy4Vec that takes in four 3 dimentional vectors each represented as an array and tells whether they are linearly independent.

v1=np.array([-1,3,4]) v2=np.array([6,-2,9]) v3=np.array([3,8,5]) v4=np.array([5,6,7]) assert Indy4Vec(v1, v2, v3, v4) == False, "Your code said that two linearly dependent vectors were independent"

#begin code here def Indy4Vec(v1,v2,v3,v4):

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!