Two forces are acting on an object, a force Fl=<-3,-6,0>N and a force F2=<2,3,0>N. Visually find the net force acting on
Posted: Wed May 18, 2022 4:27 pm
Two forces are acting on an object, a force Fl=<-3,-6,0>N and a force F2=<2,3,0>N. Visually find the net force acting on the object. Notes: Make sure that you pay attention to correct spelling, capital or small letter cases, commas and points. Make sure that you don't use space when completing the code lines. GlowScript 3.2 VPython F1= vector (-3,-6,0) F2= vector (2,3,0) Visualize vector Fl in orange color, starting from the origin arrow(pos-vector(0,0,0), axis-vector D. color=color.orange) Visualize vector F2 in yellow color, starting from the tip of the vector F1 arrow(pos=vector axis-vector color=color Calculate the net force vector Fnetu Visualize the net force with cyan color, starting from the tail of the first arrow. Set its axis to the result of the net force (pos=vector(0,0,0), axis- color=color.cyan) Print the result of the addition of these two forces print ("Fnet=" 'N')