Here: https://www.recordholders.org/downloads/worldcup/factorization-tutorial.pdf is to be found the method that the great Dutch mental calcualtor Willem Bouman uses for factoring.
From what I (think) I’ve understood from Bouman’s tutorial, he uses this approach:
To begin, he calculates the square root of the number we want to factor (let’s call it “n”). Once he’s calculated the square root of “n”, he tests the divisors less than the result of the square root (let’s call them “r”).
Then, he checks if “n” (mod “p” = 0), where “p” is the prime number in the list of divisors less than the result of the square root.
He uses the question “Is the number to be factored even or odd?” as a filter.
If it’s even, you only need to divide by 2; if the number is odd, he discards all the even divisors and focuses on the odd divisors like 3, 5, 7, 9, etc.
However, this is where my understanding ends, because when Mr. Bouman uses the number 6.953 as an example on page 4, he states that it should leave a remainder of 5 after being divided by the modulo 9:
6.953 = 5(9), which is 6.953 = 5 (mod 9). After this, he uses tables, and this is where my confusion lies.
If anyone can help me, I would be very grateful. I know it’s a difficult topic. Thank you very much.