I am currently writing a software that is supposed to predict the exact time and location of impact of a projectile in a 3D environment. The software I've written currently passes 3824 different test cases, all save for 1. In this one failing case, my program's prediction is (supposedly) off by .002 seconds, which is outside the acceptable range (3 decimal places). I would like some help determining if the answer provided by the test case is actually correct.
The relevant physics information:
Start Position: -924.190, -874.033, -451.556
Final Position: -560.32, -1211.93, -159.66
Start Velocity: 49.052, -65.432, 68.914
Up Vector: 0.533, 0.319, -0.783 (The direction the simulation considers "up", opposite direction of gravity)
Gravity Acceleration: 8.327
Final Time (theirs): 5.878
Final Time (mine): 5.876
Again, I don't need help programing the solution, at the moment. I'm just looking for someone to validate one of these possible answers. The program is a test of ability, so I would really prefer to know whether or not their answer is correct before talking to them about it. Thank you in advance!