How to convert integers to binary form and binary strings to base ten using Wolfram Mathematica

Опубликовано: 19 Октябрь 2024
на канале: tondekush
106
0

A basic introduction on number bases
Converting integers to binary notation

Mathematica code:
BaseForm[2270, 2]
FromDigits["100011011110", 2]
IntegerDigits[2270, 2]
IntegerString[2270, 2]
BaseForm[53, 2]
BaseForm[117, 2]
FromDigits["1110101", 2]
#mathematics #wolfram #binary