Plot Trajectory of Particle - Get Help Now

AI Thread Summary
To plot the trajectory of a particle defined by the equations x(t) = Rwt - Rsin(wt) and y(t) = R - Rcos(wt), one should start by calculating the x and y values for a range of time values. The equations suggest a circular motion, which can be analyzed by translating the circle's center. Specifically, the trajectory can be inferred by recognizing that the movement results in a circular path modified by linear shifts in the x and y coordinates. For calculating tangential and centripetal accelerations from a different trajectory equation of the form at^2 + bt, one should differentiate the position function twice with respect to time to obtain the necessary acceleration components. Understanding these relationships is crucial for analyzing the particle's motion effectively.
peripatein
Messages
868
Reaction score
0
Hello,

How may I plot the trajectory of a particle whose movement vectors are given as:
x(t) = Rwt - Rsin(wt)
y(t) = R - Rcos(wt)

I have tried squaring both x and y and adding them, to infer some sort of circular trajectory, to no avail. Could someone please assist/make a suggestion?
 
Physics news on Phys.org
You didn't mention in what plotting program (matlab,scilab, gnuplot) but usually, you need to create a vector of values for time first, then calculate the x and y vectors and plot y against x.
e.g. in MATLAB and scilab you do:
t=0:0.1:10
x=t-sin(t)
y=1-cos(t)
plot(x,y)
 
I am not supposed to use any program, simply infer the general scheme of the trajectory from the equations. Any ideas?
 
OK, then do this:

start from t=0 to get the starting point (x,y).
Then, knowing that (x,y)=(-Rsin(t),-Rcos(t)) describes a circle of radius R, what will happen if every y-value is moved up by R? You simply translate your circle.

Then, what happens if every x-value is moved right by Rt? It will not be a circle anymore. For instance, the end-point at t=2*pi (when w=1) will have moved to x=R*2*pi. You can take one or two other t-values to get the shape.

I have taken w=1, but it is easy to generalize the above approach.
 
Supposing now that the particle's trajectory is given by at^2+bt, where units of a are m/s^2 and units of b are m/s. How am I to calculate its tangential and centripetal accelerations? I know that the radial acceleration is equal to r*w^2 but what about the tangential acceleration and how is all of that related to the trajectory as given with parameters a and b? Do I simply differentiate twice wrt t?
 
Thread 'Collision of a bullet on a rod-string system: query'
In this question, I have a question. I am NOT trying to solve it, but it is just a conceptual question. Consider the point on the rod, which connects the string and the rod. My question: just before and after the collision, is ANGULAR momentum CONSERVED about this point? Lets call the point which connects the string and rod as P. Why am I asking this? : it is clear from the scenario that the point of concern, which connects the string and the rod, moves in a circular path due to the string...
Back
Top