Question: import numpy as npimport mathfrom math import * # Import all the math functions from the math libraryfrom numpy import array# Complete the function given

import numpy as npimport mathfrom math import * # Import all the math functions from the math libraryfrom numpy import array# Complete the function given the variables F1, F2, theta1(positive, degree), theta2(negative, degree) and return the value as array# Hints: Use numpy.array to form the force vector and then add the force vectors# Remember to convert the degree to radian in the calculations and be careful of the signdef force_vec(F1, F2, theta1, theta2): R=np.array([0,0]) # Resultant force vector, Initiation of the value # YOUR CODE HERE return R ## Check your answerF1=300F2=200Theta1=60Theta2=-30print(force_vec(300,200,60,30))

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!