Solving equation of motion for two body problem

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
7 replies · 2K views
Robin04
Messages
259
Reaction score
16

Homework Statement


##\ddot{r} = c \frac{1}{r^2}##, where ##c## is a constant, and ##r## is the position of one object with respect to the other. I need to find the function ##\dot{r}(r)##

We are in one dimension.

Homework Equations

The Attempt at a Solution


I don't really have any idea how to start.
The acceleration is a function of the position, but the position is also a function of the acceleration. To get ##\dot{r}## I should integrate with respect to time but ##r## is dependent on time which makes it problematic as I won't need that in my solution. There has to be some magic trick here.
 
Physics news on Phys.org
Robin04 said:
There has to be some magic trick here.

Let ##v=dr/dt##. Then,
$$\frac{d^2 r}{dt^2} = \frac{dv}{dt} = \frac{dv}{dr} \frac{dr}{dt} = \frac{dv}{dr} v.$$
 
  • Like
Likes   Reactions: Robin04
George Jones said:
Let ##v=dr/dt##. Then,
$$\frac{d^2 r}{dt^2} = \frac{dv}{dt} = \frac{dv}{dr} \frac{dr}{dt} = \frac{dv}{dr} v.$$
So ##c\frac{1}{r^2}= \frac{dv}{dr}v##, then ##\frac{c}{vr^2}=\frac{dv}{dr}##, and ##v = \int \frac{c}{vr^2} dr##, whis means ##v^2=c\int \frac{1}{r^2}dr##.
##v= \sqrt{C-\frac{c}{r}}## is this correct? (##C## is the constant of integration)
 
Robin04 said:
So ##c\frac{1}{r^2}= \frac{dv}{dr}v##, then ##\frac{c}{vr^2}=\frac{dv}{dr}##, and ##v = \int \frac{c}{vr^2} dr##, whis means ##v^2=c\int \frac{1}{r^2}dr##.
##v= \sqrt{C-\frac{c}{r}}## is this correct? (##C## is the constant of integration)
No, you need to separate the r and v.

##c\frac{1}{r^2}~dr = v~dv##

Now both sides can be integrated.
 
  • Like
Likes   Reactions: Robin04
gneill said:
No, you need to separate the r and v.

##c\frac{1}{r^2}~dr = v~dv##

Now both sides can be integrated.
##C-\frac{c}{r} = \frac{v^2}{2}##
##v=\sqrt{K-\frac{2c}{r}}##, where ##K=2C##
 
Robin04 said:
##C-\frac{c}{r} = \frac{v^2}{2}##
##v=\sqrt{K-\frac{2c}{r}}##, where ##K=2C##

Instead of doing indefinite integrals and having a constant of integration, you might want to do definite integrals with limits from ##r_0## to ##r## and ##v_0## to ##v##. This automatically incorporates initial conditions.
 
  • Like
Likes   Reactions: SammyS and Robin04
George Jones said:
Instead of doing indefinite integrals and having a constant of integration, you might want to do definite integrals with limits from ##r_0## to ##r## and ##v_0## to ##v##. This automatically incorporates initial conditions.
##\int_{r_0}^r \frac{c}{r^2}dr= \int_{v_0}^v v dv##
##-\frac{c}{r}+\frac{c}{r_0}=\frac{v^2}{2}-\frac{v_0^2}{2}##
##v=\sqrt{v_0^2+2c(\frac{1}{r_0}-\frac{1}{r})}##
 
  • Like
Likes   Reactions: gneill
@gneill liked my last comment, so I guess it's correct. Thank you very much for your help! :)