Jason is listing out all numbers which have only the digits 0 and 1 in order. He begins writing the sequence: 1 , 1 0 , 1 1 , … What position is the number 101101 in this sequence?
If you liked this problem, check out the other problem in Application of Bases set.
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.
The given answer is not a number theory problem. If the question is considered as a number theory problem, its answer would be 63653. It means 101101 would be on 63653rd position.
E.g. 1,10,11,12,13...19,20,21,30,31,40,41,50,....91,100,101,102........101101 P.S.- This problem is not framed properly.
Log in to reply
Wait. It said that the person only list numbers with 0 or 1 only. So, yeah, your reasoning is wrong.
binary number convert into decimal number ..
good
piece of cake, just convert binary into decimal...!
The series will form the first n -term of binary sequence and the position of 1 0 1 1 0 1 is the sequence of n -term in decimal number. Therefore, to determine the position of 1 0 1 1 0 1 2 all we have to do is just converting 1 0 1 1 0 1 2 to base 1 0 . 1 0 1 1 0 1 2 = ( 1 × 2 5 + 0 × 2 4 + 1 × 2 3 + 1 × 2 2 + 0 × 2 1 + 1 × 2 0 ) 1 0 = 4 5
# Q . E . D . #
well solved...
i liked it........... :D
( 1 0 1 1 0 1 ) 2 = ( 1 × 2 5 ) + ( 0 × 2 4 ) + ( 1 × 2 3 ) + ( 1 × 2 2 ) + ( 0 × 2 1 ) + ( 1 × 2 0 ) = 3 2 + 0 + 8 + 4 + 0 + 1 = 4 5
gud
2^5 + 0 + 2^3 + 2^2 + 0 + 2^0 = 45 Uhm binary digits
here nth no# is in binary no#...means base 2 so there decimal value identity it's place value or say position in chronological order of 0 and 1
It is not a number theory question , it is a computer science.
Hello all,
as the binary series mentined as 1,10,11............,101101....., what is the the position 101101?
change those to decimals,
1,10,11......=1,2,3......,45....,i make them as an arithmetic series,
as for 1011011 = 45,
a=1, d=1, Tn=45,
Tn = a+(n-1)d
45 = 1+ (n-1)1
45 =1 + n -1
n=45,
Therefore, 101101 it is in 45th position in the series.....
1-1 10-2 11-3......................... 101101-45 here, sequence starts at 1 in 1st position and continued with a common difference of 1 up to 45. therefore, number position 1 1 10(2) 2 11(3) 3 .. .. 101101(45) 45
This question is as simple as tricky it looks if you have a sharp mind that can quickly get to work to the problem than you have no problem to solving it Using conversion of binary to decimal 101101=1x2^5+0x2^4+1x2^3+1x2^2+0x2^1+1x2^0=45 :P
Hell.......this question does not related with binary system .........considering with airthmatic means
Problem Loading...
Note Loading...
Set Loading...
We note that the nth number is just n in binary! Therefore, 101101 is the 101101(base 2)th number. 101101(base 2)=45, so we conclude that it is the 45th number in the list.