勉强尝试了一下,不保证正确性……
下面的代码求了x对t的二阶导数。楼主最好手工验算一下

ClearAll["`*"]
SetAttributes[a, Constant]
SetAttributes[b, Constant]
SetAttributes[r, Constant]
x /: Dt[x, t] = a (y - x);
y /: Dt[y, t] = r x - y - x z;
z /: Dt[z, t] = x y - b z;
Dt[x[t], {t, 2}] /. {x[t] -> x, y[t] -> y, z[t] -> z}
下面的代码求了x对t的二阶导数。楼主最好手工验算一下

ClearAll["`*"]
SetAttributes[a, Constant]
SetAttributes[b, Constant]
SetAttributes[r, Constant]
x /: Dt[x, t] = a (y - x);
y /: Dt[y, t] = r x - y - x z;
z /: Dt[z, t] = x y - b z;
Dt[x[t], {t, 2}] /. {x[t] -> x, y[t] -> y, z[t] -> z}
