Advertisement
tommig

Problem 3f

Oct 17th, 2015
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. U(k) = (-1)^k*k
  2.  
  3. U(k+1) = (-1)^(k+1) * (k+1)
  4. = (-1)^k*(-1)^1 * (k+1) - Separate indicies
  5. = (-1)^k*(-1) * (k+1)
  6. = -(-1)^k * (k+1)
  7. = -(-1)^k*k + -(-1)^k
  8. = -U(k) - (-1)^k - (-1)^k*k = U(k)
  9. = U(k) - 2U(k) - (-1)^k - +2U(k), -2U(k)
  10. = U(k) - 2(k*(-1)^k) - (-1)^k - Expand U(k)
  11. = U(k) - (2k + 1)*(-1)^k - Collect like terms - (-1)^k
  12.  
  13. U(k+1) = U(k) - (2k + 1)*(-1)^k
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement