SlideShare une entreprise Scribd logo
1  sur  25
5.2 NUMBERING SYSTEMS
Many number systems are in use in digital
technology.
The most common are :
• Decimal
• Binary
• Octal
• Hexadecimal
DECIMAL SYSTEM
• Composed of 10 numerals or symbols
• Using these symbols as digits of a number, can
  express any quantity.
• Called the base-10 system because it has 10
  digits.
• 0, 1, 2, 3, 4, 5, 6, 7, 8, 9.
DECIMAL EXAMPLE
•   3.1410
•   53210
•   1082410
•   64900010
BINARY SYSTEM
• There are only two symbols or possible digit
  values, 0 and 1.
• This base-2 system can be used to represent
  any quantity that can be represented in
  decimal or other base system
BINARY EXAMPLE
•   1110
•   1011110
•   1111011100
•   10000101111011
OCTAL SYSTEM
• The octal number system has a base of eight
• Eight possible digits: 0,1,2,3,4,5,6,7
OCTAL EXAMPLE
•   Octal Example
•   5410
•   765421
•   1047664
•   4123170137
HEXADECIMAL SYSTEM
• The hexadecimal system uses base 16.
• It uses the digits 0 through 9 plus the letters A,
  B, C, D, E, and F as the 16 digit symbols.
• 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F
HEXADECIMAL EXAMPLE
•   BD
•   452EA
•   E451B2CD3
•   35412BABE
NUMBERING CONVERSION

             OCTAL




DECIMAL     BINARY




          HEXADECIMAL
DECIMAL TO BINARY CONVERSION
Reverse of Binary-To-Decimal Method :
      20   21   22   23   24   25   26    27  28  29
      1    2    4    8    16   32   64   128 256 512


• 2710 = 16+8+0+2+1
       = 11011
• 18110 = 128+0+32+16+0+4+0+1
       = 10110101
DECIMAL TO BINARY CONVERSION
Repeat Division Method :
                           EG : 18110
                           181/2 = 90 balance 1
EG : 2710
                           90/2 = 45 balance 0
27/2 = 13 balance 1
                           45/2 = 22 balance 1
13/2 = 6 balance 1
                           22/2 = 11 balance 0
6/2 = 3 balance 0
                           11/2 = 5 balance 1
3/2 = 1 balance 1
                           5/2 = 2 balance 1
1/2 = 0 balance 1
                           2/2 = 1 balance 0
                           1/2 = 0 balance 1
Result : 2710= 110112
                           Result : 18110=
                           101101012
DECIMAL TO OCTAL CONVERSION
Ex : 17710             Ex : 398510
177/8 = 22 balance 1   3985/8 = 498 balance 1
22/8 = 2 balance 6     498/8 = 62 balance 2
2/8 = 0 balance 2      62/8 = 7 balance 6
Result 17710 = 2618    7/8 = 0 balance 7
                       Result 398510 = 76218
DECIMAL TO HEXADECIMAL

Ex : 37810
378/16 = 23 balance 10 = (A)
23/16 = 1 balance 7
1/16 = 0 balance 1
Result 37810 = 17A16
DECIMAL TO HEXADECIMAL
Ex : 694210
6942/16 = 433 balance 14 = (E)
433/16 = 27 balance 1
27/16 = 1 balance 11 = (B)
1/16 = 0 balance 1

Result 37810 = 1B1E16
BINARY TO DECIMAL CONVERSION
   20   21   22   23   24   25   26    27  28  29
   1    2    4    8    16   32   64   128 256 512

 110112
 = 24+23+02+21+20
 = 16+8+0+2+1
 = 2710
 101101012
 = 27+06+25+24+03+22+01+20
 = 128+0+32+16+0+4+0+1
 = 18110
BINARY TO OCTAL CONVERSION
      0    1     2     3     4     5     6     7

     000   001   010   011   100   101   110   111

