Computer Algebra
eBook - ePub

Computer Algebra

Concepts and Techniques

Edmund A. Lamagna

Condividi libro
  1. 350 pagine
  2. English
  3. ePUB (disponibile sull'app)
  4. Disponibile su iOS e Android
eBook - ePub

Computer Algebra

Concepts and Techniques

Edmund A. Lamagna

Dettagli del libro
Anteprima del libro
Indice dei contenuti
Citazioni

Informazioni sul libro

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

Domande frequenti

Come faccio ad annullare l'abbonamento?
È semplicissimo: basta accedere alla sezione Account nelle Impostazioni e cliccare su "Annulla abbonamento". Dopo la cancellazione, l'abbonamento rimarrà attivo per il periodo rimanente già pagato. Per maggiori informazioni, clicca qui
È possibile scaricare libri? Se sì, come?
Al momento è possibile scaricare tramite l'app tutti i nostri libri ePub mobile-friendly. Anche la maggior parte dei nostri PDF è scaricabile e stiamo lavorando per rendere disponibile quanto prima il download di tutti gli altri file. Per maggiori informazioni, clicca qui
Che differenza c'è tra i piani?
Entrambi i piani ti danno accesso illimitato alla libreria e a tutte le funzionalità di Perlego. Le uniche differenze sono il prezzo e il periodo di abbonamento: con il piano annuale risparmierai circa il 30% rispetto a 12 rate con quello mensile.
Cos'è Perlego?
Perlego è un servizio di abbonamento a testi accademici, che ti permette di accedere a un'intera libreria online a un prezzo inferiore rispetto a quello che pagheresti per acquistare un singolo libro al mese. Con oltre 1 milione di testi suddivisi in più di 1.000 categorie, troverai sicuramente ciò che fa per te! Per maggiori informazioni, clicca qui.
Perlego supporta la sintesi vocale?
Cerca l'icona Sintesi vocale nel prossimo libro che leggerai per verificare se è possibile riprodurre l'audio. Questo strumento permette di leggere il testo a voce alta, evidenziandolo man mano che la lettura procede. Puoi aumentare o diminuire la velocità della sintesi vocale, oppure sospendere la riproduzione. Per maggiori informazioni, clicca qui.
Computer Algebra è disponibile online in formato PDF/ePub?
Sì, puoi accedere a Computer Algebra di Edmund A. Lamagna in formato PDF e/o ePub, così come ad altri libri molto apprezzati nelle sezioni relative a Mathématiques e Mathématiques générales. Scopri oltre 1 milione di libri disponibili nel nostro catalogo.

Informazioni

Editore
CRC Press
Anno
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...

Indice dei contenuti