Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Introduction to computer algebra systems? [closed]

Does anybody know of any resources (books, classes, lecture notes, or anything) about the general theory of computer algebra systems (e.g. mathematica, sympy)?

"Introductory" materials are preferred, but I realize that with such a specialized subject anything is bound to be fairly advanced.

like image 669
rz. Avatar asked Dec 08 '08 07:12

rz.


People also ask

How do computer algebra systems work?

Symbolic computing of mathematical expressions A computer algebra system (CAS) solves, plots, and manipulates mathematical expressions in an analytical form. CASs support a wide range of mathematics such as linear algebra, calculus, and algebraic and ordinary differential equations.

When was computer algebra invented?

Computer Algebra Systems were originally conceived in the early 1970's by researchers work- ing in the area of artificial intelligence. The first popular systems were Reduce, Derive and Macsyma. Commercial versions of these programs are still available.

What do you mean by computer algebra system?

A computer algebra system (CAS) or symbolic algebra system (SAS) is any mathematical software with the ability to manipulate mathematical expressions in a way similar to the traditional manual computations of mathematicians and scientists.

Is Maple a computer algebra system?

Maple's capacity for symbolic computing include those of a general-purpose computer algebra system. For instance, it can manipulate mathematical expressions and find symbolic solutions to certain problems, such as those arising from ordinary and partial differential equations.


1 Answers

"General Theory" of CAS is a pretty huge scope for a question. That being said, I'll do my best to cover as much as I can in the hopes that something helps you find what you're looking for :)

The proceedings of the ISSAC and SIGSAM groups would no doubt have some good stuff about techniques for building CAS systems. A list of various topics in the general area of CAS building is available here: http://www.cs.berkeley.edu/~fateman/algebra.html

If you're more looking for information on how to code some of the math involved, I'm a fan of the "Numerical Recipes" series; it provides sample code and a reasonably decent explanation of math in a wide range of topics. Last I checked, an online version of an older revision of the book was available here: http://www.nrbook.com/a/bookcpdf.php (Note that this is the "Numerical Recipes in C" form of the book; there are versions in other languages as well).

For building a CAS in general, one place to start might be here: "Building a computer algebra environment by composition of collaborative tools" by Kajler and Safir; Another place you might check is here: http://www.math.wpi.edu/IQP/BVCalcHist/calc5.html where a high-level description of how a few folks implemented a CAS is listed.

The other thing you might try is diving into the code for a few of the open source CAS projects that exist: YACAS (Yet Another Computer Algebra System : Java), Axiom, etc. I like the list here: http://en.wikipedia.org/wiki/List_of_computer_algebra_systems

Hope something in there was useful!

like image 167
user43922 Avatar answered Sep 24 '22 02:09

user43922