Advertisement
UF6

Problem 3 Final

UF6
May 8th, 2016
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.52 KB | None | 0 0
  1. n = 10000
  2. while n>=1:
  3.     a=(1/-2*n+1)
  4.     b=(1/2*n)
  5.     print(a)
  6.     print(b)
  7. else n>=0:
  8.     c=(1/2*n+1)
  9.     d=(1/-2*n)
  10.     print(c)
  11.     print(d)
  12. a+b+c+d
  13. #I'm having a few issues with this, I'm attaching some of my written work to show I solved it. I understand how this works, and this can be broken down into four parts that combine together to form a whole series.
  14. #https://drive.google.com/file/d/0By4QogT9U6sTVVBSV3dEMS1RQWc/view?usp=sharing
  15. #https://drive.google.com/file/d/0By4QogT9U6sTU0l3ZFFiQUZmeW8/view?usp=sharing
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement