Computer Algebra and Computer Algebra Systems L algèbre computationnelle et systèmes d algèbre computationnelle (Org: Michael Monagan (SFU))

Similar documents
Exact Computation of the Real Solutions of Arbitrary Polynomial Systems

Change of Ordering for Regular Chains in Positive Dimension

Polynomial multiplication and division using heap.

Solving Parametric Polynomial Systems by RealComprehensiveTriangularize

Sparse Polynomial Multiplication and Division in Maple 14

In-place Arithmetic for Univariate Polynomials over an Algebraic Number Field

Between Sparse and Dense Arithmetic

WORKING WITH MULTIVARIATE POLYNOMIALS IN MAPLE

A Maple Package for Parametric Matrix Computations

Real Root Isolation of Regular Chains.

Solving Sparse Rational Linear Systems. Pascal Giorgi. University of Waterloo (Canada) / University of Perpignan (France) joint work with

Lattice reduction of polynomial matrices

MITACS Project CV and Business Plan. Mathematics of Computer Algebra and Analysis (MOCAA)

Efficient Algorithms for Order Bases Computation

Algorithms for the Non-monic Case of the Sparse Modular GCD Algorithm

Computing with Constructible Sets in Maple

Dense Arithmetic over Finite Fields with CUMODP

Output-sensitive algorithms for sumset and sparse polynomial multiplication

Solving Polynomial Systems Symbolically and in Parallel

Inverting integer and polynomial matrices. Jo60. Arne Storjohann University of Waterloo

PART II: Research Proposal Algorithms for the Simplification of Algebraic Formulae

Overview of Computer Algebra

Modular Methods for Solving Nonlinear Polynomial Systems

3 The fundamentals: Algorithms, the integers, and matrices

Computer Algebra: General Principles

Fast computation of normal forms of polynomial matrices

College Algebra with Corequisite Support: Targeted Review

Algorithms for exact (dense) linear algebra

Mathematics for Cryptography

What s the best data structure for multivariate polynomials in a world of 64 bit multicore computers?

SOLVING VIA MODULAR METHODS

An application of regular chain theory to the study of limit cycles

Mathematical Foundations of Cryptography

Mathematics Online Instructional Materials Correlation to the 2009 Algebra II Standards of Learning and Curriculum Framework

Anatomy of SINGULAR talk at p. 1

Sparse Polynomial Division Using a Heap

POLY : A new polynomial data structure for Maple.

Algebraic Complexity Theory

Giac and GeoGebra: improved Gröbner basis computations

SEVENTH EDITION and EXPANDED SEVENTH EDITION

Computing Limits of Real Multivariate Rational Functions

Algebra II Learning Targets

College Algebra with Corequisite Support: A Blended Approach

COMPUTER ARITHMETIC. 13/05/2010 cryptography - math background pp. 1 / 162

College Algebra with Corequisite Support: A Compressed Approach

Check boxes of Edited Copy of Sp Topics (was 217-pilot)

Comprehensive Triangular Decomposition

Parallel Integer Polynomial Multiplication Changbo Chen, Svyatoslav Parallel Integer Covanov, Polynomial FarnamMultiplication

POLY : A new polynomial data structure for Maple 17 that improves parallel speedup.

Standard forms for writing numbers

Prep for College Algebra

Miller Objectives Alignment Math

4 Number Theory and Cryptography

K K.OA.2 1.OA.2 2.OA.1 3.OA.3 4.OA.3 5.NF.2 6.NS.1 7.NS.3 8.EE.8c

Prep for College Algebra with Trigonometry

Give algebraic and numeric examples to support your answer. Which property is demonstrated when one combines like terms in an algebraic expression?

Catholic Central High School

TOWARD HIGH-PERFORMANCE POLYNOMIAL SYSTEM SOLVERS BASED ON TRIANGULAR DECOMPOSITIONS. (Spine title: Contributions to Polynomial System Solvers)

Computing with polynomials: Hensel constructions

High-Performance Symbolic Computation in a Hybrid Compiled-Interpreted Programming Environment

Sparse Polynomial Division Using a Heap

College Algebra To learn more about all our offerings Visit Knewton.com

Elementary and Intermediate Algebra

FFT-based Dense Polynomial Arithmetic on Multi-cores

High School Preparation for Algebra 1

Prep for the CSU ELM

LU Factorization. Marco Chiarandini. DM559 Linear and Integer Programming. Department of Mathematics & Computer Science University of Southern Denmark

Algebra 1 Correlation of the ALEKS course Algebra 1 to the Washington Algebra 1 Standards


Executive Assessment. Executive Assessment Math Review. Section 1.0, Arithmetic, includes the following topics:

Computing Characteristic Polynomials of Matrices of Structured Polynomials

