我正在使用 dsolve 找到涉及磁共振的薛定谔方程的求解微分方程,但出现错误。
DSolve[{I*a'[t] == .5*(w0*a[t] + w1*Cos[w*t]*b[t]),
I*b'[t] == .5*(w1*Cos[w*t]*a[t] - w0*b[t]),
a[t]^2 + b[t]^2 == 1}, {a, b}, t]
从此我得到了答复
There are fewer dependent variables than equations, so the system is \
过度确定。
我看到 3 个方程和 3 个未知数,所以我真的不知道它为什么这样做。任何帮助,将不胜感激。