---- Enter the number of digits to calculate for the division (Max 10000) ---- Enter the numerator of the fraction ---- Enter the denominator of the fraction ---- See the result in a list ---- Hold space to see the code behind the calculation of the remainder This is done using a long division algorithm and can instantly calculate up to 5000 digits. Firstly, the quotient is calculated by dividing the dividend by the divisor and taking the floor of the result for the quotient. For the remainder, A is set to dividend mod divisor, then sets the remainder to blank and by repeating n number of digits times, variable A is multiplied by 10. The digit is calculated by taking the floor of A / divisor and A is set to A - digit * divisor. Lastly, the digit is added to the remainder and the cycle repeats the number of digits times. -------- Released: 6 Sep 2019