Elementary Number Theory with Programming (inbunden)
Format
Inbunden (Hardback)
Språk
Engelska
Antal sidor
240
Utgivningsdatum
2015-06-30
Upplaga
1
Förlag
John Wiley & Sons Inc
Medarbetare
Meyer, Jeanine
Illustrationer
black & white illustrations
Dimensioner
236 x 155 x 20 mm
Vikt
477 g
Antal komponenter
1
Komponenter
52:B&W 6.14 x 9.21in or 234 x 156mm (Royal 8vo) Case Laminate on White w/Gloss Lam
ISBN
9781119062769

Elementary Number Theory with Programming

Inbunden,  Engelska, 2015-06-30
1102
  • Skickas från oss inom 5-8 vardagar.
  • Fri frakt över 249 kr för privatkunder i Sverige.
Finns även som
Visa alla 2 format & utgåvor
A highly successful presentation of the fundamental concepts of number theory and computer programming Bridging an existing gap between mathematics and programming, Elementary Number Theory with Programming provides a unique introduction to elementary number theory with fundamental coverage of computer programming. Written by highly-qualified experts in the fields of computer science and mathematics, the book features accessible coverage for readers with various levels of experience and explores number theory in the context of programming without relying on advanced prerequisite knowledge and concepts in either area. Elementary Number Theory with Programming features comprehensive coverage of the methodology and applications of the most well-known theorems, problems, and concepts in number theory. Using standard mathematical applications within the programming field, the book presents modular arithmetic and prime decomposition, which are the basis of the public-private key system of cryptography. In addition, the book includes: Numerous examples, exercises, and research challenges in each chapter to encourage readers to work through the discussed concepts and ideas Select solutions to the chapter exercises in an appendix Plentiful sample computer programs to aid comprehension of the presented material for readers who have either never done any programming or need to improve their existing skill set A related website with links to select exercises An Instructors Solutions Manual available on a companion website Elementary Number Theory with Programming is a useful textbook for undergraduate and graduate-level students majoring in mathematics or computer science, as well as an excellent supplement for teachers and students who would like to better understand and appreciate number theory and computer programming. The book is also an ideal reference for computer scientists, programmers, and researchers interested in the mathematical applications of programming.
Visa hela texten

Passar bra ihop

  1. Elementary Number Theory with Programming
  2. +
  3. Co-Intelligence

De som köpt den här boken har ofta också köpt Co-Intelligence av Ethan Mollick (häftad).

Köp båda 2 för 1292 kr

Kundrecensioner

Har du läst boken? Sätt ditt betyg »

Fler böcker av författarna

Recensioner i media

"It consists of nine chapters, all including the corresponding programs along with their mathematical content. The mathematical structure is also interesting and well-formed starting from special numbers, primes and Pell equation, to Pascal's triangle, prime decomposition and modular arithmetic and finishing with number-theoretic functions, the Euler Phi-function, sums and partitions and the classical application to cryptography. It is also remarkable that the main scope of the programs is defined before their use from the reader, providing him the best orientation for his study." (Zentralblatt MATH 2016)

Övrig information

Marty Lewinter, PhD, is Professor Emeritus of Mathematics at the State University of New York, Purchase College. The author of three books and more than 80 articles, he is Executive Director of Mathematics at American Digital University Services. Jeanine Meyer, PhD, is Professor of Mathematics/Computer Science at the State University of New York, Purchase College. She is the author of six books as well as numerous journal articles.

Innehållsförteckning

Preface xi Words xiii Notation in Mathematical Writing and in Programming xv 1 Special Numbers: Triangular, Oblong, Perfect, Deficient, and Abundant 1 The programs include one for factoring numbers and one to test a conjecture up to a fixed limit. Triangular Numbers 1 Oblong Numbers and Squares 3 Deficient, Abundant, and Perfect Numbers 4 Exercises 7 2 Fibonacci Sequence, Primes, and the Pell Equation 13 The programs include examples that count steps to compare two different approaches. Prime Numbers and Proof by Contradiction 13 Proof by Construction 17 Sums of Two Squares 18 Building a Proof on Prior Assertions 18 Sigma Notation 19 Some Sums 19 Finding Arithmetic Functions 20 Fibonacci Numbers 22 An Infinite Product 26 The Pell Equation 26 Goldbachs Conjecture 30 Exercises 31 3 Pascals Triangle 44 The programs include examples that generate factorial using iteration and using recursion and thus demonstrate and compare important techniques in programming. Factorials 44 The Combinatorial Numbers n Choose k 46 Pascals Triangle 48 Binomial Coefficients 50 Exercises 50 4 Divisors and Prime Decomposition 56 The programs include one that uses the algorithm to produce the GCD of a pair of numbers and a program to produce the prime decomposition of a number. Divisors 56 Greatest Common Divisor 58 Diophantine Equations 65 Least Common Multiple 67 Prime Decomposition 68 Semiprime Numbers 70 When is a Number an mth Power? 71 Twin Primes 73 Fermat Primes 73 Odd Primes Are Differences of Squares 74 When is n a Linear Combination of a and b? 75 Prime Decomposition of n! 76 No Nonconstant Polynomial with Integer Coefficients Assumes Only Prime Values 77 Exercises 78 5 Modular Arithmetic 85 One program checks if a mod equation is true, and another determines the solvability of a mod equation and then solves an equation that is solvable by a brute-force approach. Congruence Classes Mod k 85 Laws of Modular Arithmetic 87 Modular Equations 90 Fermats Little Theorem 91 Fermats Little Theorem 92 Multiplicative Inverses 92 Wilsons Theorem 93 Wilsons Theorem 95 Wilsons Theorem (2nd Version) 95 Squares and Quadratic Residues 96 Lagranges Theorem 98 Lagranges Theorem 99 Reduced Pythagorean Triples 100 Chinese Remainder Theorem 102 Chinese Remainder Theorem 103 Exercises 104 6 Number Theoretic Functions 111 The programs include two distinct approaches to calculating the tau function. The Tau Function 111 The Sigma Function 114 Multiplicative Functions 115 Perfect Numbers Revisited 115 Mersenne Primes 116 F(n) = f(d) Where d is a Divisor of n 117 The Mbius Function 119 The Riemann Zeta Function 121 Exercises 124 7 The Euler Phi Function 134 The programs demonstrate two approaches to calculating the phi function. The Phi Function 134 Eulers Generalization of Fermats Little Theorem 138 Phi of a Product of m and n When gcd(m,n) > 1 139 The Order of a (mod n) 139 Primitive Roots 140 The Index of m (mod p) Relative to a 141 To Be or Not to Be a Quadratic Residue 145 The Legendre Symbol 146 Quadratic Reciprocity 147 Law of Quadratic Reciprocity 148 When Does x2 = a (mod n) Have a Solution? 148 Exercises 150 8 Sums and Partitions 158 The exposition explains the central role of binary representation in computing and the programs produce the binary partition using a built-in function. An nth Power is the Sum of Two Squares 158 Solutions to the Diophantine Equation a2 + b2 + c2 = d2 159 Row Sums of a Triangular Array of Consecutive Odd Numbers 160 Partitions 160 When is a Number the Sum of Two Squares? 167 Sums of Four or Fewer Squares 170 Exercises 175 9 Cryptography 182 The programs include different ways to generate counts of letters and also Fermat factoring. Introduction and History 182 Public-Key Cryptography 187 Factoring Large Nu