Karatsuba's equation to reduce the amount of time it takes in brute force multiplication is as follows (I believe this is a divide-and-conquer algorithm):
$ x y = 10^n(ac) + 10^{n/2}(ad + bc) + bd $
My question is this. Where did the $10^{n/2}$ and $10^n$ come from?
Thanks