• Example:
• 100 111 0102 = (100) (111) (010)2 = 4 7 28
• 1 101 0102 = (001) (101) (010)2 = 1 5 28
BINARY TO HEXADECIMAL
0   0000
1   0001
2   0010
3   0011
4   0100     EXAMPLE :
5   0101
6   0110
7   0111     101 11012 = (101) (1101)2 = 5 D16
8   1000
9   1001
A   1010     11 1001 10112 = (11) (1001) (1011)2 = 3 9 B16
B   1011
C   1100
D   1101     1011 0010 11112 = (1011) (0010) (1111)2 = B 2 F16
E   1110
F   1111
OCTAL TO DECIMAL CONVERSION
• Example :
• 2378 = 2(82)+ 3(81)+ 2(80) = 15910
• 95348 = 9(83)+ 5(82)+ 3(81)+ 4(80) = 495610
OCTAL TO BINARY CONVERSION
      0    1     2     3     4     5     6     7

     000   001   010   011   100   101   110   111


• Example:
• 4 7 28 = (100) (111) (010)2 = 100 111 0102
• 1 5 28 = (001) (101) (010)2 = 1 101 0102
HEXADECIMAL TO DECIMAL
• Example :
• 2E16 = 2(161) + 14 (160) = 4610

• 9BC316 = 9(163) + 11 (162) +12 (161) +3 (160) =
           3987510
HEXADECIMAL TO BINARY
0   0000
1   0001
2   0010
3   0011   • 5 D16 = (101) (1101)2 =101 11012
4   0100
5   0101
6   0110   • 3 9 B16 = (11) (1001) (1011)2 =11 1001 10112
7   0111
8   1000
9   1001   • B 2 F16 = (1011) (0010) (1111)2 =1011 0010 11112
A   1010
B   1011
C   1100
D   1101
E   1110
F   1111
NUMBERING CONVERSION
                       OCTAL




                      Table (div 3 )
                                       Table (div 3)
           X/2
DECIMAL               BINARY
          (+2 x )




                      Table (div 4)
                                       Table (div 4)
                    HEXADECIMAL
CONVERSION VALUE
                              Binary - Hexa
  Power 2
                                 0   0000
20      1                        1   0001     Binary - Octal
                   Power 8
21      2                        2   0010       0    000
22      4     80          1      3   0011       1    001
23      8     81          8      4   0100
                                                2    010
24     16     82         64      5   0101
                                 6   0110       3    011
25     32     83        512
                                 7   0111       4    100
26     64     84       4096
                                 8   1000       5    101
27     128    85      32768      9   1001
                                                6    110
28     256    86     262144      A   1010
                                                7    111
29     512    87    2097152      B   1011
210   1024                       C   1100
                                 D   1101
                                 E   1110
                                 F   1111

Contenu connexe

Tendances

EASA part 66 module exam Module - 5 EFIS(Electronic Flight instrument system)
EASA part 66 module exam Module - 5 EFIS(Electronic Flight instrument system)EASA part 66 module exam Module - 5 EFIS(Electronic Flight instrument system)
EASA part 66 module exam Module - 5 EFIS(Electronic Flight instrument system)Nisarg Mistry
 
EASA Part 66 Module 4 diode
EASA Part 66 Module 4 diodeEASA Part 66 Module 4 diode
EASA Part 66 Module 4 diodeJoha Rahman
 
EASA PART-66 MODULE 5.12 : ELECTRONICS SENSITIVE DEVICES
EASA PART-66 MODULE 5.12 : ELECTRONICS SENSITIVE DEVICESEASA PART-66 MODULE 5.12 : ELECTRONICS SENSITIVE DEVICES
EASA PART-66 MODULE 5.12 : ELECTRONICS SENSITIVE DEVICESsoulstalker
 
EASA Part 66 Module 5 software management control
EASA Part 66 Module 5 software management controlEASA Part 66 Module 5 software management control
EASA Part 66 Module 5 software management controlAnjani Kumar singh
 
5.1 Electronic Instrument Systems
5.1 Electronic Instrument Systems5.1 Electronic Instrument Systems
5.1 Electronic Instrument Systemslpapadop
 
EASA PART-66 MODULE 5.4 : DATA BUSES
EASA PART-66 MODULE 5.4 : DATA BUSESEASA PART-66 MODULE 5.4 : DATA BUSES
EASA PART-66 MODULE 5.4 : DATA BUSESsoulstalker
 
EASA Part-66 Module 5.6 : Basic Computer Structure
EASA Part-66 Module  5.6 : Basic Computer StructureEASA Part-66 Module  5.6 : Basic Computer Structure
EASA Part-66 Module 5.6 : Basic Computer Structuresoulstalker
 
5.15 Typical electronic digital aircraft systems
5.15 Typical electronic digital aircraft systems5.15 Typical electronic digital aircraft systems
5.15 Typical electronic digital aircraft systemslpapadop
 
Master EASA presentation
Master EASA presentation Master EASA presentation
Master EASA presentation Craig Pollitt
 
Aircraft Communication Topic 5 selcal and data link system
Aircraft Communication  Topic 5 selcal and data link systemAircraft Communication  Topic 5 selcal and data link system
Aircraft Communication Topic 5 selcal and data link systemIzah Asmadi
 
Flight data recorder
Flight data recorderFlight data recorder
Flight data recorderMustahid Ali
 
5.3 Data conversion
5.3 Data conversion5.3 Data conversion
5.3 Data conversionlpapadop
 
Traffic alert and Collision Avoidance System
Traffic alert and Collision Avoidance System Traffic alert and Collision Avoidance System
Traffic alert and Collision Avoidance System greeshma6225
 
Fly by wire show
Fly by wire showFly by wire show
Fly by wire showAswin_MK
 
5.4 Data Bus
5.4 Data Bus5.4 Data Bus
5.4 Data Buslpapadop
 
Aircraft communication-systems
Aircraft communication-systemsAircraft communication-systems
Aircraft communication-systemsKrishikesh Singh
 
Cockpit voice recorder
Cockpit voice recorder Cockpit voice recorder
Cockpit voice recorder Shahnur Munna
 

Tendances (20)

EASA part 66 module exam Module - 5 EFIS(Electronic Flight instrument system)
EASA part 66 module exam Module - 5 EFIS(Electronic Flight instrument system)EASA part 66 module exam Module - 5 EFIS(Electronic Flight instrument system)
EASA part 66 module exam Module - 5 EFIS(Electronic Flight instrument system)
 
EASA Part 66 Module 4 diode
EASA Part 66 Module 4 diodeEASA Part 66 Module 4 diode
EASA Part 66 Module 4 diode
 
EASA PART-66 MODULE 5.12 : ELECTRONICS SENSITIVE DEVICES
EASA PART-66 MODULE 5.12 : ELECTRONICS SENSITIVE DEVICESEASA PART-66 MODULE 5.12 : ELECTRONICS SENSITIVE DEVICES
EASA PART-66 MODULE 5.12 : ELECTRONICS SENSITIVE DEVICES
 
EASA Part 66 Module 5 software management control
EASA Part 66 Module 5 software management controlEASA Part 66 Module 5 software management control
EASA Part 66 Module 5 software management control
 
5.1 Electronic Instrument Systems
5.1 Electronic Instrument Systems5.1 Electronic Instrument Systems
5.1 Electronic Instrument Systems
 
EASA PART-66 MODULE 5.4 : DATA BUSES
EASA PART-66 MODULE 5.4 : DATA BUSESEASA PART-66 MODULE 5.4 : DATA BUSES
EASA PART-66 MODULE 5.4 : DATA BUSES
 
EASA Part-66 Module 5.6 : Basic Computer Structure
EASA Part-66 Module  5.6 : Basic Computer StructureEASA Part-66 Module  5.6 : Basic Computer Structure
EASA Part-66 Module 5.6 : Basic Computer Structure
 
5.15 Typical electronic digital aircraft systems
5.15 Typical electronic digital aircraft systems5.15 Typical electronic digital aircraft systems
5.15 Typical electronic digital aircraft systems
 
Master EASA presentation
Master EASA presentation Master EASA presentation
Master EASA presentation
 
Aircraft Communication Topic 5 selcal and data link system
Aircraft Communication  Topic 5 selcal and data link systemAircraft Communication  Topic 5 selcal and data link system
Aircraft Communication Topic 5 selcal and data link system
 
Flight data recorder
Flight data recorderFlight data recorder
Flight data recorder
 
5.3 Data conversion
5.3 Data conversion5.3 Data conversion
5.3 Data conversion
 
Traffic alert and Collision Avoidance System
Traffic alert and Collision Avoidance System Traffic alert and Collision Avoidance System
Traffic alert and Collision Avoidance System
 
Fly by wire show
Fly by wire showFly by wire show
Fly by wire show
 
5.4 Data Bus
5.4 Data Bus5.4 Data Bus
5.4 Data Bus
 
