Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. sage: var('U,z');
  2. sage: V = 1/U
  3. sage: EE = (z^2-1)^2 / z^2 / (z-U) / (z-V)
  4. sage: EE.partial_fraction(z)
  5. -(U^2 - 1)/(U*z - 1) - (U^2 - 1)/((U - z)*U) + (U^2 + 1)/(U*z) + 1/z^2 + 1
  6. sage: bool( _ == (1 + 1/z^2 + (U+V)/z - (V-U)/(z-U) - (U-V)/(z-V) ) )
  7. True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement