Finding Coordinates on a Circle: Solving for Points After Rotation

  • Thread starter Thread starter macarino
  • Start date Start date
  • Tags Tags
    Circle
AI Thread Summary
To find the coordinates of a point on a circle after a rotation, start with the circle's equation (x+a)²+(y+b)²=r² and define the angle Theta for the rotation. If Theta is positive, the movement is counterclockwise; if negative, it is clockwise. The coordinates can be calculated using adjusted parametric equations: x = r sin(Theta) + a and y = r cos(Theta) + b, considering the starting point at the top of the circle. This approach allows for accurate determination of the new coordinates based on the specified angle. Understanding the orientation of the angle is crucial for correct calculations.
macarino
Messages
4
Reaction score
0
:frown:1. I have a circle equation
(x+a)^2+(y+b)^2=r^2
And suppose we start from the topmost of the circle
2.I have an angle Theta
and if Theta is larger than 0 we move counterclockwise or we will move in the opposite direction if it is positive.
, how can I find out the coordinates of a point on the circle after the move

Thanks a lot :)
 
Physics news on Phys.org
macarino said:
:frown:1. I have a circle equation
(x+a)^2+(y+b)^2=r^2
And suppose we start from the topmost of the circle
2.I have an angle Theta
and if Theta is larger than 0 we move counterclockwise or we will move in the opposite direction if it is positive.

You mean "negative" instead of this second "positive" don't you?

, how can I find out the coordinates of a point on the circle after the move
Thanks a lot :)
For \theta between 0 and \pi/2, at least, You can construct a right triangle by drawing a line from (0,0) to the point and then from the point perpendicular to the right angle. The y-coordinate of the point is the "near side", the x-coordinate is the negative of the "opposite side".
 
I am sorry I am not a native, not understanding what you mean

In the picture below, I'd like to know what is P's coordinates given rotation angle alpha and a point O(0,a)

The circle equation is
(x+a)^2+(y+b)^2=r^2


Thanks
Regards
 

Attachments

You are taking \theta to be 0 at the "top", (a,b+ r) and measuring it clockwise? If you were using the "standard", \theta= 0 to the right, (a+r, 0), and measuring counter clockwise, then you could use the parametric equations, x= r cos(\theta)+ a, y= r sin(\theta)+ b. The fact that you starting 90 degrees off that means you need to swap sine and cosine: x= r sin(\theta)+ a and y= r cos(\theta)+ a. Now, taking \theta= 0 you can see that x= r(0)+ a= a, y= r(1)+ b= b+ r as you want. Further taking \theta= \pi/2, we have x= r(1)+ a= a+ r, y= r(0)+ b= b as wanted.

x= r sin(\theta)+ a, y= r cos(\theta)+ b.
 
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Essentially I just have this problem that I'm stuck on, on a sheet about complex numbers: Show that, for ##|r|<1,## $$1+r\cos(x)+r^2\cos(2x)+r^3\cos(3x)...=\frac{1-r\cos(x)}{1-2r\cos(x)+r^2}$$ My first thought was to express it as a geometric series, where the real part of the sum of the series would be the series you see above: $$1+re^{ix}+r^2e^{2ix}+r^3e^{3ix}...$$ The sum of this series is just: $$\frac{(re^{ix})^n-1}{re^{ix} - 1}$$ I'm having some trouble trying to figure out what to...
Back
Top