I'm working on a problem that essentially is trying to calculate the maximum velocity and time it would take, for one to fall through a friction-less hole from Chicago to Rome.
I have derived a function with respect to distance that calculates the acceleration at any point x in the tube. Integrating this from x=0 to the center point of the hole, which in this case happens to be x=3633501, gives me my maximum velocity. However, I am at a loss for how to calculate the time it would take to get to the center of the tunnel, which I would then double to get the overall trip time.
The formula for acceleration with respect to position is as follows:
$$a(x) = 1.5404 \cdot 10^{-6}\cdot \sqrt{3.1272 \cdot 10^{13}+x^2-7267002x}\cdot \sin\left(\arctan(\frac{2968886}{\sqrt{2.24584 \cdot 10^{13}+x^2-7627002x}})\right)$$
If anyone has any idea where to go from here to calculate time, it would be greatly appreciated. I can supply any other info upon request, I'm just not sure what is important to include here and what isn't.
Thank you.
$\sin(\arctan(x))=\frac x{1+x^2}$ will get rid of the trig functions. After that I suspect you are in for numerical integration.