Undergraduate Notes in Mathematics. Arkansas Tech University Department of Mathematics. College Algebra for STEM

Curriculum Vitae. Marc Moreno Maza. September 9, 2010

Integers and Division

Fast computation of normal forms of polynomial matrices

Arithmetic, Algebra, Number Theory

Prentice Hall Algebra 1, Foundations Series 2011 Correlated to: Washington Mathematics Standards, Algebra 1 (2008)

Intermediate Algebra

Math 671: Tensor Train decomposition methods

Algebra II. A2.1.1 Recognize and graph various types of functions, including polynomial, rational, and algebraic functions.

Harbor Creek School District. Algebra II Advanced. Concepts Timeframe Skills Assessment Standards Linear Equations Inequalities

An Efficient Algorithm for Computing Parametric Multivariate Polynomial GCD

Computer Algebra and Formal Proof

The Chinese Remainder Theorem

On Newton-Raphson iteration for multiplicative inverses modulo prime powers

Review Questions REVIEW QUESTIONS 71

Ron Paul Curriculum Mathematics 8 Lesson List

California Subject Examinations for Teachers

POLY : A new polynomial data structure for Maple 17 that improves parallel speedup.

MATH 0960 ELEMENTARY ALGEBRA FOR COLLEGE STUDENTS (8 TH EDITION) BY ANGEL & RUNDE Course Outline

NFC ACADEMY COURSE OVERVIEW

MATH Spring 2010 Topics per Section

Algebra 2 (2006) Correlation of the ALEKS Course Algebra 2 to the California Content Standards for Algebra 2

A field F is a set of numbers that includes the two numbers 0 and 1 and satisfies the properties:

Module 1: Equations and Inequalities (30 days) Solving Equations: (10 Days) (10 Days)

Why solve integer linear systems exactly? David Saunders - U of Delaware

An Algorithm For Splitting Polynomial Systems Based On F4

Three Ways to Test Irreducibility

arxiv: v5 [cs.sc] 15 May 2018

Pre Algebra and Introductory Algebra

Transcription:

Computer Algebra and Computer Algebra Systems L algèbre computationnelle et systèmes d algèbre computationnelle (Org: Michael Monagan (SFU)) OLEG GOLUBITSKY, Ontario Research Centre for Computer Algebra, London, Ontario, Canada, N6A 5B7 Implementation of Arithmetics in Aldor Aldor is a programming language designed for implementing symbolic computation algorithms. On the one hand, it allows to encode mathematical structures and algorithms in a natural way, exhibiting their essence and hiding various lower-level programming issues. On the other hand, the Aldor compiler allows to use machine resources much more efficiently than computer algebra systems. The efficiency of implementation of most symbolic methods significantly depends on the efficiency of basic arithmetic operations. The latter include computations with fixed size integers, residue classes modulo an integer, arbitrary precision integers, single and double floating point numbers, and arbitrary precision floating point numbers. We will discuss a new implementation of arithmetic types in Aldor, which combines and extends two existing Aldor libraries, AxlLib and LibAldor. In this implementation, we refine the hierarchy of arithmetic types in an attempt to reflect structural relationships between them more naturally. We also solve the issue of compatibility with multiple platforms, on which the machine arithmetic types may have different sizes. In particular, we develop a general framework for doubling the size of a given machine integer type or restricting it to an integer of smaller size (including a new algorithm for dividing double integers). We show how the Aldor optimizer translates this generic object-oriented code into highly efficient machine code by in-lining small subroutines and unfolding records. This work is part of a larger project on unifying existing Aldor libraries and providing one efficient general-purpose library for implementing computer algebra algorithms. This is joint work with Stephen Watt. HOWARD CHENG, University of Lethbridge, 4401 University Drive, Lethbridge, Alberta Time- and Space-Efficient Evaluation of Some Hypergeometric Constants The current best practical algorithms for the numerical evaluation of hypergeometric constants such as ζ(3) to d decimal digits have time complexity O ( M(d) log 2 d ) and space complexity of O(d log d) or O(d). Following work from Cheng, Gergel, Kim and Zima, we present a new algorithm with the same asymptotic complexity, but more efficient in practice. Our implementation of this algorithm improves over existing programs for the computation of π, and we announce a new record of 2 billion digits for ζ(3). This work was done jointly with Eugene Zima (Wilfrid Laurier University), Guillaume Hanrot, Emmanuel Thomé, and Paul Zimmermann (INRIA, France). VAHID DABBAGHIAN-ABDOLY, Simon Fraser University, Burnaby, BC, V5A 1S6 Implementation of Cellular Automata Models on Maple Cellular Automata is a discrete dynamical model providing an excellent platform for performing behaviour of complex systems with the help of only local information. In this talk I will present a cellular automata model for describing the dynamics of urban transformations such as spread of infectious disease and crime. In particular I will show implementation of some cellular automata models on Maple. 1

