Question: #start code here from sympy . vector import CoordSys 3 D N = CoordSys 3 D ( ' N ' ) a = 2 *

#start code here
from sympy.vector import CoordSys3D
N = CoordSys3D('N')
a =2*N.i +3*N.j
b =-1*N.i +5*N.j
print(f"a+b is <{(a+b).to_matrix(N)[0]},{(a+b).to_matrix(N)[1]}>")
print(f"a-b is <{(a-b).to_matrix(N)[0]},{(a-b).to_matrix(N)[1]}>")
print(f"3a-5b is <{(3*a-5*b).to_matrix(N)[0]},{(3*a-5*b).to_matrix(N)[1]}>")

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!