Direction of a vector after I have already found magnitude

AI Thread Summary
The discussion focuses on calculating the direction of a vector given its components. The x component is -16.2 m and the y component is +54.6 m, leading to a magnitude of 56.95 m. The correct angle is found using the inverse tangent function, specifically tan(theta) = ay/ax, which requires careful attention to the signs of the components. A common mistake is misinterpreting the quadrant of the resulting angle; adjustments may be needed to ensure the angle is in the correct range. Using the atan2(y, x) function can simplify this process by automatically accounting for the signs of the components.
wbetting
Messages
24
Reaction score
0

Homework Statement


The x component of vector is -16.2 m and the y component is +54.6 m. (a) What is the magnitude of ? (b) What is the angle (in radians) between the direction of and the positive direction of x?





Homework Equations


magnitude of vector is sqrt of a^2+b^2
direction of vector is tan theta= ay/ax


The Attempt at a Solution


I got A part correct by finding the magnitude using sqrt of a^2+b^2= 56.95m but i can't seem to get b part. i did inverse tan of 56.4m/-16.2m and got -1.28 radians and its wrong. HELP!
 
Physics news on Phys.org
You did 56.4/-16.2.
Your given info, however states that the y component is +54.6 m.

So:
inverse tan (54.6/-16.2) is your answer.
 
That was a typo. I have been calculating inverse tan of 54.6/-16.2 and get -1.28 which is wrong according to the automatic grader
 
The inverse tangent function cannot "tell" whether the negative sign is to be associated with the numerator or denominator in its argument; ##\frac{-y}{x}## is indistinguishable from ##\frac{y}{-x}##. It will return a value that is in the range -90 ≤ θ ≤ +90 degrees.

You need to apply some smarts regarding the signs of the given components in order to place the resulting vector in the correct quadrant; You may have to add or subtract 180° (##\pi## radians) from the value it gives you in order to "shift" the quadrant.

Alternatively, if your calculator has an atan2(y,x) function, then it'll handle the signs automatically. It may also have a "rectangular to polar" conversion capability which will both find the magnitude and the proper angle for you in one step.
 
oh ok so since -16.5 x and 54.6 y puts it in the 2nd quadrant the angle has to be between 90 and 180. -73.47 is in the 4th quadrant so by adding 180 to that and converting it to radians i get 1.855 radians which is correct!
 
I multiplied the values first without the error limit. Got 19.38. rounded it off to 2 significant figures since the given data has 2 significant figures. So = 19. For error I used the above formula. It comes out about 1.48. Now my question is. Should I write the answer as 19±1.5 (rounding 1.48 to 2 significant figures) OR should I write it as 19±1. So in short, should the error have same number of significant figures as the mean value or should it have the same number of decimal places as...
Thread 'A cylinder connected to a hanging mass'
Let's declare that for the cylinder, mass = M = 10 kg Radius = R = 4 m For the wall and the floor, Friction coeff = ##\mu## = 0.5 For the hanging mass, mass = m = 11 kg First, we divide the force according to their respective plane (x and y thing, correct me if I'm wrong) and according to which, cylinder or the hanging mass, they're working on. Force on the hanging mass $$mg - T = ma$$ Force(Cylinder) on y $$N_f + f_w - Mg = 0$$ Force(Cylinder) on x $$T + f_f - N_w = Ma$$ There's also...
Back
Top