Gertjaars

Untitled

Mar 31st, 2013
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. ∫ e^(-x^2) dx from -∞ to ∞
  2.  
  3. First, call the integral I:
  4.  
  5. I = ∫ e^(-x^2) dx from -∞ to ∞
  6.  
  7. Square I, which is to say, multiply it by itself (with y instead of x):
  8.  
  9. I^2 = [∫ e^(-x^2) dx from -∞ to ∞][∫ e^(-y^2) dy from -∞ to ∞]
  10.  
  11. Using Fubini's theorem, we can combine these integrals into a double integral, and multiply the integrands:
  12.  
  13. I^2 = [∫ ∫ e^(-x^2 - y^2) dx dy] from [-∞ to ∞] and [-∞ to ∞]
  14.  
  15. Now, we switch to polar coordinates, so:
  16.  
  17. dx dy = r dr dθ
  18. x = r cos(θ)
  19. y = r sin(θ)
  20.  
  21. We can describe the new limits as follows:
  22.  
  23. 0 ≤ r ≤ ∞
  24. 0 ≤ θ ≤ 2π
  25.  
  26. I^2 = [∫ ∫ e^(-r^2(sin^2(θ) + cos^2(θ))) r dr dθ] from [0 to ∞] and [0 to 2π]
  27. I^2 = [∫ ∫ e^(-r^2) r dr dθ] from [0 to ∞] and [0 to 2π]
  28.  
  29. ∫ e^(-r^2) r dr from [0 to ∞]
  30.  
  31. u = -r^2
  32. du = -2r dr
  33. dr = -1/(2r) du
  34.  
  35. (-1/2) ∫ e^(u) du from [0 to ∞]
  36. (-1/2) [e^u] from [0 to ∞]
  37. (-1/2) [e^(-r^2)] from [0 to ∞]
  38.  
  39. The upper limit will go to zero, and the lower limit will go to -(-1/2) = 1/2.
  40.  
  41. ∫ 1/2 dθ from [0 to 2π]
  42. 1/2 [θ] from [0 to 2π]
  43. = π
  44.  
  45. I^2 = π
  46. I = sqrt(π)
Advertisement
Add Comment
Please, Sign In to add comment