"""Returns acceleration for the i-th body in a two-body system. You can find the overall acceleration for a body by summing the acceleration from all bodies in a n-body system.
Parameters
----------
r_i : array
Position vector of body that we are finding acceleration for (i-th body)
r_j : array
Position vector of other body that is affecting the main body (j-th body)
m_j : float_like
Mass of other j-th body
Returns
-------
a : array
Acceleration vector of output dynamics for i-th body
"""
#so apparently we need to calc r_dot (velocity), since the input is position