Computer Algebra
eBook - ePub

Computer Algebra

Concepts and Techniques

Edmund A. Lamagna

Share book
  1. 350 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

Computer Algebra

Concepts and Techniques

Edmund A. Lamagna

Book details
Book preview
Table of contents
Citations

About This Book

The goal of Computer Algebra: Concepts and Techniques is to demystify computer algebra systems for a wide audience including students, faculty, and professionals in scientific fields such as computer science, mathematics, engineering, and physics. Unlike previous books, the only prerequisites are knowledge of first year calculus and a little programming experience — a background that can be assumed of the intended audience. The book is written in a lean and lively style, with numerous examples to illustrate the issues and techniques discussed. It presents the principal algorithms and data structures, while also discussing the inherent and practical limitations of these systems

Frequently asked questions

How do I cancel my subscription?
Simply head over to the account section in settings and click on “Cancel Subscription” - it’s as simple as that. After you cancel, your membership will stay active for the remainder of the time you’ve paid for. Learn more here.
Can/how do I download books?
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
What is the difference between the pricing plans?
Both plans give you full access to the library and all of Perlego’s features. The only differences are the price and subscription period: With the annual plan you’ll save around 30% compared to 12 months on the monthly plan.
What is Perlego?
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Do you support text-to-speech?
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Is Computer Algebra an online PDF/ePUB?
Yes, you can access Computer Algebra by Edmund A. Lamagna in PDF and/or ePUB format, as well as other popular books in Mathématiques & Mathématiques générales. We have over one million books available in our catalogue for you to explore.

Information

Publisher
CRC Press
Year
2019
ISBN
9781351605823
Chapter 1
Introduction
The last thing one knows when writing a book is what to put first.
Blaise Pascal
(1623–1662) Pensées, 1660
How thoroughly it is ingrained in mathematical science that every real advance goes hand in hand with the invention of sharper tools and simpler methods which, at the same time, assist in understanding earlier theories and in casting aside some more complicated developments.
David Hilbert
(1862–1943) International Congress of Mathematicians, Paris, 1900
Computer algebra systems (CAS) provide impressive mathematical capabilities that have revolutionized the way mathematics is done and taught. They can perform without error gargantuan calculations that would be infeasible to attempt by hand. Accordingly, CAS have become commonplace computational and modeling tools in the scientific and engineering workplace. They have also been incorporated into the mathematics curricula at many colleges and universities starting with calculus and moving to more advanced topics such as linear algebra and differential equations. Yet despite their widespread application and importance, few users are familiar with the inner workings of CAS. The goal of this book is to demystify CAS for a wide audience that includes students, faculty, and professionals in scientific fields such as computer science, mathematics, engineering, and physics.
1.1 What is Computer Algebra?
Computer algebra is a branch of scientific computation that lies at the intersection of computer science and mathematics. It is readily distinguished from numerical analysis, the other principal branch of scientific computation, in that it involves the manipulation of formulas rather than only numbers. An article in the Encyclopedia of Computer Science (2000) by Gaston H. Gonnet and Dominik W. Gruntz defines computer algebra as “computation with variables and constants according to the rules of algebra, analysis, and other branches of mathematics.” The authors go on to describe computer algebra as “formula manipulation involving symbols, unknowns, and formal operations rather than with conventional computer data of numbers and character strings.”
Computer algebra systems can be classified as either special purpose or general purpose. Special purpose systems are designed to solve problems in one specific area of science or mathematics, such as celestial mechanics or group theory. General purpose systems are, of course, intended for use in most scientific and mathematical fields. General systems are typically used interactively and provide the following facilities:
symbolic computation: expansion and factorization of polynomials, differentiation, indefinite and exact definite integration, exact solution of equations and systems of equations, and linear algebra
numerical computation: arbitrary precision numerical computation including definite integration, numerical solution of equations, and evaluation of elementary and special functions
graphics: plotting in two and three dimensions
programming: an embedded programming language and data structures allowing users to extend the system
The focus of this book is on the symbolic capabilities of computer algebra systems. We present several examples that illustrate the types of calculations these systems can perform and which distinguish them from other mathematical software. First, CAS perform exact arithmetic and can make transformations such as
12+1356,1(21)23+22.
Most calculators would give only the numerical approximations 0.833333 … and 5.82843 … to these quantities. Moreover, CAS perform calculations with essentially unlimited precision and can therefore produce results like
100!9332621544394415268169923885626670049071596826438162146 8592963895217599993229915608941463976156518286253697 920827223758251185210916864000000000000000000000000.
Another important capability of computer algebra systems is their ability to manipulate polynomials and rational functions (ratios of polynomials). CAS can expand polynomials by multiplying out products,
(x24x+4)(x2+4x+4)x48x2+16,
factor polynomials,
(x24x+4)(x2+4x+4)(x2)2(x+2)2,
and simplify polynomial ratios by removing the greatest common divisor,
x41x811x4+1.
Computer algebra systems can also perform exact computations with elementary transcendental functions (exponentials, logarithms, trigonometric and inverse trigonometric functions). For example,
sin (π/3)32,arccos(2/2)π4,
rather than 0.866025 … and 0.785398 …. CAS can apply multiangle trigonometric identities in either direction,
sin (3x)4sin x(cos x)2sin x,
as well as expand and factor polynomials of functions,
(e3x1)(e2x1)e5xe3xe2x+1,(e3x1)(e2x1)(ex1)2(ex1)(e2x+ex+1).
Another feature of computer algebra systems is their ability to perform the basic operations of calculus (differentiation, indefinite and exact definite integration, calculation of limits, series expansion, and summation) and linear algebra. For instance, CAS can transform
ddxx2cos x2xcos xx2sin x
and
xexdxxexex,
and determine that ex2dx cannot be expressed with only elementary functions.
The term comput...

Table of contents