I am trying to calculate the maximum change in speed over a given distance with a known constant acceleration, current speed and of course, distance. I do not know the time.
However, I run into the issue that the speed is undefined if the starting speed is zero.
Given a=∆v/t, ∆v=a*t, and ∆t=d/v, I came up with ∆v=a*(d/v). However if the current speed is zero, I get a undefined value for the delta speed.
I feel as if I am missing something obvious, or that the algorithms I am using are simplified versions of more complete ones.
Thanks in advance for any help.