Advertisement
JoelSjogren

Untitled

Nov 15th, 2020
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. box% sage
  2. ┌────────────────────────────────────────────────────────────────────┐
  3. │ SageMath version 9.2, Release Date: 2020-10-24 │
  4. │ Using Python 3.8.6. Type "help()" for help. │
  5. └────────────────────────────────────────────────────────────────────┘
  6. sage: y = 1/((x^3+1)/(x-1)^2-1)
  7. sage: y.simplify_full()
  8. (x^2 - 2*x + 1)/(x^3 - x^2 + 2*x)
  9. sage: y.simplify_full().factor()
  10. (x - 1)^2/((x^2 - x + 2)*x)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement