Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Fundamentals Of Database System

Authors: Elmasri Ramez And Navathe Shamkant

7th Edition

978-9332582705

More Books

Students also viewed these Databases questions

Question

When should you avoid using exhaust brake select all that apply

Answered: 1 week ago

Question

Recount the fundamental assumptions of the muted group theory

Answered: 1 week ago

Question

Compare and contrast monochronic and polychronic time orientations

Answered: 1 week ago

Question

Compare and contrast cultural preferences for privacy

Answered: 1 week ago