Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. DSolve[y*(1 - y)*h''[y] + ((a + b) - (1 + a + b)*y) h'[y] - a*b*h[y] == 0, h[y], y]
  2.  
  3. AsymptoticDSolveValue[y*(1 - y)*h''[y] + ((a + b) - (1 + a + b)*y) h'[y] - a*b*h[y] == 0,
  4.  
  5. h[y], {y, Infinity, 1}]
  6.  
  7. AsymptoticDSolveValue[{y*(1 - y)*h''[y] + ((a + b) - (1 + a + b)*y) h'[y] - a*b*h[y] == 0,
  8.  
  9. h[1] == 1}, h[y], {y, 1, 1}]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement