How to do division accurately and instaneously
Hey errybody welcome to HOW TO DO DIVISION and such
something to note is that this is in base 10 but the same concept can be applied for the base 2 number system
everyone knows division is overglorified subtraction (its so pretentious) so lets reduce it to its basics shall we
the first problem is getting them to scale, like if you have 60/.0000000000003, not a good situation
what you want to do is get y (x/y) into this scale: X >= Y > (X * 10^-1)
For example, if the X was 50, then the range would be 50-5 (this ensures that the digits are the same)
Now if we apply that to 60/.0000000000003 , you will get 60/30 * 10^14 NOTE: YOU MUST KEEP 10^14 MULTIPLIED AGAINST 1 SOMEWHERE (it ensures that you will be able to re-establish scale after because 60/30 is not the same as 60/.0000000000003, just more calculable)
Now the good part, lets have a division example that doesnt work (like 65/400)
65/40 * 10^-1
65-1(40) = 25
25-6(4) = 1
1-2(.4)=.2
.2-5(.4)=0!
This all means that 65/400 is 1.625 * 10^-1, if we do 65/400 (like in a real calculator)
HEY LOOK IT WORKED!
Now go and divide a bunch :D