A Simple Continued Fraction Calculator
Briefly

Instantiation of simple continued fractions (SCF) can be done using a numerator/denominator, a double, or a List(Of BigInteger) object, allowing for various representations of fractions.
Operational rules in SCFs correspond to basic arithmetic operations (-, +, *, /), providing a comprehensive system for mathematical computations with continued fractions.
While the SCF calculator can handle small or large Double values like 1e-100 or 1e+100, the ToDouble() method is limited by the maximum and minimum constraints of Double.
The ToNumDen() method in the calculator overcomes the limitation of ToDouble() by returning a BigInteger array with the calculated numerator and denominator of the entire SCF, ensuring precise representations of the fractions.
Read at CodeProject
[
]
[
|
]