Computer Algebra
eBook - ePub

Computer Algebra

Concepts and Techniques

Edmund A. Lamagna

Compartir libro
  1. 350 páginas
  2. English
  3. ePUB (apto para móviles)
  4. Disponible en iOS y Android
eBook - ePub

Computer Algebra

Concepts and Techniques

Edmund A. Lamagna

Detalles del libro
Vista previa del libro
Índice
Citas

Información del 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

Preguntas frecuentes

¿Cómo cancelo mi suscripción?
Simplemente, dirígete a la sección ajustes de la cuenta y haz clic en «Cancelar suscripción». Así de sencillo. Después de cancelar tu suscripción, esta permanecerá activa el tiempo restante que hayas pagado. Obtén más información aquí.
¿Cómo descargo los libros?
Por el momento, todos nuestros libros ePub adaptables a dispositivos móviles se pueden descargar a través de la aplicación. La mayor parte de nuestros PDF también se puede descargar y ya estamos trabajando para que el resto también sea descargable. Obtén más información aquí.
¿En qué se diferencian los planes de precios?
Ambos planes te permiten acceder por completo a la biblioteca y a todas las funciones de Perlego. Las únicas diferencias son el precio y el período de suscripción: con el plan anual ahorrarás en torno a un 30 % en comparación con 12 meses de un plan mensual.
¿Qué es Perlego?
Somos un servicio de suscripción de libros de texto en línea que te permite acceder a toda una biblioteca en línea por menos de lo que cuesta un libro al mes. Con más de un millón de libros sobre más de 1000 categorías, ¡tenemos todo lo que necesitas! Obtén más información aquí.
¿Perlego ofrece la función de texto a voz?
Busca el símbolo de lectura en voz alta en tu próximo libro para ver si puedes escucharlo. La herramienta de lectura en voz alta lee el texto en voz alta por ti, resaltando el texto a medida que se lee. Puedes pausarla, acelerarla y ralentizarla. Obtén más información aquí.
¿Es Computer Algebra un PDF/ePUB en línea?
Sí, puedes acceder a Computer Algebra de Edmund A. Lamagna en formato PDF o ePUB, así como a otros libros populares de Mathématiques y Mathématiques générales. Tenemos más de un millón de libros disponibles en nuestro catálogo para que explores.

Información

Editorial
CRC Press
Año
2019
ISBN
9781351605823
Edición
1
Categoría
Mathématiques
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...

Índice