Suppose I have to a big number like 1234567897531 with another big number like 23456789, the long division method would be algorithmically expensive as it involves intuition to find appropriate multiple for portions for the divisors.
Conventionally Scientific Programming languages would strip divisor down to precision system's ALU can handle in a single shot (could be the 64-bit value at most in conventional PCs).
What am I doing this? I am trying to develop an open-source Package for Performing operations on Big numbers. Check out my work : My Github Repos for Big Numbers
Note that that if $n_1=m_1\cdot 10^{e_1}$ and $n_2=m_2\cdot 10^{e_2}$, then $\dfrac{n_1}{n_2}=\dfrac{m_1}{m_2}\cdot 10^{e_1-e_2}$.