SlideShare a Scribd company logo
Enkripsi Kunci Simetrik
     Matrix arithmetic modulo 26
      Menyamarkan distribusi frekuensi (diffusion)
      Substitusi n simbol
      Perkalian matriks n × n
      Encipher menggunakan matriks K
      Decipher menggunakan matriks K-1




2011-2012-3             Anung Ariwibowo               2
     Plaintext ACT CAT
             [0 2 19 2 0 19]
      Key GYBNQKURP
             [ [6 24 1]
              [13 16 10]
              [20 17 15] ]
      Ciphertext
             POH FIN
             [15 14 17 5 8 13]




2011-2012-3                     Anung Ariwibowo   3
     Matrix arithmetic modulo 26
      Determinan matriks
      Adjoin matriks
      Invers matriks




2011-2012-3            Anung Ariwibowo   4
     A = [
        [5 8]
        [17 3]
       ]
      inv(A) mod 26 = [
        [9 2]
        [1 15]
       ]
      A × inv(A) = [ [53 130] [156 79] ] mod 26
             = [
                [1 0]
                [0 1]
              ]
2011-2012-3             Anung Ariwibowo            5
     Matriks 2 × 2
             A = [ [a b] [c d] ]
             |A| = ad – bc
      Matrix 3 × 3
             A = [
                [a11 a12 a13]
                [a21 a22 a23]
                [a31 a32 a33]
              ]
             |A| = a11 × C11 + a12 × C12 + a13 × C13



2011-2012-3                      Anung Ariwibowo        6
     Cij
             Cofactor matriks A dengan menghapus baris i dan
              kolom j
      Untuk matriks bujursangkar n
             A = [
                [a11 a12 . . a1n]
                [a21 a22 . . a2n]
                . .
                [an1 an2 . . ann]
              ]
             |A| = Σ a1j × C1j, 1 ≤ j ≤ n


2011-2012-3                         Anung Ariwibowo             7
     |A| = Σ a1j × C1j, 1 ≤ j ≤ n
      Indeks i = 1 dapat diganti dengan indeks baris-
       baris yang lain
         1≤i≤n
         Dapat dibuktikan hasil determinannya sama
         Strategi: Cari baris yang paling banyak mengandung
          nilai nol




2011-2012-3                Anung Ariwibowo                     8
     Gaussian Elimination
             Matriks yang diperluas (augmented matriks)
             Operasi Elementer
      Matriks Cofactor dan aturan Cramer
             Minor matriks
             Cofactor matriks
             Determinan matriks




2011-2012-3                    Anung Ariwibowo             9
     K = [ [17 17 5]
          [21 18 21]
          [2 2 19] ]
      Minor matriks Mij
             Submatriks yang didapat dengan menghapus baris i
              dan kolom j
             Hitung determinan dari submatriks tersebut
      Baris 1
             M11 = 18 × 19 – 21 × 2
             M12 = 21 × 19 – 21 × 2
             M13 = 21 × 2 – 18 × 2

2011-2012-3                      Anung Ariwibowo                 10
     Baris 2
         M21 = 17 × 19 – 5 × 2
         M22 = 17 × 19 – 5 × 2
         M23 = 17 × 2 – 17 × 2

      Baris 3
         M31 = 17 × 21 – 5 × 18
         M32 = 17 × 21 – 5 × 21
         M33 = 17 × 18 – 17 × 21




2011-2012-3                  Anung Ariwibowo   11
     Cofactor Cij
             (-1)(i+j) Mij
      Baris 1
         C11 = (-1)(1+1) × 18 × 19 – 21 × 2
         C12 = (-1)(1+2) × 21 × 19 – 21 × 2
         C13 = (-1)(1+3) × 21 × 2 – 18 × 2

      Baris 2
             C21 = (-1)(2+1) × 17 × 19 – 5 × 2
             C22 = (-1)(2+2) × 17 × 19 – 5 × 2
             C23 = (-1)(2+3) × 17 × 2 – 17 × 2
2011-2012-3                        Anung Ariwibowo   12
     Baris 3
         C31 = (-1)(3+1) × 17 × 21 – 5 × 18
         C32 = (-1)(3+2) × 17 × 21 – 5 × 21
         C33 = (-1)(3+3) × 17 × 18 – 17 × 21




2011-2012-3                    Anung Ariwibowo   13
     Matriks yang elemen-elemennya adalah cofactor dari
       matriks asal
      C = [
         [C11 C12 C13]
         [C21 C22 C23]
         [C31 C32 C33]
       ]




2011-2012-3               Anung Ariwibowo                   14
     |A| = Σ a1j × C1j, 1 ≤ j ≤ n
             Ekspansi cofactor sepanjang baris 1
      |A| = Σ ai2 × Ci2, 1 ≤ i ≤ n
             Ekspansi cofactor sepanjang kolom 2
      Hasilnya pasti sama
      Untuk mencari determinan, gunakan ekspansi
       cofactor pada kolom/baris yang paling banyak
       mengandung nilai nol



2011-2012-3                     Anung Ariwibowo       15
     Invers sebuah matriks didapat dengan
       mengalikan invers determinan dengan
       transpos matriks Cofactor
             A-1 = (1/|A|) × CT




2011-2012-3                    Anung Ariwibowo   16
     Tugas Mandiri tentang
         Number Theory
         Matriks
         Primality testing

      UAS
             Alat hitung
             Substitution, Transposition, Number Theory, Public
              key




2011-2012-3                    Anung Ariwibowo                     17
     http://en.wikipedia.org/wiki/Hill_cipher
      http://en.wikipedia.org/wiki/Modular_multiplicative_inverse
      http://en.wikipedia.org/wiki/Cofactor_(linear_algebra)
      Stallings, "Cryptography and Network
       Security"http://williamstallings.com/Cryptography/
      Schneier, "Applied Cryptography" http://www.schneier.com/book-
       applied.html
      Thomas L Noack, http://ece.uprm.edu/~noack/crypto/
      Slides tjerdastangkas.blogspot.com/search/label/ikh323




2011-2012-3                   Anung Ariwibowo                           18

More Related Content

What's hot

Introduction to straight line graphs lesson
 Introduction to straight line graphs lesson Introduction to straight line graphs lesson
Introduction to straight line graphs lesson
SajidPervez2
 
Straight line-equation.
Straight line-equation.Straight line-equation.
Straight line-equation.
SajidPervez2
 
Examen du seconde semestre g8
Examen du seconde semestre g8Examen du seconde semestre g8
Examen du seconde semestre g8zeinabze
 
Mb 106 quantitative techniques 4
Mb 106 quantitative techniques 4Mb 106 quantitative techniques 4
Mb 106 quantitative techniques 4
KrishnaRoy45
 
Introduction to operations research
Introduction to operations researchIntroduction to operations research
Introduction to operations research
Dr. Abdulfatah Salem
 
Maths: Order of Operations
Maths: Order of OperationsMaths: Order of Operations
Maths: Order of Operationsemmeline4
 
Mcq ch 1_fsc_part1_nauman
Mcq ch 1_fsc_part1_naumanMcq ch 1_fsc_part1_nauman
Mcq ch 1_fsc_part1_naumanAzhar Khalid
 
Tutorial 1 : SIGNIFICANT FIGURES AND STANDARD FORM
Tutorial 1 : SIGNIFICANT FIGURES AND STANDARD FORMTutorial 1 : SIGNIFICANT FIGURES AND STANDARD FORM
Tutorial 1 : SIGNIFICANT FIGURES AND STANDARD FORMNurul Ainn
 
Connected and disconnected graph
Connected and disconnected graphConnected and disconnected graph
Connected and disconnected graph
ABDULLAHSHAUKAT4
 
Lesson5.1 complexnumbers demo
Lesson5.1 complexnumbers demoLesson5.1 complexnumbers demo
Lesson5.1 complexnumbers demo
sudersana viswanathan
 
Matrix Manipulation in Matlab
Matrix Manipulation in MatlabMatrix Manipulation in Matlab
Matrix Manipulation in Matlab
Mohamed Loey
 
On the Ternary Quadratic Diophantine Equation 4x2 – 7xy2 + 4y2 + x+y+1=19z2
On the Ternary Quadratic Diophantine Equation 4x2 – 7xy2 + 4y2 + x+y+1=19z2 On the Ternary Quadratic Diophantine Equation 4x2 – 7xy2 + 4y2 + x+y+1=19z2
On the Ternary Quadratic Diophantine Equation 4x2 – 7xy2 + 4y2 + x+y+1=19z2
IRJET Journal
 
Ch 1 Review
Ch 1 ReviewCh 1 Review
Ch 1 Review
Kathy Favazza
 
6.4 inverse matrices t
6.4 inverse matrices t6.4 inverse matrices t
6.4 inverse matrices t
math260
 
1565 matrix01-ppt
1565 matrix01-ppt1565 matrix01-ppt
1565 matrix01-ppt
Dr Fereidoun Dejahang
 
Lecture 07 graphing linear equations
Lecture 07 graphing linear equationsLecture 07 graphing linear equations
Lecture 07 graphing linear equations
Hazel Joy Chong
 
BUSINESS STATISTICS IMPORTANT QUESTIONS LIST
BUSINESS STATISTICS IMPORTANT QUESTIONS LISTBUSINESS STATISTICS IMPORTANT QUESTIONS LIST
BUSINESS STATISTICS IMPORTANT QUESTIONS LIST
RAJASEKHAR REDDY
 
Kem akademik sept 16
Kem akademik  sept 16Kem akademik  sept 16
Kem akademik sept 16
SMK Mukah
 

What's hot (20)

Introduction to straight line graphs lesson
 Introduction to straight line graphs lesson Introduction to straight line graphs lesson
Introduction to straight line graphs lesson
 
Straight line-equation.
Straight line-equation.Straight line-equation.
Straight line-equation.
 
Examen du seconde semestre g8
Examen du seconde semestre g8Examen du seconde semestre g8
Examen du seconde semestre g8
 
Mb 106 quantitative techniques 4
Mb 106 quantitative techniques 4Mb 106 quantitative techniques 4
Mb 106 quantitative techniques 4
 
Introduction to operations research
Introduction to operations researchIntroduction to operations research
Introduction to operations research
 
Maths: Order of Operations
Maths: Order of OperationsMaths: Order of Operations
Maths: Order of Operations
 
Mcq ch 1_fsc_part1_nauman
Mcq ch 1_fsc_part1_naumanMcq ch 1_fsc_part1_nauman
Mcq ch 1_fsc_part1_nauman
 
Tutorial 1 : SIGNIFICANT FIGURES AND STANDARD FORM
Tutorial 1 : SIGNIFICANT FIGURES AND STANDARD FORMTutorial 1 : SIGNIFICANT FIGURES AND STANDARD FORM
Tutorial 1 : SIGNIFICANT FIGURES AND STANDARD FORM
 
Connected and disconnected graph
Connected and disconnected graphConnected and disconnected graph
Connected and disconnected graph
 
Lesson5.1 complexnumbers demo
Lesson5.1 complexnumbers demoLesson5.1 complexnumbers demo
Lesson5.1 complexnumbers demo
 
Matrix Manipulation in Matlab
Matrix Manipulation in MatlabMatrix Manipulation in Matlab
Matrix Manipulation in Matlab
 
On the Ternary Quadratic Diophantine Equation 4x2 – 7xy2 + 4y2 + x+y+1=19z2
On the Ternary Quadratic Diophantine Equation 4x2 – 7xy2 + 4y2 + x+y+1=19z2 On the Ternary Quadratic Diophantine Equation 4x2 – 7xy2 + 4y2 + x+y+1=19z2
On the Ternary Quadratic Diophantine Equation 4x2 – 7xy2 + 4y2 + x+y+1=19z2
 
Ch 1 Review
Ch 1 ReviewCh 1 Review
Ch 1 Review
 