RON FERGUSON, Simon Fraser University Search Algorithms for Low Autocorrelation Sequences Low autocorrelation sequences have been studied both for their number theoretic properties and for applications in communications engineering. Such problems as the merit factor problem, the peak sidelobe problem and the existence of barker sequences are both computationally challenging and have deep theoretical implications. The problems may be discrete, as in the cases of binary or n-phase sequences, or continuous, where the sequences are unimodular. We will describe algorithms used to obtain computational results, combining both continuous and discrete approaches as well as both exhaustive and stochastic methods. MARK GIESBRECHT, University of Waterloo, School of Computing Science Complexity and Practicality in Sparse Matrix Computation We present new algorithms for operations related to sparse matrices which are asymptotically faster than those known previously and quite practical in some cases. Sparsity is designated by requiring a fast matrix-vector product typically quasi-linear time which captures many traditional families of sparse or structured matrices. We exhibit a probabilistic algorithm which finds the (dense) inverse of such a sparse matrix with O(n 2.27 ) field operations. This is surprising in that it is less than the cost of dense matrix multiplication and inversion, which was the previously best known approach to sparse matrix inversion. For sparse integer matrices (with constant sized entries), we show how to solve such systems with O(n 2.5 ) machine operations using standard matrix arithmetic. These techniques are shown to be practical at least on some classes of large sparse matrices. This is joint work with Wayne Eberly, Pascal Giorgi, Arne Storjohann and Gilles Villard. OLEG GOLUBITSKY, University of Western Ontario Comprehensive Triangular Decomposition We introduce the concept of comprehensive triangular decomposition (CTD) for a parametric polynomial system F with coefficients in a field. In broad words, this is a finite partition of the the parameter space into regions, so that within each region the geometry (number of irreducible components together with their dimensions and degrees) of the algebraic variety of the specialized system F (u) is the same for all values u of the parameters. We propose an algorithm for computing the CTD of F. It relies on a procedure for solving the following set theoretical instance of the coprime actorization problem. Given a family of constructible sets, A 1,..., A s compute a family B 1,..., B t of pairwise disjoint constructible sets such that, for all index i, the set A i writes as a union of some of the B 1,..., B t. We report on an implementation of our algorithm computing CTDs, based on the RegularChains library in Maple. We provide comparative benchmarks with Maple implementations of related methods for solving parametric polynomial systems. Our results illustrate the good performances of our CTD code. This is joint work with Changbo Chen, Francois Lemaire, Marc Moreno Maza and Wei Pan. BRYAN KRAWETZ, MapleSoft, 615 Kumpf Drive, Waterloo, Ontario Faster polynomial arithmetic over algebraic number and function fields in Maple 11 In Maple, the command evala is used to evaluate expressions in an algebraic number (or function) field. When conditions are appropriate, evala relies on recden, a Maple library designed to work with dense polynomials efficiently. The recden library was developed by M. Monagan and his group at Simon Fraser University. For Maple 11, the core routines of the recden library were converted to internal kernel routines. In this talk, we will give an overview of how these new routines are implemented, as well, we will discuss the performance benefits they provide over the pure library implementation. 2

SCOTT MACLEAN, University of Waterloo Mathematical Symbol Recognition in the MathBrush System The MathBrush project at the University of Waterloo is a vehicle for investigating issues which arise in the construction of penbased interfaces for computer algebra systems. Our prototype application currently comprises several components including an interface module, a pretty-printer, a symbol recognizer, and a structural analyzer. Here, we outline the MathBrush system in its entirety but focus on the symbol recognition module, demonstrating particular difficulties associated with recognizing symbols in the context of mathematical expressions as opposed to English text and describing our techniques for addressing these difficulties. We detail our experiments with various recognition algorithms, our approach to stroke grouping in a mathematical context, and aspects of our recognizer intended to improve performance and usability. Ongoing work incorporating feedback between the symbol recognition and structural analysis modules to improve recognition accuracy is also described. MATT MALENFANT, University of Western Ontario Better Evaluation Points for the Interpolation of Sparse Symbolic Polynomials Symbolic polynomials, whose exponents themselves are integer-valued multivariate polynomials, arise often in algorithm analysis. Unfortunately, modern computer algebra systems do not provide ample support for said algebraic structures. Basic operations involving symbolic polynomials are indeed trivial (addition, multiplication, derivatives); however, other crucial operations remain much more difficult, such as factorization, GCD, Gröbner Bases. The exponent variables can be evaluated, producing Laurent Polynomials which can then be interpolated back to their original form. For a t-sparse exponent polynomials of p variables and degree d, sparse interpolation can be used to reduce the required number of images from O ( (d + 1) p) to O(pdt). In practice, selecting random, or small evaluations will often result in polynomials of very large degree. In this talk, we will describe a method of selecting evaluation points, that will minimize the maximum degree of the input symbolic exponents. MICHAEL MONAGAN, University of Western Ontario Solving Linear Systems over Cyclotomic Fields We present three algorithms for solving a linear system Ax = b over a cyclotomic field. If m(z) is the minimal polynomial for the field, a cyclotomic polynomial, then what makes this problem of special interest is that it is relatively easy to find primes which split m(z) into linear factors. This means we can solve Ax = b modulo a prime at each root of m(z), potentially in parallel. Our first algorithm uses Chinese remaindering and rational reconstruction. Our second algorithm uses linear p-adic lifting and rational reconstruction. A third approach is to express the solutions as ratios of determinants. This can be a factor of d = deg m(z) more compact. In the talk we will present the algorithms and improvements made to improve the complexity of the reconstruction, and, for the p-adic lifting approach, computation of the error. We have implemented the three algorithms in Maple. We present timings comparing the three algorithms on two sets of benchmarks, firstly, a set of real problems arising from computational group theory. These problems have the property that the size of the rationals in the solution vector x is much smaller than they can be in general. The second set is for problems where the integers in the input are generated at uniformly at random. This is joint work with Liang Chen at SFU. ROMAN PEARCE, Simon Fraser University Sparse Polynomial Arithmetic using Heaps 3