Fly by wire ppt pa1
Fly by wire ppt pa1Fly by wire ppt pa1
Fly by wire ppt pa1
 
Avionics
AvionicsAvionics
Avionics
 
Aircraft communication-systems
Aircraft communication-systemsAircraft communication-systems
Aircraft communication-systems
 
Avionics
AvionicsAvionics
Avionics
 
Cockpit voice recorder
Cockpit voice recorder Cockpit voice recorder
Cockpit voice recorder
 

Similaire à EASA Part 66 Module 5.2 : Numbering System

Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...JanakiramanLohitha
 
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...NikxzsLeonTormon
 
Conversiones binario decimal/ decimal binario
Conversiones binario decimal/ decimal  binarioConversiones binario decimal/ decimal  binario
Conversiones binario decimal/ decimal binarioaidalyb2
 
Taller De Conversiones B/D D/B
Taller De Conversiones B/D D/BTaller De Conversiones B/D D/B
Taller De Conversiones B/D D/Bnathy76hnz
 
Digital logic design lecture 03
Digital logic design   lecture 03 Digital logic design   lecture 03
Digital logic design lecture 03 FarhatUllah27
 
Taller+de+conversiones+bd+db (1)
Taller+de+conversiones+bd+db (1)Taller+de+conversiones+bd+db (1)
Taller+de+conversiones+bd+db (1)yeisonarley17
 
Number systems presentation
Number systems presentationNumber systems presentation
Number systems presentationJiian Francisco
 
Taller+de+conversiones+bd+db
Taller+de+conversiones+bd+dbTaller+de+conversiones+bd+db
Taller+de+conversiones+bd+dbDaniiGonzalez98
 
Taller de conversiones B/D, D/B
Taller de conversiones B/D, D/BTaller de conversiones B/D, D/B
Taller de conversiones B/D, D/BDaniiGonzalez98
 
Tallerdeconversionesbddb 140929163335-phpapp01
Tallerdeconversionesbddb 140929163335-phpapp01Tallerdeconversionesbddb 140929163335-phpapp01
Tallerdeconversionesbddb 140929163335-phpapp01SebastIan Ézcudero
 
Number system
Number systemNumber system
Number systemkashee99
 
digital-electronics.pptx
digital-electronics.pptxdigital-electronics.pptx
digital-electronics.pptxsulekhasaxena2
 
Understand data representation on CPU 1
Understand data representation on CPU 1Understand data representation on CPU 1
Understand data representation on CPU 1Brenda Debra
 
Week 5 - Number Systems.pdf
Week 5 - Number Systems.pdfWeek 5 - Number Systems.pdf
Week 5 - Number Systems.pdfHama302631
 
01.number systems
01.number systems01.number systems
01.number systemsrasha3
 

Similaire à EASA Part 66 Module 5.2 : Numbering System (20)

Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
 
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
Solution_Manual_Digital_Design_With_an_Introduction_to_the_Verilog_HDL_5th_Ed...
 
Conversiones binario decimal/ decimal binario
Conversiones binario decimal/ decimal  binarioConversiones binario decimal/ decimal  binario
Conversiones binario decimal/ decimal binario
 
Taller De Conversiones B/D D/B
Taller De Conversiones B/D D/BTaller De Conversiones B/D D/B
Taller De Conversiones B/D D/B
 
Slideshare
SlideshareSlideshare
Slideshare
 
Digital logic design lecture 03
Digital logic design   lecture 03 Digital logic design   lecture 03
Digital logic design lecture 03
 
Bolum1cozumler
Bolum1cozumlerBolum1cozumler
Bolum1cozumler
 
Unit 4.docx
Unit 4.docxUnit 4.docx
Unit 4.docx
 
Taller de conversiones
Taller de conversionesTaller de conversiones
Taller de conversiones
 
Taller+de+conversiones+bd+db (1)
Taller+de+conversiones+bd+db (1)Taller+de+conversiones+bd+db (1)
Taller+de+conversiones+bd+db (1)
 
Number systems presentation
Number systems presentationNumber systems presentation
Number systems presentation
 
Taller+de+conversiones+bd+db
Taller+de+conversiones+bd+dbTaller+de+conversiones+bd+db
Taller+de+conversiones+bd+db
 
