I'm getting trouble solving these 4 coupled differential equations, just can't get a result while it keep running.

eqs =
{
A1'[t] == I (μ0 - 2*g) A1[t] - I g0 (B1[t] + C1[t]),
B1'[t] == -I (g0 (2 + n) A1[t] + Ω C1[t] + g0 D1[t]),
C1'[t] == -I (g0 (2 + n) A1[t] + Ω B1[t] + g0 D1[t]),
D1'[t] == -I g0 (1 + n) (B1[t] + C1[t]) - I (μ0 - 2 g) D1[t],
A1[0] == 0, B1[0] == 0, C1[0] == 0, D1[0] == 1
};
dusol = DSolve[eqs, {A1, B1, C1, D1}, t][[1]] // FullSimplify
\!\(\*SuperscriptBox[\(A1\), \('\)]\)[t]to describe the derivative. UseA1'[t]instead. – Ulrich Neumann Sep 16 '20 at 07:28DSolveruns forever, right? – xzczd Sep 17 '20 at 01:55FullSimplifyyields an enormous answer after several minutes. The matrix of the right sides of the equations is not Hermitian, butEigensystemdoes produce results quickly. However,JordanDecompositioncrashes. Possibly a bug. – bbgodfrey Sep 17 '20 at 02:28\!\(\*SuperscriptBox[\(A1\), \('\)]\)[t], right? I guess you obtained this by stroking Ctrl + 6 first? Then you've typed'in wrong way. You should directly type'i.e.A1'[t]is the correct input. Now copy the code in your question back to Mathematica and retry. (BTW, if you insist on stroking Ctrl + 6 first, then what you should type is\[Prime]. ) – xzczd Sep 17 '20 at 02:43JordanDecompositionnoted in earlier comment report to Wolfram, Inc as CASE:4633110. – bbgodfrey Sep 17 '20 at 13:50