We present some old and seemingly forgotten algorithms for multiplying and dividing sparse polynomials using heaps. The algorithms do an n-ary merge of all partial products using only a heap of pointers into the input, constructing exactly the terms that appear in the result. The amount of memory required is linear in the size of the smaller input for multiplication or in the quotient or the divisor for division. We also constructed a variant of the division algorithm that is linear time in the size of the quotient, something which is not possible for algorithms based on merging. As a result, some common cases of exact division can be done an order of magnitude faster using an order of magnitude less memory than with a divide and conquer strategy, such as geobuckets. We plan to integrate our C library into the next release of Maple. This is joint work with Dr. Michael Monagan at Simon Fraser University. GREG REID, Department of Applied Mathematics, University of Western Ontario, Middlesex College, London, ON, N6A 5B7 Introduction to Symbolic-Numeric Completion Methods for PDE Differential elimination methods apply a finite sequence of differentiations and eliminations to general systems of PDE to extract potent information about their solutions. Much recent progress has been made in the design and implementation of exact algorithms, applying to exact input sytems, by researchers such as Boulier, Hubert, Mansfied, Seiler, Wittkopf and others. Though powerful, such methods cannot be applied to approximate systems, since the strong underlying use of rankings of partial derivatives, often induces instability, by forcing such methods to pivot on small quantities. The talk will be an introduction to the new area of symbolic-numeric methods for completion of PDE. Main features include the focus on geometric methods and the use of homotopy-continuation methods for the detection of new constraints by slicing varieties in jet space with random hyperplanes. Our most recent work on this topic will be presented in this talk. ALLAN WITTKOPF, MapleSoft, 615 Kumpf Drive, Waterloo, Ontario, N2V 1K8 What s new in Maple 11 I will give an overview of the new features in Maple 11, including: interface features, such as drawing, and new array plots; new packages (Graph Theory, Physics, etc.); symbolic computation improvements (Groebner, summation, inequality solving); numeric computation improvements (fsolve, numeric integration/summation, ODE solutions); and several other features. WENYUAN WU, Department of Applied Mathematics, University of Western Ontario, Middlesex College, London, ON, N6A 5B7 New Progress on Implicit Riquier Bases for PDE Riquier Bases for systems of analytic PDE are, loosely speaking, a differential analogue of Grobner Bases for polynomial equations. They are determined in the exact case by applying a sequence of prolongations and eliminations to an input system of PDE. We present a symbolic-numeric method to determine Riquier Bases in implicit form for systems which are dominated by pure derivatives in one of the independent variables and have the same number of PDE and unknowns. The method is successful provided the prolongations with respect to the dominant independent variable have a block structure which is uncovered by Linear Programming and certain Jacobians are non-singular when evaluated at points on the zero sets defined by the functions 4

of the PDE. For polynomially nonlinear PDE, homotopy continuation methods from Numerical Algebraic Geometry can be used to compute approximations of the points. WEI ZHOU, University of Waterloo Fraction-free Computation of LCM and GCD by values Given the values of two univariate polynomials at a set of interpolation points, we examine the problem of computing the values of their least common multiple (LCM) and their greatest common divisor (GCD) at these points. We show that the values of an LCM of two univariate polynomials can be computed directly from the values of the polynomials and the interpolation points without first converting the polynomials to the standard power form. The result is the interpolation data for the LCM of the input polynomials. The values of a GCD can then be computed from the values of the LCM. 5