Guest User

Untitled

a guest
Mar 24th, 2021
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.46 KB | None | 0 0
  1. ---
  2. title: 8.4 Trig Substitution (Module 9)
  3. tags: [Notebooks/MA 242/Notes]
  4. created: '2021-03-01T18:38:05.668Z'
  5. modified: '2021-03-24T17:58:23.165Z'
  6. ---
  7.  
  8. # 8.4 Trig Substitution (Module 9)
  9. Integrals that involve &sqrt(a^2 -x^2)& or &sqrt(a^2 + x^2)&
  10. Use right triangle trigonometry
  11. Use trig functions &sin theta&, &tan theta&, and &sec theta&
  12. Think &x/a& using Pythagorean Theorem
  13.  
  14. ```
  15. /|
  16. c / | b
  17. / |
  18. / |
  19. a
  20. ```
  21. &&c = sqrt(a^2 + b^2)&&
  22. &&a = sqrt(c^2 - b^2)&&
  23. &&b = sqrt(c^2 - a^2)&&
  24. &&sin theta = "O"/"H"&&
  25. &&tan theta = "O"/"A"&&
  26. &&sec theta = "H"/"A"&&
  27.  
  28. (Basically: we want to convert one of the above "square root of weird things" into trig functions that are easier to integrate, integrate them, and then undo all our wacky replacements.)
  29.  
  30. #### Example
  31. &&sqrt(a^2 - x^2)&&
  32.  
  33. &&a -> "Hypotenuese"&&
  34. &&x -> "Opposite"&&
  35. *N.B: You want to produce &x/a& in your equations, as &a/x& is a pain to work with*
  36.  
  37. We can now create a triangle with a hypotenuese of &a&, an opposite of &x&, and an adjacent of &sqrt(a^2-x^2)&.
  38. We now want to solve for x, dx, theta and the radical...
  39.  
  40. &&sin theta = x/a&&
  41. &&a sin theta = x&&
  42. &&a cos theta d theta= dx&&
  43. &&theta = sin^(-1) (x/a)&&
  44.  
  45. We now want to rewrite our radical in terms of theta, not x:
  46. &&sqrt(a^2 - (asin theta)^2)&&
  47. &&sqrt(a^2 - a^2 sin^2 theta)&&
  48. &&a sqrt(1 - sin^2 theta)&&
  49. &&a sqrt(cos^2 theta)&&
  50. &&a cos theta = sqrt(a^2-x^2)&&
  51.  
  52. #### An Actual Example
  53. &&int (x^2)/(sqrt(9-x^2))dx&&
  54. &&a = 3&&
  55.  
  56. &&sin theta = x/3&&
  57. &&x = 3 sin theta&&
  58. &&dx = 3cos theta d theta&&
  59.  
  60. Substitute in x into the radical
  61. &&sqrt(9-x^2)&&
  62. &&sqrt(9 - (3 sin theta)^2)&&
  63. &&sqrt(9 - 9 sin^2 theta)&&
  64. &&3sqrt(1-sin^2 theta)&&
  65. &&3sqrt(cos^2 theta)&&
  66. &&3cos theta&&
  67. &&therefore sqrt(9-x^2) = 3cos theta&&
  68.  
  69. Find theta
  70. &&sin theta = x/3&&
  71. &&theta = arcsin(x/3)&&
  72.  
  73. Rewrite the original integral with our funny numbers:
  74. **DO NOT FORGET THE &dx&!!**
  75. &&int x^2/sqrt(9-x^2) dx&&
  76. &&int (9 sin^2 theta)/(3cos theta) 3 cos theta d theta&&
  77. &&9 int sin^2 theta / cos theta * cos theta d theta&&
  78. &&9 int sin^2 theta d theta&&
  79. &&9 int (1-cos 2 theta)/2 d theta&&
  80. &&9/2 int (1 - cos 2theta) d theta&&
  81. &&9/2 (theta - (sin 2 theta)/2) +C&&
  82. Power unreduction formulas!!
  83. &&9/2 (theta - 2 sin theta cos theta) +C&&
  84. &&9/2(arcsin(x/3) - xsqrt(9-x^2)/9)&&
  85.  
  86. When working with arcsin and arctangent, certain restrictions apply:
  87. &&-pi/2 <= theta <= pi /2&&
  88.  
  89. #### Another Example
  90. &&int x^3/sqrt(x^2 +4 dx)&&
  91.  
  92. Hyp: &sqrt(x^2 + 4)&
  93. Opp: &x&
  94. Adj: &2&
  95. &&tan theta = x/2&&
  96. &&x = 2 tan theta&&
  97. &&dx = 2 sec^2 theta d theta&&
  98. &&sqrt(x^2 + 4 )dx&&
  99. &&sqrt(4 tan^2 theta + 4)&&
  100. &&2 sec theta&&
  101. &&int (8 tan^3 theta)/(2 sec theta) 2sec^2 theta d theta&&
  102. &&int 8tan^3 theta sec theta d theta&&
  103. &&8 int (tan^2 theta)sec theta tan theta d theta&&
  104. &&8 int (sec^2 theta-1)sec theta tan theta d theta&&
  105. &&u = sec theta&&
  106. &&du = sec theta tan theta d theta&&
  107. &&8 int (u^2 -1) du&&
  108. &&8 (u^3/3 - u)&&
  109. &&8 (sec^3 theta/3 - sec theta)&&
  110. &&because&&
  111. &&x = 2 tan theta&&
  112. &&sec theta = sqrt(x^2+4)/2&&
  113. &&1/3 (x^2 +4)^(3/2) - 4sqrt(x^2+4) +C&&
  114.  
  115. #### EGG SAMPLE
  116. &&sqrt(x^2 - a^2)&&
  117. hypotenuese: &x&, adjacent: &a&, opposite: &sqrt(x^2-a^2)&
  118. &&sec theta = x/a&&
  119. &&x = a sec theta&&
  120. &&dx = a sec theta tan theta d theta&&
  121. &&sqrt(a^2 sec^2 theta - a^2)&&
  122. &&asqrt(sec^2 theta - 1)&&
  123. &&a tan theta&&
  124.  
  125. Important:
  126. &&theta = sec^-1(x/a)&&
  127. &&0 <= theta <= pi/2 if x/a >= 1&&
  128. &&pi/2 <= theta <= oi if x/a <= -1&&
  129.  
  130. &&int dx/sqrt(25x^2-4)&&
  131. &&"Adj: " a=2&&
  132. &&"Hyp: " 5x&&
  133. &&"Opp: " sqrt(25x^2-4)&&
  134.  
  135. &&sec theta = (5x)/2&&
  136. &&x = 2/5 sec theta&&
  137. &&dx = 2/5 sec theta tan theta d theta&&
  138.  
  139. &&int sqrt(25(2/5 sec theta)^2 - 4) 2/5 sec theta tan theta d theta&&
  140. &&2/5 int sqrt(4 sec^2 theta - 4) sec theta tan theta d theta&&
  141. &&1/5 int 1/sqrt(sec^2 theta -1) sec theta tan theta d theta&&
  142. &&1/5 int 1/tan theta sec theta tan theta d theta&&
  143. &&1/5 int sec theta d theta&&
  144. &&1/5 ln|sec theta + tan theta| + C&&
  145. &&1/5 ln | (5x)/2 + sqrt(25x^2 -4)/2|&&
  146.  
  147. #### Another Example
  148. &&int_-2^2 dx/(4+x^2)&&
  149. &&int_-2^2 (1/sqrt(4+x^2))^2 dx&&
  150. &&a = 2&&
  151. &&tan theta = x/2&&
  152. &&x = 2 tan theta&&
  153. &&dx = 2 sec^2 theta d theta&&
  154.  
  155. &&sqrt(4+x^2) = 2 sec theta&&
  156. &&4 + x^2 = 4 sec^2 theta&&
  157. &&theta = arctan(x/2)&&
  158.  
  159. #### Example 2a
  160. &&int_sqrt(2)^2 1/(t^2 sqrt(t^2 -1)) dt&&
  161. &&t = sec theta&&
  162. &&dt = sec theta tan theta d theta&&
  163. &&theta = arcsec t&&
  164.  
  165. &&int_(pi/4)^(pi/3) cos theta d theta&&
  166. &&sin theta|_(pi/4)^(pi/3) = (sqrt(3) - sqrt(2))/2&&
  167.  
  168.  
  169.  
Advertisement
Add Comment
Please, Sign In to add comment