NOTE: First let me be clear that this question is related to a side project I've been working on for fun. This is NOT going to be used in any production/professional code. So answers such as "why did you do this your self when you could have just used ________ library?" are not helpful.
So for the last year or so I've been doing working quite a bit with numerical algorithms, and during that time I messed around a lot with floating point numbers and ways to speed up calculations. So as a fun little side project and as a way to test everything I had learned about them, I've spent the last few months developing a floating point class in my spare time. So far everything appears pretty well and I'm very pleased with it.
So now what I've been trying to do is come up with ways to show that the four basic arithmetic operations are working correctly. I've tested it with several long summations such as the harmonic series and several pi calculations and everything appears to be working correctly.
Are there any other ways that you guys can think of? Any long calculations that have a known answer that you think might be helpful?
Thank for any help you can provide.