Sistemas de Numeración

Descargar como pdf o txt
Descargar como pdf o txt
Está en la página 1de 21

INTRODUCCIÓN A

MICROPROCESADORES

Sistemas de
numeración

Ing. Johanna Villavicencio, Mgtr.


Ing. Johanna Villavicencio, Mgtr.
Tabla de contenidos
TEMAS DESTACADOS

Sistema de numeración Binario


Sistema de numeración Octal
Sistema de numeración Hexadecimal
Ejercicios

Ing. Johanna Villavicencio, Mgtr.


¿En que se usa?
Sis t e mas de nume ra ción

INFORMÁTICA
• Es utilizado para representar textos, datos o
simplemente para procesar instrucciones.

ELECTRÓNICA
• Electrónica digital, telecomunicaciones,
memorias, microcontroladores, etc.

Ing. Johanna Villavicencio, Mgtr.


Binario

El s istema b in ar io , es un s i stem a d e
n umer ac ión e n e l que los n úmer os s e
re prese ntan uti l i zan do s o lam ente dos
c i fr a s : c e r o y u n o ( 0 y 1 ) .

Ing. Johanna Villavicencio, Mgtr.


Binario

0 1 0 1 1
V
5v

0v t

Ing. Johanna Villavicencio, Mgtr.


GRAFICAR LAS SEÑALES DE LOS SIGUIENTES VALORES DIGITALES:

1.10001101
2.01010110
3.10101100
4.01001101
5.11010010
6.1010101100
7.0110011010
8.0011010101
9.0110100110
10.1100101011
Ing. Johanna Villavicencio, Mgtr.
Conversión de decimal a binario
256 128 64 32 16 8 4 2 1
15610
1 0 0 1 1 1 0 0

=100111002

2023 | Sistemas de numeración


Ing. Johanna Villavicencio, Mgtr.
CONVERTIR DE DECIMAL A BINARIO:

1.50
2.91
3.130
4.123
5.128
6.205
7.256
8.307
9.488
10.512
Ing. Johanna Villavicencio, Mgtr.
Conversión de binario a decimal
128 64 32 16 8 4 2 1
100110112
1 0 0 1 1 0 1 1

128 + 0 + 0 + 16 + 8 + 0 + 2 + 1
=15510
2023 | Sistemas de numeración
Ing. Johanna Villavicencio, Mgtr.
CONVERTIR DE BINARIO A DECIMAL:

1.10001101
2.01010110
3.10101100
4.01001101
5.11010010
6.1010101100
7.0110011010
8.0011010101
9.0110100110
10.1100101011
Ing. Johanna Villavicencio, Mgtr.
Octal

El s istema nu mér ico en base 8 s e


l l a ma octa l y uti l i za los díg itos d e l 0 a l
7 . En i nform átic a a vec es se u ti l i z a l a
n u m e ra ci ón o c ta l .
• 3 b its

Ing. Johanna Villavicencio, Mgtr.


Decimal Binario Octal
0 000 0

Octal 1
2
001
010
1
2
3 011 3
4 100 4
5 101 5
6 110 6
7 111 7
8 1000 10
9 1001 11
10 1010 12
11 1011 13
12 1100 14
13 1101 15
14 1110 16

2023 | Sistemas de numeración 15 1111 17


16 Ing. Johanna10000
Villavicencio, Mgtr. 20
Conversión de binario a octal
100110112 Binario Octal
000 0
001 1
10 011 011 010 2
010 011 011 011 3
2 3 3 100 4
101 5
2338 110 6
Ing. Johanna Villavicencio, Mgtr. 111 7
Conversión de octal a binario
4728 Binario Octal
000 0
001 1
010 2
4 7 2 011 3
100 111 010 100 4
101 5
1001110102 110 6
Ing. Johanna Villavicencio, Mgtr. 111 7
Hexadecimal

Es e l s iste ma de nu merac i ón pos ic i on a l


q ue tie ne co mo base e l 16 . Su uso actua l
es tá mu y vi n cu la do a l a in form ática , pues
l o s com pu ta dores suel e n uti l i zar e l b yte u
oc te to c omo un i dad bás i ca d e me mor ia ; y,
d eb i do a q ue u n byte repr ese nta 2 ^8
va l o r e s p o s i b l e s .
• 4 b i ts
Ing. Johanna Villavicencio, Mgtr.
Decimal Binario Octal Hexadecimal
0 0000 0 0

Hexadecimal 1
2
0001
0010
1
2
1
2
3 0011 3 3
4 0100 4 4
5 0101 5 5
6 0110 6 6
7 0111 7 7
8 1000 10 8
9 1001 11 9
10 1010 12 A
11 1011 13 B
12 1100 14 C
13 1101 15 D
14 1110 16 E
15 1111 17 F
Ing. 16 10000
Johanna Villavicencio, Mgtr. 20 10
Binario Hexadecimal
0000 0

Conversión de binario a 0001


0010
1
2
11101001102
hexadecimal 0011 3
0100 4
0101 5
0110 6
0111 7
11 1010 0110 1000 8
0011 1010 0110 1001 9
1010 A
3 𝐴 6 1011 B
1100 C

3𝐴616 1101
1110
D
E
1111 F
Ing. Johanna Villavicencio, Mgtr.
Binario Hexadecimal
0000 0

Conversión de hexadecimal a binario 0001


0010
1
2

9𝐹216 0011
0100
3
4
0101 5
0110 6
0111 7
1000 8
9 𝐹 2 1001 9
1001 1111 0010 1010 A
1011 B
1100 C

1001111100102 1101
1110
D
E
1111 F
Ing. Johanna Villavicencio, Mgtr.
Decimal Relación entre los
sistemas de
numeración
Por medio del Sistema de
numeración binario se puede realizar
Binario una transformación entre cualquier
Sistema de numeración.
Hexadecima Binario 01
Octal
l
Octal 01234567
Decimal 0123456789
Hexadecimal 0 1 2 3 4 5 6 7 8 9 A B C D E F

Ing. Johanna Villavicencio, Mgtr.


COMPLETAR LA SIGUIENTE TABLA: (Adjuntar el procedimiento)
DECIMAL BINARIO OCTAL HEXADECIMAL
8
25
10010
1011101
130
743
63
9E
143
2F8
Ing. Johanna Villavicencio, Mgtr.
Tocc i, R y W id mer, N (2 003) . Siste mas
D i g i ta l es . Ne w Jers e y: Pe arson
Ed u c a ció n .

N eb o jsa , M . (1 997) mikroC PRO for


Bibliografía
PIC | Mikro e . Ser b ia . Recu pera do de
h ttp ://w ww.mikro e .com/mi kroc/pi c/

Ba nz i , Cuar tie lles, Igo e, M arti no y


Me llis . (2 003) Ard u in o . Ita lia .
R e c u p erad o de h ttp s ://w ww.ard ui n o .cc

Ja meso n, J. (1 988) La bcen ter


El e ctro n ics . Recu pera do de
h ttp s ://w ww.la bcen ter.com/

M acho , J. (2 015) Ar du i no . R ecup erad o


de h ttp s ://ww w.prome te c .n et

2023 | Sistemas de numeración


Ing. Johanna Villavicencio, Mgtr.

También podría gustarte