Taller de conversiones B/D, D/B
Taller de conversiones B/D, D/BTaller de conversiones B/D, D/B
Taller de conversiones B/D, D/B
 
Tallerdeconversionesbddb 140929163335-phpapp01
Tallerdeconversionesbddb 140929163335-phpapp01Tallerdeconversionesbddb 140929163335-phpapp01
Tallerdeconversionesbddb 140929163335-phpapp01
 
Number system
Number systemNumber system
Number system
 
digital-electronics.pptx
digital-electronics.pptxdigital-electronics.pptx
digital-electronics.pptx
 
Mba ebooks
Mba ebooksMba ebooks
Mba ebooks
 
Understand data representation on CPU 1
Understand data representation on CPU 1Understand data representation on CPU 1
Understand data representation on CPU 1
 
Week 5 - Number Systems.pdf
Week 5 - Number Systems.pdfWeek 5 - Number Systems.pdf
Week 5 - Number Systems.pdf
 
01.number systems
01.number systems01.number systems
01.number systems
 

Plus de soulstalker

EASA PART 66 Module 15.10 : Lubrication Systems
EASA PART 66 Module 15.10 : Lubrication SystemsEASA PART 66 Module 15.10 : Lubrication Systems
EASA PART 66 Module 15.10 : Lubrication Systemssoulstalker
 
EASA Part 66 Module 15.8 : Bearings and Seals
EASA Part 66 Module 15.8 : Bearings and Seals EASA Part 66 Module 15.8 : Bearings and Seals
EASA Part 66 Module 15.8 : Bearings and Seals soulstalker
 
EASA Part 66 Module 15.7 : Exhausts
EASA Part 66 Module 15.7 : ExhaustsEASA Part 66 Module 15.7 : Exhausts
EASA Part 66 Module 15.7 : Exhaustssoulstalker
 
EASA Part 66 Module 15.6 : Turbine
EASA Part 66 Module 15.6 : TurbineEASA Part 66 Module 15.6 : Turbine
EASA Part 66 Module 15.6 : Turbinesoulstalker
 
EASA Part 66 Module 15.5 : Combustion Chamber
EASA Part 66 Module 15.5 : Combustion ChamberEASA Part 66 Module 15.5 : Combustion Chamber
EASA Part 66 Module 15.5 : Combustion Chambersoulstalker
 
EASA Part 66 Module 15.4 : Compressors
EASA Part 66 Module 15.4 : CompressorsEASA Part 66 Module 15.4 : Compressors
EASA Part 66 Module 15.4 : Compressorssoulstalker
 
EASA Part 66 Module 15.3 : Inlet
EASA Part 66 Module 15.3 : InletEASA Part 66 Module 15.3 : Inlet
EASA Part 66 Module 15.3 : Inletsoulstalker
 
EASA Part 66 Module 15.2 : Engine Performance
EASA Part 66 Module 15.2 : Engine PerformanceEASA Part 66 Module 15.2 : Engine Performance
EASA Part 66 Module 15.2 : Engine Performancesoulstalker
 
EASA Part 66 Module 15.1 : Fundamental
EASA Part 66 Module 15.1 : FundamentalEASA Part 66 Module 15.1 : Fundamental
EASA Part 66 Module 15.1 : Fundamentalsoulstalker
 
EASA PART-66 MODULE 8.4 : FLIGHT STABILITY AND DYNAMICS
EASA PART-66 MODULE 8.4 : FLIGHT STABILITY AND DYNAMICSEASA PART-66 MODULE 8.4 : FLIGHT STABILITY AND DYNAMICS
EASA PART-66 MODULE 8.4 : FLIGHT STABILITY AND DYNAMICSsoulstalker
 
EASA PART-66 MODULE 8.3 : THEORY OF FLIGHT
EASA PART-66 MODULE 8.3 : THEORY OF FLIGHTEASA PART-66 MODULE 8.3 : THEORY OF FLIGHT
EASA PART-66 MODULE 8.3 : THEORY OF FLIGHTsoulstalker
 
EASA PART-66 MODULE 8.2 : AERODYNAMICS
EASA PART-66 MODULE 8.2 : AERODYNAMICSEASA PART-66 MODULE 8.2 : AERODYNAMICS
EASA PART-66 MODULE 8.2 : AERODYNAMICSsoulstalker
 
