1 is 000001
2 is 000010
. . .
50 is 110010
You should be able to do the rest. For 50 as an example, you have 1*32 + 1*16 + 0*8 + 0*4 + 1*2 + 0*1 = 50.
Good luck with octal and hexidecimal!
2006-08-17 04:54:25
·
answer #1
·
answered by Anonymous
·
1⤊
0⤋
All number systems are constructed as
an*b^n + a(n-1)*b^(n-1) + a2*b² + a1*b + a0
where the a come from the set {0, 1, (b-1)} and are called the 'digits' of the number system, and the b are called the 'base' of the number system.
Thus 357(base 10) = 3*100 + 5*10 + 7 and
110010(base 2) = 32 + 16 + 2 = 50
The easiest way to go from base 10 to base 2 is use a calculator that has both bases.
Doug
2006-08-17 05:10:13
·
answer #2
·
answered by doug_donaghue 7
·
0⤊
0⤋
The first few should get you started. You'll need 6 bits to get up to 50. To figure out how many bits you need, you take 2^b power, with b equaling the number of bits. 2^2 =4, so 2 bits would get you to 3. 2^3 = 8, so 3 bits would get you to 7. 2^4 = 16, so 4 bits would get you to 15, 2^5 = 32, so 5 bits gets you to 31, etc.
1) 000001
2) 000010
3) 000011
4) 000100
5) 000101
6) 000110
7) 000111
8) 001000
9) 001001
10) 001010
etc. See the pattern? It's just like counting in base 10, except instead of rolling over to the next digit when you pass 9, you roll over to the next bit when you pass 1.
2006-08-17 04:59:55
·
answer #3
·
answered by Bob G 6
·
1⤊
0⤋
Base 2 is binary, 8,4,2,1
1= 1
2= 10
3= 11
4= 100
5=101
6=110
7=111
8=1000
9=1001
10=1010
and so on
Good luck with computer 101
2006-08-17 04:59:54
·
answer #4
·
answered by Anonymous
·
1⤊
0⤋
Base 10 / Base 2
1/1
2/10
3/11
4/100
5/101
6/110
7/111
8/1000
rest should follow...
2006-08-17 04:54:37
·
answer #5
·
answered by starr_man 1
·
1⤊
0⤋
it truly is meant to be an section the position people can help those with recognize-how and recognize-how. There are alot of solutions to questions that could be appeared up yet there are alot which won't be able to. Even lots of those that may are both not user-friendly to appreciate or not totally comprehensible without others' personal journey. those who worry about a thanks to word a question so it would not get deleted, don't have a clue what this web site is all about or they would not ought to rigidity about it. a lot of people are starting to be acquaintances from being in this web site and that is wonderful. y/a artwork force recognizes that danger and has made ideas for that taking position, even if the q/a communicate board itself isn't a socializing communicate board no count number what number of people imagine it truly is and attempt to make it such.
2016-11-05 00:28:10
·
answer #6
·
answered by jenniffer 4
·
0⤊
0⤋
1 = 1
2 = 10
3 = 11
4 = 100
5 = 101
6 = 110
7 = 111
8 = 1000
9 = 1001
10 = 1010
11 = 1011
12 = 1100
13 = 1101
14 = 1110
15 = 1111
16 = 10000
17 = 10001
18 = 10010
19 = 10011
20 = 10100
21 = 10101
22 = 10110
23 = 10111
24 = 11000
25 = 11001
26 = 11010
27 = 11011
28 = 11100
29 = 11101
30 = 11110
31 = 11111
32 = 100000
33 = 100001
34 = 100010
35 = 100011
36 = 100100
37 = 100101
38 = 100110
39 = 100111
40 = 101000
41 = 101001
42 = 101010
43 = 101011
44 = 101100
45 = 101101
46 = 101110
47 = 101111
48 = 110000
49 = 110001
50 = 110010
2006-08-17 05:51:22
·
answer #7
·
answered by jimbob 6
·
0⤊
0⤋
Use your windows calculator and do it yourself as follows:
Enter a number with the 'dec' radio button checked. Then check the 'Bin' button and you will have the base two form.
Example: 2 in base 2 is 10.
2006-08-17 04:54:36
·
answer #8
·
answered by Anonymous
·
0⤊
0⤋
Not 100% sure about this, but I think Base 2 goes something like this:
1 = 1 in Base 2
2 = 2
3 = 11 in Base 2
4 = 12
5 = 21
6 = 22
7 = 31
8 = 32
9 = 41
10 = 42
11 = 51
12 = 52
13 = 61
14 = 62
15 = 71
16 = 72
17 = 81
18 = 82
19 = 91
20 = 92
21 = 101
22 = 102
And so on, and so on...
2006-08-17 04:54:46
·
answer #9
·
answered by sarge927 7
·
0⤊
4⤋
10, 20, 30, 40, 50
2006-08-17 04:53:20
·
answer #10
·
answered by Kevin H 7
·
0⤊
2⤋