Import Bits library
Maple Code:
with(Bits)
String(2270, msbfirst)
convert(2270, binary)
String(2270)
convert(100011011110, decimal, binary)
String(53, msbfirst)
convert(53, binary)
convert(110101, decimal, binary)
String(130, msbfirst)
convert(130, binary)
convert(10000010, decimal, binary)
String(117, msbfirst)
convert(117, binary)
convert(1110101, decimal, binary)
#mathematics #maple
Here is the Mathematica video of the same numbers:
• How to convert integers to binary for...