EASA PART-66 MODULE 8.1 : PHYSICS OF ATMOSPHERE
EASA PART-66 MODULE 8.1 : PHYSICS OF ATMOSPHEREEASA PART-66 MODULE 8.1 : PHYSICS OF ATMOSPHERE
EASA PART-66 MODULE 8.1 : PHYSICS OF ATMOSPHEREsoulstalker
 
EASA PART 66 Module 2 : Physics
EASA PART 66 Module 2 : PhysicsEASA PART 66 Module 2 : Physics
EASA PART 66 Module 2 : Physicssoulstalker
 
EASA Part 66 Module 5.5 : Logic Circuit
EASA Part 66 Module 5.5 : Logic CircuitEASA Part 66 Module 5.5 : Logic Circuit
EASA Part 66 Module 5.5 : Logic Circuitsoulstalker
 

Plus de soulstalker (15)

EASA PART 66 Module 15.10 : Lubrication Systems
EASA PART 66 Module 15.10 : Lubrication SystemsEASA PART 66 Module 15.10 : Lubrication Systems
EASA PART 66 Module 15.10 : Lubrication Systems
 
EASA Part 66 Module 15.8 : Bearings and Seals
EASA Part 66 Module 15.8 : Bearings and Seals EASA Part 66 Module 15.8 : Bearings and Seals
EASA Part 66 Module 15.8 : Bearings and Seals
 
EASA Part 66 Module 15.7 : Exhausts
EASA Part 66 Module 15.7 : ExhaustsEASA Part 66 Module 15.7 : Exhausts
EASA Part 66 Module 15.7 : Exhausts
 
EASA Part 66 Module 15.6 : Turbine
EASA Part 66 Module 15.6 : TurbineEASA Part 66 Module 15.6 : Turbine
EASA Part 66 Module 15.6 : Turbine
 
EASA Part 66 Module 15.5 : Combustion Chamber
EASA Part 66 Module 15.5 : Combustion ChamberEASA Part 66 Module 15.5 : Combustion Chamber
EASA Part 66 Module 15.5 : Combustion Chamber
 
EASA Part 66 Module 15.4 : Compressors
EASA Part 66 Module 15.4 : CompressorsEASA Part 66 Module 15.4 : Compressors
EASA Part 66 Module 15.4 : Compressors
 
EASA Part 66 Module 15.3 : Inlet
EASA Part 66 Module 15.3 : InletEASA Part 66 Module 15.3 : Inlet
EASA Part 66 Module 15.3 : Inlet
 
EASA Part 66 Module 15.2 : Engine Performance
EASA Part 66 Module 15.2 : Engine PerformanceEASA Part 66 Module 15.2 : Engine Performance
EASA Part 66 Module 15.2 : Engine Performance
 
EASA Part 66 Module 15.1 : Fundamental
EASA Part 66 Module 15.1 : FundamentalEASA Part 66 Module 15.1 : Fundamental
EASA Part 66 Module 15.1 : Fundamental
 
EASA PART-66 MODULE 8.4 : FLIGHT STABILITY AND DYNAMICS
EASA PART-66 MODULE 8.4 : FLIGHT STABILITY AND DYNAMICSEASA PART-66 MODULE 8.4 : FLIGHT STABILITY AND DYNAMICS
EASA PART-66 MODULE 8.4 : FLIGHT STABILITY AND DYNAMICS
 
EASA PART-66 MODULE 8.3 : THEORY OF FLIGHT
EASA PART-66 MODULE 8.3 : THEORY OF FLIGHTEASA PART-66 MODULE 8.3 : THEORY OF FLIGHT
EASA PART-66 MODULE 8.3 : THEORY OF FLIGHT
 
EASA PART-66 MODULE 8.2 : AERODYNAMICS
EASA PART-66 MODULE 8.2 : AERODYNAMICSEASA PART-66 MODULE 8.2 : AERODYNAMICS
EASA PART-66 MODULE 8.2 : AERODYNAMICS
 
EASA PART-66 MODULE 8.1 : PHYSICS OF ATMOSPHERE
EASA PART-66 MODULE 8.1 : PHYSICS OF ATMOSPHEREEASA PART-66 MODULE 8.1 : PHYSICS OF ATMOSPHERE
EASA PART-66 MODULE 8.1 : PHYSICS OF ATMOSPHERE
 
