I am trying my best to divide the following:
Perform the following computations in binary arithmetic (Show how you perform the computations):
My attempt:
I watched:
Question: What is a more easy way, or approach to perform this, without really getting lost and confused?
EDIT: Due to confusion of the question above, I am simplifying this: N.B. It's not about straightly calculating it, but, documenting the exact steps how you arrive to that solution.
It states in the task,
Perform the following computations in binary arithmetic (Show how you perform the computations):
According to the solution paper, this is what I see.



Loosely phrased, the long division algorithm is performed as follows:
First, write the numbers with the number you are dividing by on the left and the number you are dividing into on the right, the number you are dividing into inside of a portion of a box for organizational sake.
Now, pull the first digit down of the number you are dividing into. Check to see if the number you are dividing by is less than or equal to that digit you pulled down. If it is, then subtract the number you are dividing by out of that digit you have pulled down as many times as you can so as to have the result still be non-negative. In binary, this can only be once or not at all, but in decimal it could be several times. Keep track of the result of the subtraction as well.
Write the number of times you subtracted your number in the corresponding position above the bar at the top, writing zero instead if you were not able to subtract the number.
Continue the process by using the result of the subtraction of the previous iteration (or the same digits/bits as were available the previous step in the case that no subtraction occurred) and append the next single additional digit/bit from the original number being divided into.
Again, repeat the process, check if the number you are dividing by is less than or equal, writing the number of times it can be subtracted away at the top, and keeping the result of that subtraction available for the next line to use.
The process ends when all digits of the number you are dividing into have been used up and the result of the subtraction is zero. This may mean that you need to continue past where the digits would normally have ended, at which point you should include the decimal point and append only as many zeroes after the decimal point as you need and drop those down.
The result after the first several iterations should look something like this:
If we were to complete the process we get as a final picture... this:
This is, again, annoying to do with such large numbers and such wide spaces between doing things. Graph paper where you can keep things perfectly lined up and your vision doesn't get blurred is helpful... but it can be better to break this up into larger meta-steps.
A much better thing to here is to recognize $110000$ is equal to $11\cdot 10000$, and recognize that $1111011\div 110000$ is equal to $(1111011\div 11)\div 10000$
Doing the same as above but dividing by $11$ instead gives more regular interaction and smaller numbers to deal with at each step:
After this, we divide by $10000$, but dividing by a number of this form is well known to be equivalent to just moving the decimal place an appropriate number of spaces.