I've been working on this for a few days. After getting ridiculous double errors, it seemed using BigDecimal was the way to go. Here's the code: http://pastebin.com/rpbNJnHH
I've never had to use BigDecimal before, so I was hoping someone here could give it a look over and make sure there weren't any stupid mistakes. I've gone through and checked as much as I could be sure of though.
Edit: Sorry, this is vague. So, I was using the double primitive type, but of course doing something like for(double i = 0; i < 1; i += .05) will give imprecise values for i (you'll get things like .0499999999 or .249999999999). So I switched to BigDecimal. However, I never used BD before, so I was hoping someone could look over my code and make sure I was using it correctly (i.e. I wasn't losing precision somewhere). Thanks