EASA PART 66 Module 2 : Physics
EASA PART 66 Module 2 : PhysicsEASA PART 66 Module 2 : Physics
EASA PART 66 Module 2 : Physics
 
EASA Part 66 Module 5.5 : Logic Circuit
EASA Part 66 Module 5.5 : Logic CircuitEASA Part 66 Module 5.5 : Logic Circuit
EASA Part 66 Module 5.5 : Logic Circuit
 

Dernier

How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxJisc
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxCeline George
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxmarlenawright1
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
Philosophy of china and it's charactistics
Philosophy of china and it's charactisticsPhilosophy of china and it's charactistics
Philosophy of china and it's charactisticshameyhk98
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxDr. Sarita Anand
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17Celine George
 
21st_Century_Skills_Framework_Final_Presentation_2.pptx
21st_Century_Skills_Framework_Final_Presentation_2.pptx21st_Century_Skills_Framework_Final_Presentation_2.pptx
21st_Century_Skills_Framework_Final_Presentation_2.pptxJoelynRubio1
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxDr. Ravikiran H M Gowda
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Pooja Bhuva
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024Elizabeth Walsh
 
Basic Intentional Injuries Health Education
Basic Intentional Injuries Health EducationBasic Intentional Injuries Health Education
Basic Intentional Injuries Health EducationNeilDeclaro1
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsKarakKing
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 

Dernier (20)

How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Philosophy of china and it's charactistics
Philosophy of china and it's charactisticsPhilosophy of china and it's charactistics
Philosophy of china and it's charactistics
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
21st_Century_Skills_Framework_Final_Presentation_2.pptx
21st_Century_Skills_Framework_Final_Presentation_2.pptx21st_Century_Skills_Framework_Final_Presentation_2.pptx
21st_Century_Skills_Framework_Final_Presentation_2.pptx
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Basic Intentional Injuries Health Education
Basic Intentional Injuries Health EducationBasic Intentional Injuries Health Education
Basic Intentional Injuries Health Education
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 

