please convert decimal numbers to binary

32.75 10th power

if you mean 32.75^10, that would be

100000.11^1010 =

wait for it . . .

1010000101100111001011111011001110100010011111010010.00100001001010111001

courtesy of

www.exploringbinary.com/binary-calculator/

steve couild you help me

Thanks Steve

To convert a decimal number to binary, you can follow these steps:

Step 1: Separate the whole and fraction parts of the decimal number.
For example, let's consider the number 32.75.
Whole part: 32
Fraction part: 0.75

Step 2: Convert the whole part to binary.
To convert the whole part (32), you can repeatedly divide it by 2 and record the remainders until the quotient becomes zero. The binary representation is the sequence of remainders read in reverse order.

32 / 2 = 16 (remainder 0)
16 / 2 = 8 (remainder 0)
8 / 2 = 4 (remainder 0)
4 / 2 = 2 (remainder 0)
2 / 2 = 1 (remainder 0)
1 / 2 = 0 (remainder 1)

Reading the remainders in reverse order, the binary representation of the whole part is: 100000.

Step 3: Convert the fraction part to binary.
To convert the fraction part (0.75), you can multiply it by 2 and record the integral part of the result. Repeat this process until the fractional part becomes zero or until you achieve the desired precision.

0.75 x 2 = 1.5 (integral part = 1)
0.5 x 2 = 1.0 (integral part = 1)

Recording the integral parts, the binary representation of the fraction part is: 11.

Step 4: Combine the whole and fraction parts.
Concatenate the binary representation of the whole part and the fraction part to obtain the binary representation of the decimal number:

Whole part: 100000
Fraction part: 11

32.75 in binary is: 100000.11