New Number Methods

You need to answer the question in bold text. However, you only have one clue: 10110 = 22. What does 111111111 equal?


The answer is 511.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

3 solutions

As 10110 10110 = = 22 22 is a conversion of binary to base 10, we can model the problem using Python: \\

print(str(int("111111111", 2)))
# Returns 511

111111111 111111111 converted to base 10 is 511 \boxed{511}

clever trick @§martie On Brilliant

Vishruth K - 2 months, 3 weeks ago
Saya Suka
Mar 19, 2021

111111111 = 1000000000 - 1
Answer = 2^9 - 2^0 = 512 - 1 = 511

Interliantiful!

Vishruth K - 2 months, 3 weeks ago
Vishruth K
Mar 19, 2021

10110 in binary equals 16 + 4 + 2 = 22. 111111111 in binary equals 256 + 128 + 64 + 32 + 16 + 8 + 4 + 2 + 1 = 511. Thus, the answer is 511 .

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...