EASA Part 66 Module 5.2 : Numbering System

  • 2. Many number systems are in use in digital technology. The most common are : • Decimal • Binary • Octal • Hexadecimal
  • 3. DECIMAL SYSTEM • Composed of 10 numerals or symbols • Using these symbols as digits of a number, can express any quantity. • Called the base-10 system because it has 10 digits. • 0, 1, 2, 3, 4, 5, 6, 7, 8, 9.
  • 4. DECIMAL EXAMPLE • 3.1410 • 53210 • 1082410 • 64900010
  • 5. BINARY SYSTEM • There are only two symbols or possible digit values, 0 and 1. • This base-2 system can be used to represent any quantity that can be represented in decimal or other base system
  • 6. BINARY EXAMPLE • 1110 • 1011110 • 1111011100 • 10000101111011
  • 7. OCTAL SYSTEM • The octal number system has a base of eight • Eight possible digits: 0,1,2,3,4,5,6,7
  • 8. OCTAL EXAMPLE • Octal Example • 5410 • 765421 • 1047664 • 4123170137
  • 9. HEXADECIMAL SYSTEM • The hexadecimal system uses base 16. • It uses the digits 0 through 9 plus the letters A, B, C, D, E, and F as the 16 digit symbols. • 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F
  • 10. HEXADECIMAL EXAMPLE • BD • 452EA • E451B2CD3 • 35412BABE
  • 11. NUMBERING CONVERSION OCTAL DECIMAL BINARY HEXADECIMAL
  • 12. DECIMAL TO BINARY CONVERSION Reverse of Binary-To-Decimal Method : 20 21 22 23 24 25 26 27 28 29 1 2 4 8 16 32 64 128 256 512 • 2710 = 16+8+0+2+1 = 11011 • 18110 = 128+0+32+16+0+4+0+1 = 10110101
  • 13. DECIMAL TO BINARY CONVERSION Repeat Division Method : EG : 18110 181/2 = 90 balance 1 EG : 2710 90/2 = 45 balance 0 27/2 = 13 balance 1 45/2 = 22 balance 1 13/2 = 6 balance 1 22/2 = 11 balance 0 6/2 = 3 balance 0 11/2 = 5 balance 1 3/2 = 1 balance 1 5/2 = 2 balance 1 1/2 = 0 balance 1 2/2 = 1 balance 0 1/2 = 0 balance 1 Result : 2710= 110112 Result : 18110= 101101012
  • 14. DECIMAL TO OCTAL CONVERSION Ex : 17710 Ex : 398510 177/8 = 22 balance 1 3985/8 = 498 balance 1 22/8 = 2 balance 6 498/8 = 62 balance 2 2/8 = 0 balance 2 62/8 = 7 balance 6 Result 17710 = 2618 7/8 = 0 balance 7 Result 398510 = 76218
  • 15. DECIMAL TO HEXADECIMAL Ex : 37810 378/16 = 23 balance 10 = (A) 23/16 = 1 balance 7 1/16 = 0 balance 1 Result 37810 = 17A16
  • 16. DECIMAL TO HEXADECIMAL Ex : 694210 6942/16 = 433 balance 14 = (E) 433/16 = 27 balance 1 27/16 = 1 balance 11 = (B) 1/16 = 0 balance 1 Result 37810 = 1B1E16
  • 17. BINARY TO DECIMAL CONVERSION 20 21 22 23 24 25 26 27 28 29 1 2 4 8 16 32 64 128 256 512 110112 = 24+23+02+21+20 = 16+8+0+2+1 = 2710 101101012 = 27+06+25+24+03+22+01+20 = 128+0+32+16+0+4+0+1 = 18110
  • 18. BINARY TO OCTAL CONVERSION 0 1 2 3 4 5 6 7 000 001 010 011 100 101 110 111 • Example: • 100 111 0102 = (100) (111) (010)2 = 4 7 28 • 1 101 0102 = (001) (101) (010)2 = 1 5 28
  • 19. BINARY TO HEXADECIMAL 0 0000 1 0001 2 0010 3 0011 4 0100 EXAMPLE : 5 0101 6 0110 7 0111 101 11012 = (101) (1101)2 = 5 D16 8 1000 9 1001 A 1010 11 1001 10112 = (11) (1001) (1011)2 = 3 9 B16 B 1011 C 1100 D 1101 1011 0010 11112 = (1011) (0010) (1111)2 = B 2 F16 E 1110 F 1111
  • 20. OCTAL TO DECIMAL CONVERSION • Example : • 2378 = 2(82)+ 3(81)+ 2(80) = 15910 • 95348 = 9(83)+ 5(82)+ 3(81)+ 4(80) = 495610
  • 21. OCTAL TO BINARY CONVERSION 0 1 2 3 4 5 6 7 000 001 010 011 100 101 110 111 • Example: • 4 7 28 = (100) (111) (010)2 = 100 111 0102 • 1 5 28 = (001) (101) (010)2 = 1 101 0102
  • 22. HEXADECIMAL TO DECIMAL • Example : • 2E16 = 2(161) + 14 (160) = 4610 • 9BC316 = 9(163) + 11 (162) +12 (161) +3 (160) = 3987510
  • 23. HEXADECIMAL TO BINARY 0 0000 1 0001 2 0010 3 0011 • 5 D16 = (101) (1101)2 =101 11012 4 0100 5 0101 6 0110 • 3 9 B16 = (11) (1001) (1011)2 =11 1001 10112 7 0111 8 1000 9 1001 • B 2 F16 = (1011) (0010) (1111)2 =1011 0010 11112 A 1010 B 1011 C 1100 D 1101 E 1110 F 1111
  • 24. NUMBERING CONVERSION OCTAL Table (div 3 ) Table (div 3) X/2 DECIMAL BINARY (+2 x ) Table (div 4) Table (div 4) HEXADECIMAL
  • 25. CONVERSION VALUE Binary - Hexa Power 2 0 0000 20 1 1 0001 Binary - Octal Power 8 21 2 2 0010 0 000 22 4 80 1 3 0011 1 001 23 8 81 8 4 0100 2 010 24 16 82 64 5 0101 6 0110 3 011 25 32 83 512 7 0111 4 100 26 64 84 4096 8 1000 5 101 27 128 85 32768 9 1001 6 110 28 256 86 262144 A 1010 7 111 29 512 87 2097152 B 1011 210 1024 C 1100 D 1101 E 1110 F 1111