Computer Algebra
eBook - ePub

Computer Algebra

Concepts and Techniques

Edmund A. Lamagna

Buch teilen
  1. 350 Seiten
  2. English
  3. ePUB (handyfreundlich)
  4. Über iOS und Android verfügbar
eBook - ePub

Computer Algebra

Concepts and Techniques

Edmund A. Lamagna

Angaben zum Buch
Buchvorschau
Inhaltsverzeichnis
Quellenangaben

Über dieses Buch

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

Häufig gestellte Fragen

Wie kann ich mein Abo kündigen?
Gehe einfach zum Kontobereich in den Einstellungen und klicke auf „Abo kündigen“ – ganz einfach. Nachdem du gekündigt hast, bleibt deine Mitgliedschaft für den verbleibenden Abozeitraum, den du bereits bezahlt hast, aktiv. Mehr Informationen hier.
(Wie) Kann ich Bücher herunterladen?
Derzeit stehen all unsere auf Mobilgeräte reagierenden ePub-Bücher zum Download über die App zur Verfügung. Die meisten unserer PDFs stehen ebenfalls zum Download bereit; wir arbeiten daran, auch die übrigen PDFs zum Download anzubieten, bei denen dies aktuell noch nicht möglich ist. Weitere Informationen hier.
Welcher Unterschied besteht bei den Preisen zwischen den Aboplänen?
Mit beiden Aboplänen erhältst du vollen Zugang zur Bibliothek und allen Funktionen von Perlego. Die einzigen Unterschiede bestehen im Preis und dem Abozeitraum: Mit dem Jahresabo sparst du auf 12 Monate gerechnet im Vergleich zum Monatsabo rund 30 %.
Was ist Perlego?
Wir sind ein Online-Abodienst für Lehrbücher, bei dem du für weniger als den Preis eines einzelnen Buches pro Monat Zugang zu einer ganzen Online-Bibliothek erhältst. Mit über 1 Million Büchern zu über 1.000 verschiedenen Themen haben wir bestimmt alles, was du brauchst! Weitere Informationen hier.
Unterstützt Perlego Text-zu-Sprache?
Achte auf das Symbol zum Vorlesen in deinem nächsten Buch, um zu sehen, ob du es dir auch anhören kannst. Bei diesem Tool wird dir Text laut vorgelesen, wobei der Text beim Vorlesen auch grafisch hervorgehoben wird. Du kannst das Vorlesen jederzeit anhalten, beschleunigen und verlangsamen. Weitere Informationen hier.
Ist Computer Algebra als Online-PDF/ePub verfügbar?
Ja, du hast Zugang zu Computer Algebra von Edmund A. Lamagna im PDF- und/oder ePub-Format sowie zu anderen beliebten Büchern aus Mathématiques & Mathématiques générales. Aus unserem Katalog stehen dir über 1 Million Bücher zur Verfügung.

Information

Verlag
CRC Press
Jahr
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...

Inhaltsverzeichnis