No answer is given and no error message as well for this expression.
DSolve[X*Y''[X] + (3*X^3 - 1) Y'[X] == C, Y[X], X]
Hope someone can help me. I really appreciate that.
Answer
Try:
sol = First@Block[{Integrate}, DSolve[X*Y''[X] + (3*X^3 - 1) Y'[X] == C,
Y[X], X] /. {Integrate -> Inactive[Integrate]}] // Simplify
{Y(X)→∫X1exp(∫K[3]1(1K[1]−3K[1]2)dK[1])(c1+∫K[3]1Cexp(−∫K[2]1(1K[1]−3K[1]2)dK[1])K[2]dK[2])dK[3]+c2}
Activate[sol] (* Integrate can't find closed solution *)
Comments
Post a Comment