Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. Integrate[1/Sqrt[x], {x, 0, 1}]
  2. (* 2 *)
  3.  
  4. int = Integrate[1/Sqrt[x], x]
  5.  
  6. Limit[int, x->1, Direction->"FromBelow"] - Limit[int, x->0, Direction->"FromAbove"]
  7.  
  8. (int /. x -> 1) - (int /. x -> 0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement