Posts

New Post

Pathways to Thinking || Simple Steps to Smarter Thinking || ~xRay Pixy

Image
By understanding different levels of thinking, we learn how to build knowledge step by step — from remembering facts to creating new ideas.  Video Chapters: Pathways to Thinking 00:00 Introduction 00:51 Cognitive Psychology 03:52 Analytical thinking 04:39 Critical thinking 05:01 Reflective thinking 05:26 Intuitive thinking 06:47 Visible Thinking Routines (Harvard Project Zero) 09:24 Neuroscience, Creativity, Philosophy 09:33 Neural Pathways 10:01 Neuroplasticity 10:29 Webb's Depth of Knowledge (DoK) framework 10:50 Inference 11:10 Minimum Base – Art for Sorting and Interpretation 11:35 Assumption Analysis #optimization #algorithm #metaheuristic #robotics #deeplearning #ArtificialIntelligence #MachineLearning #computervision #research #projects #thesis #Python #optimizationproblem #optimizationalgorithms 

Monoalphabetic Substitution Cipher Techniques

  Monoalphabetic Substitution Cipher, also known as a simple substitution cipher, relies (depends) on a fixed replacement structure. That is substitution is fixed for each letter of the alphabet.  A simple example is where each letter is encrypted as the next letter in the alphabet: "a simple message" becomes "B TJNQMF NFTTBHF". Each letter can be encrypted to any symbol [&,%,?,/,*,{},@,~,+,-] not just another letter. 1.) Additive Cipher The Simplest Monoalphabetic cipher is an Additive cipher. This cipher is sometimes called Shift Cipher. When the Cipher is Additive, the Plain Text, Cipher Text and key are integers in Z(26). For Encryption: C = (p + k) mod 26 For Decryption: P = (c - k) mod 26 Where, C = Cipher Text                   P = Plain Text                   k = Key  The secret key between Alice and Bob is also an integer value. The encryption Algorithm adds the key to t...
More posts