Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. f = Integrate[ 1/(1 + x^2 y^2), {x, 0, [Infinity]}, {y, 0, [Infinity]}]
  2.  
  3. (* Out[1407]= !(
  4. *SubsuperscriptBox[([Integral]), (0), ([Infinity])](
  5. *FractionBox[([Pi]), (2 x)] [DifferentialD]x)) *)
  6.  
  7. f // N
  8.  
  9. (* Out[1418]= 366.404 *)
  10.  
  11. fi = Integrate[ 1/(1 + x^2 y^2), {x, 0, t}, {y, 0, t}, Assumptions -> t > 0]
  12.  
  13. (* Out[1411]= 1/2 I (PolyLog[2, -I t^2] - PolyLog[2, I t^2]) *)
  14.  
  15. Series[fi, {t, [Infinity], 2}] // Normal
  16.  
  17. (* Out[1416]= 1/t^2 - [Pi] Log[1/t] *)
  18.  
  19. Limit[fi, t -> [Infinity]]
  20.  
  21. (* Out[1400]= [Infinity] *)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement