A Mathematica Primer for Physicists
eBook - ePub

A Mathematica Primer for Physicists

Jim Napolitano

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

A Mathematica Primer for Physicists

Jim Napolitano

Detalles del libro
Vista previa del libro
Índice
Citas

Información del libro

"…an excellent text for either a short course or self-study… Professor Napolitano has figured out what students really need, and found a way to deliver it… I have found everything he writes to be worthy of my serious attention…"
—Peter D. Persans, Professor of Physics and Director, Center for Integrated Electronics, Rensselaer Polytechnic Institute

Learn how to use Mathematica quickly for basic problems in physics. The author introduces all the key techniques and then shows how they're applied using common examples. Chapters cover elementary mathematics concepts, differential and integral calculus, differential equations, vectors and matrices, data analysis, random number generation, animation, and visualization.



  • Written in an appealing, conversational style


  • Presents important concepts within the framework of Mathematics


  • Gives examples from frequently encountered physics problems


  • Explains problem-solving in a step-by-step fashion

Jim Napolitano is professor and chair in the Department of Physics at Temple University. He is the author of other textbooks, including co-author with Alistair Rae of Quantum Mechanics, Sixth Edition, also published by Taylor & Francis / CRC Press.

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 A Mathematica Primer for Physicists un PDF/ePUB en línea?
Sí, puedes acceder a A Mathematica Primer for Physicists de Jim Napolitano en formato PDF o ePUB, así como a otros libros populares de Sciences physiques y Physique. Tenemos más de un millón de libros disponibles en nuestro catálogo para que explores.

Información

Editorial
CRC Press
Año
2018
ISBN
9781351979207
Edición
1
Categoría
Physique

Contents

CHAPTER 1 Introduction
1.1 GETTING STARTED
1.2 BUILT-IN OBJECTS
1.3 FUNCTIONS
1.4 SIMPLE PLOTTING
1.5 GOOD HABITS FOR WRITING NOTEBOOKS
1.6 PHYSICS EXAMPLE
1.7 GETTING HELP
1.8 CHAPTER SUMMARY
CHAPTER 2 Solving Algebraic Equations
2.1 SYNTAX FOR EQUATIONS AND SOLUTIONS
2.2 LIST MANIPULATIONS
2.3 SYSTEMS OF EQUATIONS
2.4 COMPLEX NUMBERS
2.5 PHYSICS EXAMPLES
2.6 CHAPTER SUMMARY
CHAPTER 3 Derivatives, Integrals, and Series
3.1 DERIVATIVES
3.2 INDEFINITE INTEGRALS
3.3 DEFINITE INTEGRALS
3.4 NUMERICAL INTEGRATION
3.5 POWER SERIES
3.6 PHYSICS EXAMPLES
3.7 CHAPTER SUMMARY
CHAPTER 4 Differential Equations: Analytic Solutions
4.1 FIRST ORDER ORDINARY DIFFERENTIAL EQUATIONS
4.2 SECOND ORDER ORDINARY DIFFERENTIAL EQUATIONS
4.3 SIMULTANEOUS DIFFERENTIAL EQUATIONS
4.4 PARTIAL DIFFERENTIAL EQUATIONS
4.5 PHYSICS EXAMPLES
4.6 CHAPTER SUMMARY
CHAPTER 5 Differential Equations: Numerical Solutions
5.1 ORDINARY DIFFERENTIAL EQUATIONS
5.2 PARTIAL DIFFERENTIAL EQUATIONS
5.3 PLOTTING IN THREE DIMENSIONS
5.4 PHYSICS EXAMPLES
5.5 CHAPTER SUMMARY
CHAPTER 6 Vectors and Matrices
6.1 VECTORS AND MATRICES AS LISTS
6.2 LOGICAL EXPRESSIONS AND OPERATIONS
6.3 VECTOR OPERATIONS
6.4 MATRIX OPERATIONS
6.5 EIGENVALUE PROBLEMS
6.6 PHYSICS EXAMPLES
6.7 CHAPTER SUMMARY
CHAPTER 7 Basic Data Analysis
7.1 NUMBERS IN LISTS
7.2 SELECTING DATA SEGMENTS
7.3 READING DATA FROM A FILE
7.4 MAKING HISTOGRAMS
7.5 PHYSICS EXAMPLE
7.6 CHAPTER SUMMARY
CHAPTER 8 Fitting Data to Models
8.1 LINEAR FITTING
8.2 NONLINEAR FITTING
8.3 HANDLING DATA WITH ERROR BARS
8.4 PHYSICS EXAMPLE
8.5 CHAPTER SUMMARY
CHAPTER 9 Numerical Manipulations
9.1 SIGNIFICANT FIGURES
9.2 NUMERICAL SOLUTIONS TO ALGEBRAIC EQUATIONS
9.3 WORKING WITH UNITS
9.4 ACCESS TO DATABASES
9.5 PHYSICS EXAMPLES
9.6 CHAPTER SUMMARY
CHAPTER 10 Random Numbers
10.1 GENERATING RANDOM NUMBERS
10.2 MONTE CARLO TECHNIQUES
10.3 PROBABILITY DISTRIBUTIONS
10.4 PHYSICS EXAMPLE
10.5 CHAPTER SUMMARY
CHAPTER 11 Animation
11.1 SCOPING
11.2 PLOTS IN MOTION
11.3 DRAWING GEOMETRIC SHAPES
11.4 CARTOON ANIMATION
11.5 PHYSICS EXAMPLES
11.6 CHAPTER SUMMARY
CHAPTER 12 Advanced Plotting and Visualization
12.1 OPTIONS FOR 2D PLOTS
12.2 OPTIONS FOR 3D PLOTS
12.3 CONTOUR AND DENSITY PLOTS
12.4 VECTOR DIFFERENTIAL CALCULUS
12.5 VISUALIZING VECTOR FIELDS
12.6 PHYSICS EXAMPLES
12.7 CHAPTER SUMMARY
Appendix A dditional Exercises
Appendix B Shorthands
Index

How to read this book

Look for bits of Mathematica commands that are set off from the text and in a different font, for example
S o l v e [ { x + y = = 2 a , x - y = = 2 b } , { x , y } ]
(To execute this statement, press Enter while holding down the Shift key.) I generally follow statements like this with the resulting output. In this case,
{ { x - > a + b , y - > a - b } }
The text around these pieces of input and output is there to help you understand the syntax, and to appreciate how to extend it.
Then, look at the example problems. Every chapter concludes with one or more “Physics Examples” that use the material up to that point to solve typical physics problems.
Many commands have “shorthands” and I use them from time to time, more often towards the end of the book. I’ve included an appendix to help you resolve them.

Preface

Most ...

Índice