- #36
CraigDNeo
- 21
- 0
I put these into the linear solver for a
60 foot in 1.083s,
330 foot in 3.112s
660 foot in 4.83s
60 = A*1.17 + B*1.21 + C*1.31
330 = A*9.67 + B*30.08 + C*93.55
660 = A*23.33 + B*112.68 + C*544.23
and I get this in return
{ a = 63.82661360552823, b = -13.508610964551533, c = 1.273497212701 }
Now taking these values an finding the distance this car is as opposed to the other car,
for example, the other car's (CAR2) time at the 330 was 2.7038
So, my confusion currently, is calculating the other cars distance, do I still do the following:
X(t) = (A + B + C * 2.7038) * (2.7038)^2/2?
Then I would get 330 -X(t) = distances CAR1 is ahead or behind CAR2.
60 foot in 1.083s,
330 foot in 3.112s
660 foot in 4.83s
60 = A*1.17 + B*1.21 + C*1.31
330 = A*9.67 + B*30.08 + C*93.55
660 = A*23.33 + B*112.68 + C*544.23
and I get this in return
{ a = 63.82661360552823, b = -13.508610964551533, c = 1.273497212701 }
Now taking these values an finding the distance this car is as opposed to the other car,
for example, the other car's (CAR2) time at the 330 was 2.7038
So, my confusion currently, is calculating the other cars distance, do I still do the following:
X(t) = (A + B + C * 2.7038) * (2.7038)^2/2?
Then I would get 330 -X(t) = distances CAR1 is ahead or behind CAR2.