6.4 inverse matrices t
6.4 inverse matrices t6.4 inverse matrices t
6.4 inverse matrices t
 
1565 matrix01-ppt
1565 matrix01-ppt1565 matrix01-ppt
1565 matrix01-ppt
 
Lecture 07 graphing linear equations
Lecture 07 graphing linear equationsLecture 07 graphing linear equations
Lecture 07 graphing linear equations
 
BUSINESS STATISTICS IMPORTANT QUESTIONS LIST
BUSINESS STATISTICS IMPORTANT QUESTIONS LISTBUSINESS STATISTICS IMPORTANT QUESTIONS LIST
BUSINESS STATISTICS IMPORTANT QUESTIONS LIST
 
Kem akademik sept 16
Kem akademik  sept 16Kem akademik  sept 16
Kem akademik sept 16
 
First semester 1
First semester 1First semester 1
First semester 1
 
Assignment 1
Assignment 1Assignment 1
Assignment 1
 

Viewers also liked

ikd312-05-kalkulus-relasional
ikd312-05-kalkulus-relasionalikd312-05-kalkulus-relasional
ikd312-05-kalkulus-relasionalAnung Ariwibowo
 
Investment decisions for pension funds by intangible value capital
Investment decisions for pension funds by intangible value capitalInvestment decisions for pension funds by intangible value capital
Investment decisions for pension funds by intangible value capitalJAYARAMAN IYER
 
Reach your peak stuff
Reach your peak stuffReach your peak stuff
Reach your peak stuff
Greg Cox
 
Quesnel.Adolescent Literacy.Feb 2016
Quesnel.Adolescent Literacy.Feb 2016Quesnel.Adolescent Literacy.Feb 2016
Quesnel.Adolescent Literacy.Feb 2016
Faye Brownlie
 
Elvis Presley
Elvis PresleyElvis Presley
Elvis Presley
helenavf1
 
Rupert 4.5 UDL and Backwards Design, Jan 2014
Rupert 4.5 UDL and Backwards Design, Jan 2014Rupert 4.5 UDL and Backwards Design, Jan 2014
Rupert 4.5 UDL and Backwards Design, Jan 2014
Faye Brownlie
 
Playing in the Sandbox by Wictor Wilén
Playing in the Sandbox by Wictor WilénPlaying in the Sandbox by Wictor Wilén
Playing in the Sandbox by Wictor Wilén
Wictor Wilén
 
Haverhill, MA needs a fiber network
Haverhill, MA needs a fiber network Haverhill, MA needs a fiber network
Haverhill, MA needs a fiber network
John Michitson
 
Vagrant
VagrantVagrant
Sizzle Capabilities
Sizzle CapabilitiesSizzle Capabilities
Sizzle Capabilitiesagroben
 
Electric energy scientific development, main source and consumers
Electric energy scientific development, main source and consumersElectric energy scientific development, main source and consumers
Electric energy scientific development, main source and consumersP K Agarwal
 
Euro Style Design Ltd The Designs
Euro Style Design Ltd The DesignsEuro Style Design Ltd The Designs
Euro Style Design Ltd The DesignsRoland Laufer
 
Finlandia 2009 [Autoguardado]
Finlandia 2009 [Autoguardado]Finlandia 2009 [Autoguardado]
Finlandia 2009 [Autoguardado]guestd4e08
 

Viewers also liked (20)

ikd312-05-kalkulus-relasional
ikd312-05-kalkulus-relasionalikd312-05-kalkulus-relasional
ikd312-05-kalkulus-relasional
 
HR Assignment
HR AssignmentHR Assignment
HR Assignment
 
Investment decisions for pension funds by intangible value capital
Investment decisions for pension funds by intangible value capitalInvestment decisions for pension funds by intangible value capital
Investment decisions for pension funds by intangible value capital
 
Reach your peak stuff
Reach your peak stuffReach your peak stuff
Reach your peak stuff
 
Quesnel.Adolescent Literacy.Feb 2016
Quesnel.Adolescent Literacy.Feb 2016Quesnel.Adolescent Literacy.Feb 2016
Quesnel.Adolescent Literacy.Feb 2016
 
Wfwpeuropedignity 2011
Wfwpeuropedignity 2011Wfwpeuropedignity 2011
Wfwpeuropedignity 2011
 
Elvis Presley
Elvis PresleyElvis Presley
Elvis Presley
 
Rupert 4.5 UDL and Backwards Design, Jan 2014
Rupert 4.5 UDL and Backwards Design, Jan 2014Rupert 4.5 UDL and Backwards Design, Jan 2014
Rupert 4.5 UDL and Backwards Design, Jan 2014
 
Playing in the Sandbox by Wictor Wilén
Playing in the Sandbox by Wictor WilénPlaying in the Sandbox by Wictor Wilén
Playing in the Sandbox by Wictor Wilén
 
Haverhill, MA needs a fiber network
Haverhill, MA needs a fiber network Haverhill, MA needs a fiber network
Haverhill, MA needs a fiber network
 
isd312-09-summarization
isd312-09-summarizationisd312-09-summarization
isd312-09-summarization
 
Portfolio:Summer 09
Portfolio:Summer 09Portfolio:Summer 09
Portfolio:Summer 09
 
Vagrant
VagrantVagrant
Vagrant
 
Sizzle Capabilities
Sizzle CapabilitiesSizzle Capabilities
Sizzle Capabilities
 
Electric energy scientific development, main source and consumers
Electric energy scientific development, main source and consumersElectric energy scientific development, main source and consumers
Electric energy scientific development, main source and consumers
 
ikd312-02-three-schema
ikd312-02-three-schemaikd312-02-three-schema
ikd312-02-three-schema
 
Bracciali1
Bracciali1Bracciali1
Bracciali1
 
Euro Style Design Ltd The Designs
Euro Style Design Ltd The DesignsEuro Style Design Ltd The Designs
Euro Style Design Ltd The Designs
 
Pei 2010 2014
Pei 2010 2014Pei 2010 2014
Pei 2010 2014
 
Finlandia 2009 [Autoguardado]
Finlandia 2009 [Autoguardado]Finlandia 2009 [Autoguardado]
Finlandia 2009 [Autoguardado]
 

Similar to ikh323-06

Co-factor matrix..
Co-factor matrix..Co-factor matrix..
Co-factor matrix..
Syed Muhammad Zeejah Hashmi
 
the inverse of the matrix
the inverse of the matrixthe inverse of the matrix
the inverse of the matrix
Елена Доброштан
 
2. determinantes
2. determinantes2. determinantes
2. determinantes
eliseogarciacordova
 
Business mathametics and statistics b.com ii semester (2)
Business mathametics and statistics b.com ii semester (2)Business mathametics and statistics b.com ii semester (2)
Business mathametics and statistics b.com ii semester (2)
shamimakamili
 
Fin500J_MatrixAlgebra_2011.ppt
Fin500J_MatrixAlgebra_2011.pptFin500J_MatrixAlgebra_2011.ppt
Fin500J_MatrixAlgebra_2011.ppt
AMNA487167
 
Matrix Algebra
Matrix Algebra Matrix Algebra
Matrix Algebra
BastabChakraborty1
 
Matrices - Mathematics
Matrices - MathematicsMatrices - Mathematics
Matrices - Mathematics
Drishti Bhalla
 
Exams in college algebra
Exams in college algebraExams in college algebra
Exams in college algebra
Raymond Garcia
 
Mat 223_Ch3-Determinants.ppt
Mat 223_Ch3-Determinants.pptMat 223_Ch3-Determinants.ppt
Mat 223_Ch3-Determinants.ppt
Tigabu Yaya
 
Matrices & Determinants.pdf
Matrices & Determinants.pdfMatrices & Determinants.pdf
Matrices & Determinants.pdf
SUCCESSSCIENCEACADEM
 
Determinants
DeterminantsDeterminants
Determinants
Seyid Kadher
 
Matrices its types & Rank of matrix.pptx
Matrices its types & Rank of matrix.pptxMatrices its types & Rank of matrix.pptx
Matrices its types & Rank of matrix.pptx
jyotidighole2
 
Matrices & Determinants
Matrices & DeterminantsMatrices & Determinants
Matrices & Determinants
Ishant Jain
 
Using Formulae Ppp Spm 2009 Ppsx
Using Formulae Ppp Spm 2009 PpsxUsing Formulae Ppp Spm 2009 Ppsx
Using Formulae Ppp Spm 2009 PpsxSaripah Ahmad Mozac
 
Appendix B Matrices And Determinants
Appendix B  Matrices And DeterminantsAppendix B  Matrices And Determinants
Appendix B Matrices And Determinants
Angie Miller
 
Form 5 Additional Maths Note
Form 5 Additional Maths NoteForm 5 Additional Maths Note
Form 5 Additional Maths Note
Chek Wei Tan
 
Teknik menjawab matematik tambahan 1
Teknik menjawab matematik tambahan 1Teknik menjawab matematik tambahan 1
Teknik menjawab matematik tambahan 1
Aidil-Nur Zainal
 
lemh2sm.pdf
lemh2sm.pdflemh2sm.pdf
lemh2sm.pdf
MrigankGupta18
 

Similar to ikh323-06 (20)

Co-factor matrix..
Co-factor matrix..Co-factor matrix..
Co-factor matrix..
 
the inverse of the matrix
the inverse of the matrixthe inverse of the matrix
the inverse of the matrix
 
2. determinantes
2. determinantes2. determinantes
2. determinantes
 
Business mathametics and statistics b.com ii semester (2)
Business mathametics and statistics b.com ii semester (2)Business mathametics and statistics b.com ii semester (2)
Business mathametics and statistics b.com ii semester (2)
 
Fin500J_MatrixAlgebra_2011.ppt
Fin500J_MatrixAlgebra_2011.pptFin500J_MatrixAlgebra_2011.ppt
Fin500J_MatrixAlgebra_2011.ppt
 
Matrix Algebra
Matrix Algebra Matrix Algebra
Matrix Algebra
 
Matrices - Mathematics
Matrices - MathematicsMatrices - Mathematics
Matrices - Mathematics
 
Exams in college algebra
Exams in college algebraExams in college algebra
Exams in college algebra
 
Mat 223_Ch3-Determinants.ppt
Mat 223_Ch3-Determinants.pptMat 223_Ch3-Determinants.ppt
Mat 223_Ch3-Determinants.ppt
 
Matrices & Determinants.pdf
Matrices & Determinants.pdfMatrices & Determinants.pdf
Matrices & Determinants.pdf
 
Debojyoit
Debojyoit Debojyoit
Debojyoit
 
Determinants
DeterminantsDeterminants
Determinants
 
Matrices its types & Rank of matrix.pptx
Matrices its types & Rank of matrix.pptxMatrices its types & Rank of matrix.pptx
Matrices its types & Rank of matrix.pptx
 
Matrices & Determinants
Matrices & DeterminantsMatrices & Determinants
Matrices & Determinants
 
Q addmaths 2011
Q addmaths 2011Q addmaths 2011
Q addmaths 2011
 
Using Formulae Ppp Spm 2009 Ppsx
Using Formulae Ppp Spm 2009 PpsxUsing Formulae Ppp Spm 2009 Ppsx
Using Formulae Ppp Spm 2009 Ppsx
 
Appendix B Matrices And Determinants
Appendix B  Matrices And DeterminantsAppendix B  Matrices And Determinants
Appendix B Matrices And Determinants
 
Form 5 Additional Maths Note
Form 5 Additional Maths NoteForm 5 Additional Maths Note
Form 5 Additional Maths Note
 
Teknik menjawab matematik tambahan 1
Teknik menjawab matematik tambahan 1Teknik menjawab matematik tambahan 1
Teknik menjawab matematik tambahan 1
 
lemh2sm.pdf
lemh2sm.pdflemh2sm.pdf
lemh2sm.pdf
 

More from Anung Ariwibowo (20)

isd314-06-association-mining
isd314-06-association-miningisd314-06-association-mining
isd314-06-association-mining
 
ikp213-unifikasi
ikp213-unifikasiikp213-unifikasi
ikp213-unifikasi
 
ikp213-06-horn-clause
ikp213-06-horn-clauseikp213-06-horn-clause
ikp213-06-horn-clause
 
ikp213-01-pendahuluan
ikp213-01-pendahuluanikp213-01-pendahuluan
ikp213-01-pendahuluan
 
ikd312-05-sqlite
ikd312-05-sqliteikd312-05-sqlite
ikd312-05-sqlite
 
ikd312-04-aljabar-relasional
ikd312-04-aljabar-relasionalikd312-04-aljabar-relasional
ikd312-04-aljabar-relasional
 
ikd312-03-design
ikd312-03-designikd312-03-design
ikd312-03-design
 
ikp213-02-pendahuluan
ikp213-02-pendahuluanikp213-02-pendahuluan
ikp213-02-pendahuluan
 
ikh311-08
ikh311-08ikh311-08
ikh311-08
 
ikh311-07
ikh311-07ikh311-07
ikh311-07
 
ikh311-06
ikh311-06ikh311-06
ikh311-06
 
ikh311-05
ikh311-05ikh311-05
ikh311-05
 
ikp321-svn
ikp321-svnikp321-svn
ikp321-svn
 
ikh311-04
ikh311-04ikh311-04
ikh311-04
 
ikp321-05
ikp321-05ikp321-05
ikp321-05
 
imsakiyah-jakarta-1433-09
imsakiyah-jakarta-1433-09imsakiyah-jakarta-1433-09
imsakiyah-jakarta-1433-09
 
ikh311-03
ikh311-03ikh311-03
ikh311-03
 
ikp321-04
ikp321-04ikp321-04
ikp321-04
 
ikp321-03
ikp321-03ikp321-03
ikp321-03
 
ikh311-02
ikh311-02ikh311-02
ikh311-02
 

Recently uploaded

Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
Bhaskar Mitra
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
Product School
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Product School
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Ramesh Iyer
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
Abida Shariff
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
DianaGray10
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
DianaGray10
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 

Recently uploaded (20)

Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 

ikh323-06

  • 2. Matrix arithmetic modulo 26  Menyamarkan distribusi frekuensi (diffusion)  Substitusi n simbol  Perkalian matriks n × n  Encipher menggunakan matriks K  Decipher menggunakan matriks K-1 2011-2012-3 Anung Ariwibowo 2
  • 3. Plaintext ACT CAT  [0 2 19 2 0 19]  Key GYBNQKURP  [ [6 24 1] [13 16 10] [20 17 15] ]  Ciphertext  POH FIN  [15 14 17 5 8 13] 2011-2012-3 Anung Ariwibowo 3
  • 4. Matrix arithmetic modulo 26  Determinan matriks  Adjoin matriks  Invers matriks 2011-2012-3 Anung Ariwibowo 4
  • 5. A = [ [5 8] [17 3] ]  inv(A) mod 26 = [ [9 2] [1 15] ]  A × inv(A) = [ [53 130] [156 79] ] mod 26  = [ [1 0] [0 1] ] 2011-2012-3 Anung Ariwibowo 5
  • 6. Matriks 2 × 2  A = [ [a b] [c d] ]  |A| = ad – bc  Matrix 3 × 3  A = [ [a11 a12 a13] [a21 a22 a23] [a31 a32 a33] ]  |A| = a11 × C11 + a12 × C12 + a13 × C13 2011-2012-3 Anung Ariwibowo 6
  • 7. Cij  Cofactor matriks A dengan menghapus baris i dan kolom j  Untuk matriks bujursangkar n  A = [ [a11 a12 . . a1n] [a21 a22 . . a2n] . . [an1 an2 . . ann] ]  |A| = Σ a1j × C1j, 1 ≤ j ≤ n 2011-2012-3 Anung Ariwibowo 7
  • 8. |A| = Σ a1j × C1j, 1 ≤ j ≤ n  Indeks i = 1 dapat diganti dengan indeks baris- baris yang lain  1≤i≤n  Dapat dibuktikan hasil determinannya sama  Strategi: Cari baris yang paling banyak mengandung nilai nol 2011-2012-3 Anung Ariwibowo 8
  • 9. Gaussian Elimination  Matriks yang diperluas (augmented matriks)  Operasi Elementer  Matriks Cofactor dan aturan Cramer  Minor matriks  Cofactor matriks  Determinan matriks 2011-2012-3 Anung Ariwibowo 9
  • 10. K = [ [17 17 5] [21 18 21] [2 2 19] ]  Minor matriks Mij  Submatriks yang didapat dengan menghapus baris i dan kolom j  Hitung determinan dari submatriks tersebut  Baris 1  M11 = 18 × 19 – 21 × 2  M12 = 21 × 19 – 21 × 2  M13 = 21 × 2 – 18 × 2 2011-2012-3 Anung Ariwibowo 10
  • 11. Baris 2  M21 = 17 × 19 – 5 × 2  M22 = 17 × 19 – 5 × 2  M23 = 17 × 2 – 17 × 2  Baris 3  M31 = 17 × 21 – 5 × 18  M32 = 17 × 21 – 5 × 21  M33 = 17 × 18 – 17 × 21 2011-2012-3 Anung Ariwibowo 11
  • 12. Cofactor Cij  (-1)(i+j) Mij  Baris 1  C11 = (-1)(1+1) × 18 × 19 – 21 × 2  C12 = (-1)(1+2) × 21 × 19 – 21 × 2  C13 = (-1)(1+3) × 21 × 2 – 18 × 2  Baris 2  C21 = (-1)(2+1) × 17 × 19 – 5 × 2  C22 = (-1)(2+2) × 17 × 19 – 5 × 2  C23 = (-1)(2+3) × 17 × 2 – 17 × 2 2011-2012-3 Anung Ariwibowo 12
  • 13. Baris 3  C31 = (-1)(3+1) × 17 × 21 – 5 × 18  C32 = (-1)(3+2) × 17 × 21 – 5 × 21  C33 = (-1)(3+3) × 17 × 18 – 17 × 21 2011-2012-3 Anung Ariwibowo 13
  • 14. Matriks yang elemen-elemennya adalah cofactor dari matriks asal  C = [ [C11 C12 C13] [C21 C22 C23] [C31 C32 C33] ] 2011-2012-3 Anung Ariwibowo 14
  • 15. |A| = Σ a1j × C1j, 1 ≤ j ≤ n  Ekspansi cofactor sepanjang baris 1  |A| = Σ ai2 × Ci2, 1 ≤ i ≤ n  Ekspansi cofactor sepanjang kolom 2  Hasilnya pasti sama  Untuk mencari determinan, gunakan ekspansi cofactor pada kolom/baris yang paling banyak mengandung nilai nol 2011-2012-3 Anung Ariwibowo 15
  • 16. Invers sebuah matriks didapat dengan mengalikan invers determinan dengan transpos matriks Cofactor  A-1 = (1/|A|) × CT 2011-2012-3 Anung Ariwibowo 16
  • 17. Tugas Mandiri tentang  Number Theory  Matriks  Primality testing  UAS  Alat hitung  Substitution, Transposition, Number Theory, Public key 2011-2012-3 Anung Ariwibowo 17
  • 18. http://en.wikipedia.org/wiki/Hill_cipher  http://en.wikipedia.org/wiki/Modular_multiplicative_inverse  http://en.wikipedia.org/wiki/Cofactor_(linear_algebra)  Stallings, "Cryptography and Network Security"http://williamstallings.com/Cryptography/  Schneier, "Applied Cryptography" http://www.schneier.com/book- applied.html  Thomas L Noack, http://ece.uprm.edu/~noack/crypto/  Slides tjerdastangkas.blogspot.com/search/label/ikh323 2011-2012-3 Anung Ariwibowo 18