Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. Using the limit definition for a derivative, I am trying to solve for the derivative of (4) / (X^.5)
  2.  
  3.  
  4. the REAL answer is (-2)/(x^(3/2))
  5.  
  6. But I ended up with (-4)/(x^(3/2))
  7.  
  8. Here are my steps, as best I can write them on in text box.
  9.  
  10. so starting out we have (4 / ((x + h) ^ (.5)) - 4 / ((x)^(.5))) / h
  11.  
  12. ignoring the h on the very bottom for a while,
  13.  
  14. multiply the left side by (( x + h )^(.5) * (x ^ .5)) / ((x + h)^(.5) * (x ^ .5)) and the right side by ((x + h) ^(.5) (x + h) ^ (.5)) / ((x + h)^.5 * (x + h)^.5) (so that the denominator can eventually end up as a 3/2 power, and that the denominator is even)
  15.  
  16. Combining the now similar denominators, we get:
  17.  
  18. (sorry about mixing up how I write things, I'm just trying to write this quickly)
  19.  
  20. (4 * (X ^ .5) * ((X + h) ^ .5) - (4 * ((X + h)^.5) * ((X + h)^.5))
  21. ______________________________________…
  22. (X^.5)((X + h)^.5)((X + h)^.5)
  23.  
  24. all over h.
  25.  
  26. simplify the numerator, we use the distributive property to pull out 5, then we multiply the two equal square roots on the right side.
  27.  
  28. 4 * (X^.5((X + h)^.5) - X - h)
  29.  
  30. Split up that whole X we have into X^.5 * X^.5, then we use the distributive property on the two terms to get:
  31.  
  32. 4 * (X^.5((X + h)^.5 - X^.5) - h)
  33.  
  34. Replace the leftmost h with 0, we can cancel out that entire section, because it would leave us with:
  35.  
  36. 4 * (X^.5 * ((X + 0)^.5 - (X^.5)) - h) = 4 * (0 - h) = -4h
  37. Now that we have reduced the numerator, we can cancel the very bottom h out with the one left on the top, leaving us with:
  38.  
  39. -4 / (X - h)^.5*(X - h)^.5*(X)^.5
  40.  
  41. and by replacing the remaining 2 h's with 0, we get
  42.  
  43. -4 / (X^.5)(X^.5)(X^.5) = (-4) / (X^ (3/2))
  44.  
  45. which is 2 times what the real answer is supposed to be.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement