2WF15 - Discrete Mathematics 2 - Part 1

Total Page:16

File Type:pdf, Size:1020Kb

2WF15 - Discrete Mathematics 2 - Part 1 1 2WF15 - Discrete Mathematics 2 - Part 1 Algorithmic Number Theory Benne de Weger version 0.54, March 6, 2012 version 0.54, March 6, 2012 2WF15 - Discrete Mathematics 2 - Part 1 2 2WF15 - Discrete Mathematics 2 - Part 1 version 0.54, March 6, 2012 Contents i Contents 1 Multi-precision arithmetic 1 1.1 Notation . .1 1.2 Representation of integers . .2 1.3 Efficient arithmetic with integers . .3 1.4 Efficient polynomial arithmetic . .8 2 Euclidean and Modular Algorithms 11 2.1 The Euclidean Algorithm . 11 2.2 Efficient Modular Arithmetic . 16 2.3 The Chinese Remainder Theorem . 23 ∗ 3 Multiplicative structure of Zn 27 3.1 Euler (and Fermat) . 27 3.2 Order of an element . 29 3.3 Primitive roots . 30 3.4 Algorithms . 32 4 Quadratic Reciprocity 35 4.1 Quadratic residues and the Legendre symbol . 35 4.2 The Quadratic Reciprocity Law . 36 4.3 Another proof . 39 4.4 The Jacobi symbol . 41 4.5 Modular Square Roots . 44 5 Prime Numbers 47 5.1 Prime Number Distribution . 47 5.2 Probabilistic Primality Testing . 51 5.3 Deterministic Primality Testing . 54 5.4 Prime Number Generation . 55 version 0.54, March 6, 2012 2WF15 - Discrete Mathematics 2 - Part 1 ii Contents 6 Multiplicative functions 59 6.1 Multiplicative functions . 59 6.2 The M¨obius function . 61 6.3 M¨obiusinversion . 62 6.4 The Principle of Inclusion and Exclusion . 63 6.5 Fermat and Euler revisited . 64 7 Continued Fractions 67 7.1 The Euclidean Algorithm revisited . 67 7.2 Continued Fractions . 68 7.3 Diophantine approximation . 70 Bibliography 75 2WF15 - Discrete Mathematics 2 - Part 1 version 0.54, March 6, 2012 1.1 Notation 1 Chapter 1 Multi-precision arithmetic Introduction General references for this chapter: [CP, Chapter 9], [GG, Chapters 2, 8], [Kn, Chapter 4], [Sh, Chapter 3]. In this chapter the following topics will be treated: • representation of integers and polynomials in a computer, • efficient algorithms for elementary arithmetic operations for the following objects: { integers, { polynomials. 1.1 Notation First the necessary notation. We use the following notation for sets of numbers. • N = f1; 2; 3;:::g is the set of natural numbers (excluding 0), • Z = f:::; −3; −2; −1; 0; 1; 2; 3;:::g is the set of integral numbers or integers, • Q is the set of rational numbers, • R is the set of real numbers. If a set S contains 0, we sometimes write S∗ = S n f0g. The cardinality of a set S is denoted by jSj, or by #S. We will use the floor function bxc, which is the largest integer that is at most x, and the ceiling function dxe, which is the smallest integer that is at least x. The symbol log will always stand for the natural logarithm. The logarithm to the base b will be denoted by logb. To get an idea of the growth of f(x) for x ! 1, we say that a function f(x) is of the order of g(x) for some useful function g, if there exists a constant c such that f(x) < cg(x) for all large enough x. The notation for this is the big O-notation: f(x) = O(g(x)): version 0.54, March 6, 2012 2WF15 - Discrete Mathematics 2 - Part 1 2 1.2 Representation of integers For g(x) we usually take simple functions such as xα, eαx, log x, etc. Of course there is a similar big O concept for e.g. x # 0. 2 n + 3 3 Example: p = O(n 2 ). Or, if we want to be a bit more accurate: 2 n − 1000000 log n 2 n + 3 1 3 p = n 2 + O(n log n). 2 n − 1000000 log n 2 1.2 Representation of integers A problem with doing arithmetic with computers is that numbers can only be stored in rather small memory words, and that computer arithmetic therefore can, at first sight, only work with small sized numbers. Most computers nowadays have a 32 bit architecture, some have 64 bit capabilities, but there are also many processors that still have 16 or 8 bit registers only, e.g. smartcard processors. In an n bit word we can represent 2n different numbers, e.g. f0; 1; 2;:::; 2n − 1g. In many applications, notably cryptography, we often need to do exact arithmetic with numbers that require hundreds or thousands of bits. In other words, overflow or rounding errors are not tolerated at all. This means that the standard arithmetic functions provided by the processor or the (operating system) software, operating on single (or at best double) words only, are usually not sufficient, and we must find efficient ways to do arithmetic with large integers. When we want to store large integers that do not fit in the word size of some computer, we have to use an array of words to represent one integer. There are many different ways to represent integers. We don't want to get into too much implementation detail issues such as big / little endian or 2-complement representations. Instead we'll keep it at a fairly mathematical level. We also do not treat how to represent (approximations of) non-integral rational or real numbers. Basically what we do is to use a so-called radix b representation, which is a generalization of the familiar decimal notation. Let b ≥ 2 be an integer, the so called radix. The elements of the set f0; 1; : : : ; b − 1g are called radix b digits, and we assume that they all fit in one memory word, and that operations on them can be handled by the available processor. Note that this means that the bit length of a word is ≥ dlog2 be. Which value we take as b will depend on the architecture of our computer. Popular choices are b = 28; 216; 232, reflecting the word size (2 to the power the bit size of a word), as this optimizes the storage. However, as we'll see soon, it may also be wise to take e.g. b = 231 or even b = 216 on a 32-bit computer. Any integer n 2 Z admits a radix b representation [n]b, as follows. Let m 2 N be such that m jnj < b , so that m ≥ blogb jnjc + 1. Then, repeatedly using division with remainder by b, it follows that there exist n0; n1; : : : ; nm−1 2 f0; 1; : : : ; b − 1g such that m−1 2 m−1 X i jnj = n0 + n1b + n2b + ::: + nm−1b = nib : i=0 Then as the radix b representation of n we write [n]b = ±[nm−1; nm−2; : : : ; n0]b; with ± = + or left out if n ≥ 0, and ± = − if n < 0. Leading zeroes are allowed, but usually are omitted, e.g. [43]16 = [2; 11]16 = [0; 0; 2; 11]16: 2WF15 - Discrete Mathematics 2 - Part 1 version 0.54, March 6, 2012 1.3 Efficient arithmetic with integers 3 The parameter m is called the word size of [n]b. When it is clear from the context which b is meant, we often write [n]b = ±nm−1nm−2 : : : n0. Omitting commas should only be done when confusion is not possible. When b ≤ 10 we use the well known arabic symbols 0; 1; 2; 3; 4; 5; 6; 7; 8; 9 for the digits. When b > 10 (but not too large) we run out of symbols, so after 0; 1; 2; 3; 4; 5; 6; 7; 8; 9 we sometimes continue with A, B, C, :::. When b = 10 we get essentially our every day decimal representation. When b = 2 we get the well known binary representation; in that case the word size is equal to the bitsize. When b = 16 the system is called hexadecimal representation, and in that case often the digits 10; 11; 12; 13; 14; 15 are written as A, B, C, D, E, F. Example: [43]16 = 2B. This hexadecimal system is well known in the computing world. 1.3 Efficient arithmetic with integers 1.3.1 Addition and subtraction Addition and subtraction is essentially easy: we use the primary school method, which is the most efficient way of doing it. This works by adding the digits backwards, and keeping track of "carries". We start with a formal description of addition of positive numbers. Addition of a positive and a negative number is equivalent to subtraction of two positive numbers, to be treated below. Addition of two negative numbers is equivalent to addition of two positive numbers, and adjusting the sign of the output. Addition of 0 is trivial. Algorithm 1.1 (Addition Algorithm ) Input: an integer b ≥ 2, and the radix b representations [x]b = [xm−1; : : : ; x0]b, [y]b = [yn−1; : : : ; y0]b (without leading zeroes) of numbers x; y 2 N Output: the radix b representation [z]b = [zk−1; : : : ; z0]b (without leading zeroes) of z = x + y Step 1: c 0, xi 0 for m ≤ i < maxfm; ng yi 0 for n ≤ i < maxfm; ng Step 2: for i = 0; 1;:::; maxfm; ng − 1 do zi xi + yi + c if zi ≥ b then zi zi − b, c 1 else c 0 Step 3: if c = 1 then k maxfm; ng + 1, zk−1 = 1 else k maxfm; ng output [zk−1; : : : ; z0]b Note that indeed zi 2 f0; 1; : : : ; b − 1g for all i. Next we give a formal description of subtraction of a positive number from a larger positive number. Subtraction of a positive number from a smaller positive number is essentially the same, by swapping the two numbers and adjusting the sign of the output.
Recommended publications
  • Abstract in This Paper, D-Strong and Almost D-Strong Near-Rings Ha
    Periodica Mathematica Hungarlca Vol. 17 (1), (1986), pp. 13--20 D-STRONG AND ALMOST D-STRONG NEAR-RINGS A. K. GOYAL (Udaipur) Abstract In this paper, D-strong and almost D-strong near-rings have been defined. It has been proved that if R is a D-strong S-near ring, then prime ideals, strictly prime ideals and completely prime ideals coincide. Also if R is a D-strong near-ring with iden- tity, then every maximal right ideal becomes a maximal ideal and moreover every 2- primitive near-ring becomes a near-field. Several properties, chain conditions and structure theorems have also been discussed. Introduction In this paper, we have generalized some of the results obtained for rings by Wong [12]. Corresponding to the prime and strictly prime ideals in near-rings, we have defined D-strong and almost D-strong near-rings. It has been shown that a regular near-ring having all idempotents central in R is a D-strong and hence almost D-strong near-ring. If R is a D-strong S-near ring, then it has been shown that prime ideals, strictly prime ideals and com- pletely prime ideals coincide and g(R) = H(R) ~ ~(R), where H(R) is the intersection of all strictly prime ideals of R. Also if R is a D-strong near-ring with identity, then every maximal right ideal becomes a maximal ideal and moreover every 2-primitive near-ring becomes a near-field. Some structure theorems have also been discussed. Preliminaries Throughout R will denote a zero-symmetric left near-ring, i.e., R -- Ro in the sense of Pilz [10].
    [Show full text]
  • Neural Networks and the Search for a Quadratic Residue Detector
    Neural Networks and the Search for a Quadratic Residue Detector Michael Potter∗ Leon Reznik∗ Stanisław Radziszowski∗ [email protected] [email protected] [email protected] ∗ Department of Computer Science Rochester Institute of Technology Rochester, NY 14623 Abstract—This paper investigates the feasibility of employing This paper investigates the possibility of employing ANNs artificial neural network techniques for solving fundamental in the search for a solution to the quadratic residues (QR) cryptography problems, taking quadratic residue detection problem, which is defined as follows: as an example. The problem of quadratic residue detection Suppose that you have two integers a and b. Then a is is one which is well known in both number theory and a quadratic residue of b if and only if the following two cryptography. While it garners less attention than problems conditions hold: [1] such as factoring or discrete logarithms, it is similar in both 1) The greatest common divisor of a and b is 1, and difficulty and importance. No polynomial–time algorithm is 2) There exists an integer c such that c2 ≡ a (mod b). currently known to the public by which the quadratic residue status of one number modulo another may be determined. This The first condition is satisfied automatically so long as ∗ work leverages machine learning algorithms in an attempt to a 2 Zb . There is, however, no known polynomial–time (in create a detector capable of solving instances of the problem the number of bits of a and b) algorithm for determining more efficiently. A variety of neural networks, currently at the whether the second condition is satisfied.
    [Show full text]
  • A Scalable System-On-A-Chip Architecture for Prime Number Validation
    A SCALABLE SYSTEM-ON-A-CHIP ARCHITECTURE FOR PRIME NUMBER VALIDATION Ray C.C. Cheung and Ashley Brown Department of Computing, Imperial College London, United Kingdom Abstract This paper presents a scalable SoC architecture for prime number validation which targets reconfigurable hardware This paper presents a scalable SoC architecture for prime such as FPGAs. In particular, users are allowed to se- number validation which targets reconfigurable hardware. lect predefined scalable or non-scalable modular opera- The primality test is crucial for security systems, especially tors for their designs [4]. Our main contributions in- for most public-key schemes. The Rabin-Miller Strong clude: (1) Parallel designs for Montgomery modular arith- Pseudoprime Test has been mapped into hardware, which metic operations (Section 3). (2) A scalable design method makes use of a circuit for computing Montgomery modu- for mapping the Rabin-Miller Strong Pseudoprime Test lar exponentiation to further speed up the validation and to into hardware (Section 4). (3) An architecture of RAM- reduce the hardware cost. A design generator has been de- based Radix-2 Scalable Montgomery multiplier (Section veloped to generate a variety of scalable and non-scalable 4). (4) A design generator for producing hardware prime Montgomery multipliers based on user-defined parameters. number validators based on user-specified parameters (Sec- The performance and resource usage of our designs, im- tion 5). (5) Implementation of the proposed hardware ar- plemented in Xilinx reconfigurable devices, have been ex- chitectures in FPGAs, with an evaluation of its effective- plored using the embedded PowerPC processor and the soft ness compared with different size and speed tradeoffs (Sec- MicroBlaze processor.
    [Show full text]
  • Diffie-Hellman Key Exchange
    Public Key Cryptosystems - Diffie Hellman Public Key Cryptosystems - Diffie Hellman Get two parties to share a secret number that no one else knows Public Key Cryptosystems - Diffie Hellman Get two parties to share a secret number that no one else knows Receiver Sender Public Key Cryptosystems - Diffie Hellman Get two parties to share a secret number that no one else knows Can only use an insecure communications channel for exchange Receiver Sender Attacker Public Key Cryptosystems - Diffie Hellman Get two parties to share a secret number that no one else knows Can only use an insecure communications channel for exchange p,g Receiver Sender p: prime & (p-1)/2 prime g: less than p n = gk mod p Attacker for all 0<n<p and some k (see http://gauss.ececs.uc.edu/Courses/c6053/lectures/Math/Group/group.html) Public Key Cryptosystems - Diffie Hellman A safe prime p: p = 2q + 1 where q is also prime Example: 479 = 2*239 + 1 If p is a safe prime, then p-1 has large prime factor, namely q. If all the factors of p-1 are less than logcp, then the problem of solving the discrete logarithm modulo p is in P (it©s easy). Therefore, for cryptosystems based on discrete logarithm (such as Diffie-Hellman) it is required that p-1 has at least one large prime factor. Public Key Cryptosystems - Diffie Hellman A strong prime p: p is large p-1 has large prime factors (p = aq+1 for integer a and prime q) q-1 has large prime factors (q = br+1 for integer b, prime r) p+1 has large prime factors.
    [Show full text]
  • WHAT IS the BEST APPROACH to COUNTING PRIMES? Andrew Granville 1. How Many Primes Are There? Predictions You Have Probably Seen
    WHAT IS THE BEST APPROACH TO COUNTING PRIMES? Andrew Granville As long as people have studied mathematics, they have wanted to know how many primes there are. Getting precise answers is a notoriously difficult problem, and the first suitable technique, due to Riemann, inspired an enormous amount of great mathematics, the techniques and insights penetrating many different fields. In this article we will review some of the best techniques for counting primes, centering our discussion around Riemann's seminal paper. We will go on to discuss its limitations, and then recent efforts to replace Riemann's theory with one that is significantly simpler. 1. How many primes are there? Predictions You have probably seen a proof that there are infinitely many prime numbers. This was known to the ancient Greeks, and today there are many different proofs, using tools from all sorts of fields. Once one knows that there are infinitely many prime numbers then it is natural to ask whether we can give an exact formula, or at least a good approximation, for the number of primes up to a given point. Such questions were no doubt asked, since antiquity, by those people who thought about prime numbers. With the advent of tables of factorizations, it was possible to make predictions supported by lots of data. Figure 1 is a photograph of Chernac's Table of Factorizations of all integers up to one million, published in 1811.1 There are exactly one thousand pages of factorization tables in the book, each giving the factorizations of one thousand numbers. For example, Page 677, seen here, enables us to factor all numbers between 676000 and 676999.
    [Show full text]
  • Local Prime Factor Decomposition of Approximate Strong Product Graphs
    Local Prime Factor Decomposition of Approximate Strong Product Graphs Von der Fakultät für Mathematik und Informatik der Universität Leipzig angenommene DISSERTATION zur Erlangung des akademischen Grades DOCTOR RERUM NATURALIUM (Dr. rer. nat.) im Fachgebiet Informatik vorgelegt von Diplom Wirtschaftsmathematiker Marc Hellmuth geboren am 25. Juni 1980 in Nordhausen Die Annahme der Dissertation wurde empfohlen von: 1. Professor Dr. Peter F. Stadler (Leipzig, Deutschland) 2. Professor Dr. Sandi Klavžar (Ljubljana, Slowenien) Die Verleihung des akademischen Grades erfolgt mit Bestehen der Vertei- digung am 22.04.2010 mit dem Gesamtprädikat summa cum laude. Acknowledgements Let me thank you very much !! peter F. stadler and wilfried imrich paula werner kloeckl, daniel merkle, lydia gringmann, maribel hernandez-rosales, steve hoffmann, phil ostermeier, kon- stantin klemm, sven findeisz, and the entire beerinformatics community my family christine rahn, marlen pelny, dietrich becker, gilbert spiegel, min choe, and my old friends in nordhausen jens steuck and petra pregel josef leydold, manja marz, sonja prohaska, and martin middendorf ... and all other persons that are in the closed neighborhood of mine !! Abstract In practice, graphs often occur as perturbed product structures, so-called approximate graph products. The practical application of the well-known prime factorization algorithms is therefore limited, since most graphs are prime, although they can have a product-like structure. This work is concerned with the strong graph product. Since strong product graphs G contain subgraphs that are itself products of subgraphs of the underlying factors of G, we follow the idea to develop local approaches that cover a graph by factorizable patches and then use this information to derive the global factors.
    [Show full text]
  • UK Aerospace Supply Chain Study
    BIS RESEARCH PAPER NUMBER 294 UK Aerospace Supply Chain Study JULY 2016 Contents Contents ........................................................................................................................................ 2 Executive Summary ...................................................................................................................... 4 Introduction ................................................................................................................................. 12 Context ..................................................................................................................................... 12 Scope of the Study .................................................................................................................... 14 Methodology overview ............................................................................................................... 14 Structure and Value of the Supply Chain .................................................................................. 16 Primes views ............................................................................................................................. 16 Supply chain view ..................................................................................................................... 18 Participant company overview ............................................................................................... 18 Employment .........................................................................................................................
    [Show full text]
  • An Introduction to Cryptography, Second Edition Richard A
    DISCRETE MATHEMATICS AND ITS APPLICATIONS Series Editor KENNETH H. ROSEN An INTRODUCTION to CRYPTOGRAPHY Second Edition © 2007 by Taylor & Francis Group, LLC DISCRETE MATHEMATICS and ITS APPLICATIONS Series Editor Kenneth H. Rosen, Ph.D. Juergen Bierbrauer, Introduction to Coding Theory Kun-Mao Chao and Bang Ye Wu, Spanning Trees and Optimization Problems Charalambos A. Charalambides, Enumerative Combinatorics Henri Cohen, Gerhard Frey, et al., Handbook of Elliptic and Hyperelliptic Curve Cryptography Charles J. Colbourn and Jeffrey H. Dinitz, The CRC Handbook of Combinatorial Designs Steven Furino, Ying Miao, and Jianxing Yin, Frames and Resolvable Designs: Uses, Constructions, and Existence Randy Goldberg and Lance Riek, A Practical Handbook of Speech Coders Jacob E. Goodman and Joseph O’Rourke, Handbook of Discrete and Computational Geometry, Second Edition Jonathan L. Gross and Jay Yellen, Graph Theory and Its Applications, Second Edition Jonathan L. Gross and Jay Yellen, Handbook of Graph Theory Darrel R. Hankerson, Greg A. Harris, and Peter D. Johnson, Introduction to Information Theory and Data Compression, Second Edition Daryl D. Harms, Miroslav Kraetzl, Charles J. Colbourn, and John S. Devitt, Network Reliability: Experiments with a Symbolic Algebra Environment Leslie Hogben, Handbook of Linear Algebra Derek F. Holt with Bettina Eick and Eamonn A. O’Brien, Handbook of Computational Group Theory David M. Jackson and Terry I. Visentin, An Atlas of Smaller Maps in Orientable and Nonorientable Surfaces Richard E. Klima, Neil P. Sigmon, and Ernest L. Stitzinger, Applications of Abstract Algebra with Maple™ and MATLAB®, Second Edition Patrick Knupp and Kambiz Salari, Verification of Computer Codes in Computational Science and Engineering William Kocay and Donald L.
    [Show full text]
  • Deconfounding Hypothesis Generation and Evaluation In
    Deconfounding Hypothesis Generation and Evaluation in Bayesian Models Elizabeth Baraff Bonawitz (liz [email protected]) Department of Psychology, 5427 Tolman Hall Berkeley, CA 94720 USA Thomas L. Griffiths (tom griffi[email protected]) Department of Psychology, 3210 Tolman Hall Berkeley, CA 94720 USA Abstract as data are observed. However, the assumption that learners possess all relevant hypotheses before seeing data is at odds Bayesian models of cognition are typically used to describe human learning and inference at the computational level, iden- with numerous findings suggesting that generating appropri- tifying which hypotheses people should select to explain ob- ate hypotheses can be one of the hardest parts of inductive in- served data given a particular set of inductive biases. However, ference (e.g., Kuhn, 1989; Klahr, Fay, & Dunbar, 1993). We such an analysis can be consistent with human behavior even if people are not actually carrying out exact Bayesian infer- thus consider the consequences of separating the processes of ence. We analyze a simple algorithm by which people might generating hypotheses and evaluating those hypotheses, as- be approximating Bayesian inference, in which a limited set of suming that learners perform Bayesian inference with only hypotheses are generated and then evaluated using Bayes’ rule. Our mathematical results indicate that a purely computational- the set of hypotheses they generate. level analysis of learners using this algorithm would confound To investigate this, we present a mathematical analysis of the distinct processes of hypothesis generation and hypothe- sis evaluation. We use a causal learning experiment to estab- a simple algorithm in which hypothesis generation and evalu- lish empirically that the processes of generation and evalua- ation are separated.
    [Show full text]
  • On the Security of Mix-Nets and Hierarchical Group Signatures
    On the Security of Mix-Nets and Hierarchical Group Signatures DOUGLAS WIKSTRÖM Doctoral Thesis Stockholm, Sweden 2005 Skolan för datavetenskap och kommunikation Kungliga Tekniska högskolan SE-100 44 Stockholm SWEDEN TRITA NA 05-38 ISSN 0348-2952 ISRN KTH/NA/R--05/38--SE ISBN 91-7178-200-1 c Douglas Wikström, december 2005 Tryck: Universitetsservice US AB iii Abstract In this thesis we investigate two separate cryptographic notions: mix-nets and hier- archical group signatures. The former notion was introduced by Chaum (1981). The latter notion is introduced in this thesis, but it generalizes the notion of group signatures which was introduced by Chaum and Heyst (1991). Numerous proposals for mix-nets are given in the literature, but these are presented with informal security arguments or at best partial proofs. We illustrate the need for a rigorous treatment of the security mix-nets by giving several practical attacks against a construction of Golle et al. (2002). Then we provide the first definition of security of a mix-net in the universally composable security framework (UC-framework) introduced by Canetti (2001). We construct two distinct efficient mix-nets that are provably secure under standard assumptions in the UC-framework against an adversary that corrupts any minority of the mix-servers and any set of senders. The first construction is based on the El Gamal cryptosystem (1985) and is secure against a static adversary, i.e., an adversary that decides which parties to corrupt before the execution of the protocol. This is the first efficient UC-secure mix-net in the literature and the first sender verifiable mix-net that is robust.
    [Show full text]
  • Plasmodium Subtilisin-Like Protease 1 (SUB1): Insights Into the Active-Site Structure, Specificity and Function of a Pan-Malaria Drug Target
    International Journal for Parasitology 42 (2012) 597–612 Contents lists available at SciVerse ScienceDirect International Journal for Parasitology journal homepage: www.elsevier.com/locate/ijpara Plasmodium subtilisin-like protease 1 (SUB1): Insights into the active-site structure, specificity and function of a pan-malaria drug target Chrislaine Withers-Martinez a, Catherine Suarez a, Simone Fulle b, Samir Kher c, Maria Penzo a, ⇑ Jean-Paul Ebejer b, Kostas Koussis a, Fiona Hackett a, Aigars Jirgensons c, Paul Finn b, Michael J. Blackman a, a Division of Parasitology, MRC National Institute for Medical Research (NIMR), Mill Hill, London NW7 1AA, UK b InhibOx Ltd., New Road, Oxford OX1 1BY, UK c Latvian Institute of Organic Synthesis, Aizkraukles 21, LV-1006 Riga, Latvia article info abstract Article history: Release of the malaria merozoite from its host erythrocyte (egress) and invasion of a fresh cell are crucial Received 2 January 2012 steps in the life cycle of the malaria pathogen. Subtilisin-like protease 1 (SUB1) is a parasite serine pro- Received in revised form 29 March 2012 tease implicated in both processes. In the most dangerous human malarial species, Plasmodium falcipa- Accepted 12 April 2012 rum, SUB1 has previously been shown to have several parasite-derived substrates, proteolytic cleavage Available online 27 April 2012 of which is important both for egress and maturation of the merozoite surface to enable invasion. Here we have used molecular modelling, existing knowledge of SUB1 substrates, and recombinant expression Keywords: and characterisation of additional Plasmodium SUB1 orthologues, to examine the active site architecture Plasmodium and substrate specificity of P.
    [Show full text]
  • Recent Advances in Information Technology
    RECENT ADVANCES IN INFORMATION TECHNOLOGY EDITED BY WALDEMAR WÓJCIK AND JAN SIKORA Faculty of Electrical Engineering and Computer Science, Lublin University of Technology, Lublin, Poland LUBLIN 2017 CONTENS 1. CHAPTER 1: SECURITY ESTIMATES UPDATING OF ASYMMETRIC CRYPTOSYSTEMS FOR MODERN COMPUTING 1.1. The effectiveness of different computational models for numbers factorization 1.2. Rho-pollard algorithm 1.3. Selecting crypto parameters 1.4. Distribution and amount of strong primes 1.5. Features of factorization algorithm elaboration for cloud computing 1.6. Conclusions 2. CHAPTER 2: GAME PROBLEMS OF CONTROL FOR FUNCTIONAL- DIFFERENTIAL SYSTEMS 2.1. Problem statement, time of the “first absorption” 2.2. Sufficient conditions for the game termination 2.3. Integro-differential approach 2.4. Example of the integro-differential game approach 2.5. Quasilinear positional integral games approach 2.6. Case of the pursuit problem 2.7. Connection of integral and differential games of approach 2.8. Positional control in differential- difference games 2.9. Time of the ”first absorption” in the linear nonstationary differential game 2.10. Conflict-controlled impulse systems 2.11. Game problems for processes with fractional derivatives 3. CHAPTER 3: INFORMATION TECHNOLOGY FOR AUTOMATED TRANSLATION FROM INFLECTED LANGUAGES TO SIGN LANGUAGE 3.1. Theoretical principles of automated translation system design 3.2. Algorithmic models of automated information technology of translation from inflectional language to sign language 3.3. Experimental testing of informational technology of translation from ukrainian to sign language 3.4. Conclusion 4. CHAPTER 4: INTEROPERABILITY OF THE HEALTH CARE INFORMATION RESOURCES 4.1. Strategy for his development 4.2. The fhir specification concept 4.3.
    [Show full text]