We have a system:
x'[t] == x[t] - 5 y[t] + z[t] y'[t] == 3 x[t] - 3 y[t] - 3 z[t] z'[t] == -2 x[t] + 10 y[t] + 4 z[t]
and initial conditions:
x[0] == .01 y[0] == 3 z[0] == 0
I produced a specific schedule:
eqn = {x'[t] == x[t] - 5 y[t] + z[t], y'[t] == 3 x[t] - 3 y[t] - 3 z[t], z'[t] == -2 x[t] + 10 y[t] + 4 z[t]}; sol = NDSolve[{eqn, x[0] == .01, y[0] == 3, z[0] == 0}, {x[t], y[t], z[t]}, {t, -5, 5}] {xde[t_], yde[t_], zde[t_]} = {x[t], y[t], z[t]} /. Flatten[sol] ParametricPlot3D[{xde[t], yde[t], zde[t]}, {t, 0, 10}, AxesLabel -> {"x", "y", "z"}, PlotRange -> {{-15, 15}, {-15, 15}, {-15, 15}}]
I know how to choose a random point to build the entire path, but I canβt find a way to animate a point moving along the path that was built. In this particular example, the point should be at t == 0 and move forward to t == 2.