Answer:
110011
Step-by-step explanation:
The tedious way to do this is to divide by 2 until the quotient is 0, noting remainders at each step:
Taken from bottom to top, the list of remainders comprises the binary number: 110011.
___
Alternatively, you can convert the number to hexadecimal (base-16) or octal (base-8), then make the simple conversions from those digits to binary. In octal, we have ...
Then the number in octal is 51 = 63₈. Your familiarity with binary lets you write the binary number from memory, since you recall 6 = 110₂ and 3 = 011₂. Each octal digit must be expressed as three binary digits (or bits) in order to maintain appropriate place values.
That is, ...
63₈ = 110011₂
_____
Comment on octal-binary conversion
The binary values of the digits 0-7 are ...
Three binary bits can express numbers 0-7 as shown. So, using octal as an intermediate base in doing the conversion to binary lets you do the conversion 3 bits at a time, instead of one bit at a time.
Likewise, four binary bits can express numbers 0-15, so hexadecimal as an intermediate base lets you do the conversion 4 bits at a time: 51/16 = 3 r 3 ⇒ 0011 0011₂.