Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started