Message Boards Message Boards

0
|
1850 Views
|
2 Replies
|
1 Total Likes
View groups...
Share
Share this post:

What is the step by step solution for this Ricatti's equation?

Posted 1 year ago

Some software give the result using Kummer function, but did not show steps. enter image description here

Attachments:
POSTED BY: SHAOXUAN HUANG
2 Replies

The basic conversion to a second-order linear equation is straightforward.

The linear equation is holonomic, but not easy to solve apparently. DSolve returns a DifferentialRoot[] solution.

Block[{q, r, s},
 {q[0], q[1], q[2]} = 
  CoefficientList[
   y'[x] /. First@Solve[2 x*y'[x] == (x + 2) y[x]^2 - (x + 4), y'[x]],
    y[x]];
 s = q[0] q[2];
 r = q[1] + D[q[2], x]/q[2];
 usol = DSolve[u''[x] - r*u'[x] + s*u[x] == 0, u, x];
 ysol = {y[x] -> -u'[x]/u[x]/q[2]} /. First@usol
 ]

If you want a derivation of the Kummer function expression, you might have better luck asking on a mathematics site.

POSTED BY: Michael Rogers

Thank you!

POSTED BY: SHAOXUAN HUANG
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract