Should I use arccosine instead?

AI Thread Summary
The discussion revolves around calculating the angle from given x and y components using trigonometric functions. The arctangent function is highlighted for its limitation, as it only provides angles in the first and fourth quadrants, which can lead to ambiguity when determining angles in the second quadrant. The arc cosine and arc sine functions also face similar issues, as they do not account for all quadrants. It is suggested that using the angle derived from the arc tangent function can still yield correct results by interpreting it appropriately in the second quadrant. Ultimately, the conversation emphasizes the importance of understanding the limitations of these functions in trigonometric calculations.
Uxas
Messages
4
Reaction score
0
Homework Statement
On a freeway, a truck of 3500 kg collides with an automobile of 1500 kg that is trying to cut diagonally
across the path of the truck. Just before the collision, the truck was traveling due north at 70 km/h, and the
automobile was traveling at 30° west of north at 100 km/h. After the collision, the vehicles remain joined
together.
(a) What is the velocity (magnitude and direction) of the joined vehicles immediately after the collision?
(b) How much kinetic energy is lost during the collision?

IDK the exact angle or the direction of the wreckage, I am not sure about my answers.
Relevant Equations
m1v1+m2v2=(m1+m2)v'
Xcomp: [-(1500kg)(100km/h)(sin(30))+(3500kg)(70km/h)(cos(90))]/5000kg = -15km/h
ycomp: [(1500kg)(100km/h)(cos(30))+(350(70km/h)(sin(90))]/5000kg = 74.98km/h
 
Physics news on Phys.org
Those numbers look right. How do you find the angle? If the answer is speed v at θ W of N, what would the x and y components be?
 
  • Like
Likes Uxas
haruspex said:
Those numbers look right. How do you find the angle? If the answer is speed v at θ W of N, what would the x and y components be?
tan θ = 74.98/-15 right? then to find θ , arctan(74.98/-15)=θ, the angle is somehow negative and does not match my prediction that the wreckage will be heading to the 2nd quadrant.
 
Uxas said:
tan θ = 74.98/-15 right? then to find θ , arctan(74.98/-15)=θ, the angle is somehow negative and does not match my prediction that the wreckage will be heading to the 2nd quadrant.
What does the tangent function give you for angles in the second quadrant?
What does the tangent function give you for angles in the fourth quadrant?

If you know the tangent of an angle and you want the angle, you will need to disambiguate. The arctangent function on your calculator will only return angles in the first and fourth quadrants (-90 degrees to +90 degrees).

[In computer programming we sometimes use the atan2 function. It takes two arguments -- an x and a y component and handles the ambiguity that way. Handy little function, it also deals with the case where x is zero and avoids the divide by zero problem]
 
Last edited:
  • Like
Likes Uxas
jbriggs444 said:
What does the tangent function give you for angles in the second quadrant?
What does the tangent function give you for angles in the fourth quadrant?

If you know the tangent of an angle and you want the angle, you will need to disambiguate. The arctangent function on your calculator will only return angles in the first and fourth quadrants (-90 degrees to +90 degrees).

[In computer programming we sometimes use the atan2 function. It takes two arguments -- an x and a y component and handles the ambiguity that way. Handy little function, it also deals with the case where x is zero and avoids the divide by zero problem]
I did not know that thanks! I am just starting with math and science, not even in college yet. Should I use arccosine instead?
 
I think I got the right answer. Thanks everyone.
 
Uxas said:
I did not know that thanks! I am just starting with math and science, not even in college yet. Should I use arccosine instead?
The arc cosine suffers from the same problem. If all you know is the cosine of an angle (the ratio of the x component to the hypotenuse) then you cannot distinguish between an angle above the x-axis in the second quadrant or the same angle below the x-axis in the third quadrant.

The arc cosine function on your calculator returns angles in the first and second quadrants and ignores the possibility of the third and fourth.

The arc sine suffers from the same problem. If all you know is the sine of an angle (the ratio of the y component to the hypotenuse) then you cannot distinguish between an angle above the x-axis in the first quadrant and the same angle above the x-axis in the second quadrant.

The arc sine function on your calculator returns angles in the first and fourth quadrant and ignores the possibility of the second and third.

As alluded to already, the arc tangent suffers from this problem. If all you know is the tangent of an angle (the ratio of the y component to the x component) then you cannot distinguish between an angle below the x-axis in the fourth quadrant and the same angle above the x-axis in the second quadrant.

The arc tangent function on your calculator returns angles in the first and fourth quadrant and ignores the possibility of the second and third.

But you already know the angle is in the second quadrant.

Yes, the arc cosine function would work in this case. But it is easier to just use the angle you got from the arc tangent function. Instead of a [clockwise] angle below the x-axis in the fourth quadrant, use it as the [clockwise] angle above the x-axis in the second quadrant.
 
  • Like
Likes Uxas
Back
Top