This problem's question: How fast in m/s is the test particle moving when it reaches 997.5 m?
All distance units are meters. All time units are seconds.
I am defining a few terms for this problem: jerk = ∂ t ∂ acceleration , snap = ∂ t ∂ jerk , crackle = ∂ t ∂ snap and pop = ∂ t ∂ crackle . Actually, jerk is often defined as the derivative of acceleration with respect to time , represented by t here. Also, I am using l as the initial location. Every parameter except pop for this problem has been set to 0 . Remember that velocity is the derivative of position with respect to time. Time in this problem is a positive real and time starts at 0 seconds.
The value of pop is 1 0 0 0 1 s 6 m for this problem.
The answer has been rounded the nearest integer s m .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Ah, a numerical solution to the differential equation.
DSolve [ { x ( 6 ) ( t ) = p , x ( 5 ) ( 0 ) = c , x ( 4 ) ( 0 ) = s , x ( 3 ) ( 0 ) = j , x ′ ′ ( 0 ) = a , x ′ ( 0 ) = v , x ( 0 ) = l } , x , t ] ⇒ position : t → l + v t + 2 a t 2 + 6 j t 3 + 2 4 s t 4 + 1 2 0 c t 5 + 7 2 0 p t 6
With only pop non-zero and equal to 1 0 0 0 1 s 6 m , the formula simplifies to position : t → 7 2 0 × 1 0 0 0 1 t 6 .
Solving 7 2 0 × 1 0 0 0 1 t 6 = 9 9 7 . 5 gives t = 2 9 . 9 2 5 4 6 4 4 9 4 9 2 6 4 seconds.
Doing the first derivative of position with respect to time and substituting these parameters, including the solved for time gives an answer after rounding to the nearest integer of 2 0 0 s m . This is about 447.4 mph.
Problem Loading...
Note Loading...
Set Loading...
Here is another (very elementary) code solution. My notation denotes all quantities from the "zeroth derivative" to the "sixth derivative". The first derivative is the velocity, and the sixth derivative is the same as "pop".