Other What are you reading now? (STEM only)

  • Thread starter Thread starter Demystifier
  • Start date Start date
  • Tags Tags
    Reading
Click For Summary
Current reading among participants focuses on various STEM books, including D. J. Tritton's "Physical Fluid Dynamics," which is appreciated for its structured approach to complex topics. J. MacCormick's "Nine Algorithms That Changed the Future" is noted for its accessibility in explaining computer algorithms. Others are exploring advanced texts like S. Weinberg's "Gravitation and Cosmologie" and Zee's "Gravitation," with mixed experiences regarding their difficulty. Additionally, books on machine learning, quantum mechanics, and mathematical foundations are being discussed, highlighting a diverse range of interests in the STEM field. Overall, the thread reflects a commitment to deepening understanding in science and mathematics through varied literature.
  • #271
George Jones said:
Yes, e.g.,
And your signature is particularly valid for the Zeidler's books. One should not read them linearly from cover to cover, instead one should skim over the Contents and pick (sub)sections that make one feel curious at the moment.
 
Physics news on Phys.org
  • #272
I am reading a book called Idiot's Guide to Quantum Physics by Marc Humphrey and some other people. I became interested in this topic after learning about the double slit experiment. This is also my first answer to something on this website, did I do it right?
 
  • #273
I'm reading Sakurai's Quantum Mechanics and an Introduction to Tensors and Group Theory for Physicists by Nadir Jeevanjee.
 
  • Like
Likes Demystifier and vanhees71
  • #274
“Quantum Field Theory of Many Body Systems”
Xiao-Gang Wen

That is to say I have understood and enjoyed both the preface and first chapter... that may well be all.
 
  • Like
Likes Demystifier
  • #275
I'm currently reading Abstract Algebra by Dummit and Foote to expand my knowledge on abstract algebra. It is a great book which I can recommend. It contains many examples, tricks, and highlights what is really important to remember. It has too many exercises to make them all, so I pick the ones that seem more interesting or harder.

Currently, I am at p145 which deals with groups and the Sylow theorems. I hope to get to ring theory soon and if there is time left I hope to begin with module theory.
 
  • Like
Likes Demystifier, vanhees71, weirdoguy and 1 other person
  • #276
I visit my local library once a week usually picking up books I reserve online. Today with no books on hold I revisited a method from childhood by wandering in the Science and Math section looking for books I have not read recently. The stacks were full as most local schools are on Summer hiatus.

I chose "The Magic Of Math" by Arthur Benjamin and "The Island of Knowledge" by Marcelo Gleiser for summer reading then was bemused to find a 2001 Cambridge Press math textbook by an author familiar to us all on Physics Forums. I added "Introduction to Numerical Analysis" by Arnold Neumaier. @A. Neumaier , I presume?

[Later feedback: "The Magic of Math" is a highly readable gateway to counting and combinatorics among other subjects. "Island of Knowledge" seems aimed at beginning knowledge engineers and students of epistemology. "Intro to Numerical Analysis" is a focused comprehensive overview of the field as the title promises and the author delivers.]
 
Last edited:
  • Like
Likes Hamiltonian, vanhees71 and (deleted member)
  • #277
Klystron said:
I visit my local library once a week usually picking up books I reserve online. Today with no books on hold I revisited a method from childhood by wandering in the Science and Math section looking for books I have not read recently. The stacks were full as most local schools are on Summer hiatus.

I chose "The Magic Of Math" by Arthur Benjamin and "The Island of Knowledge" by Marcelo Gleiser for summer reading then was bemused to find a 2001 Cambridge Press math textbook by an author familiar to us all on Physics Forums. I added "Introduction to Numerical Analysis" by Arnold Neumaier. @A. Neumaier , I presume?
Yes. Happy reading!
 
  • Like
Likes Hamiltonian, Wrichik Basu, vanhees71 and 1 other person
  • #278
A. Neumaier said:
Yes. Happy reading!
From the book description on Amazon and the few pages I was able to read. The book looks promising. Does is it presuppose knowledge of Complex Analysis (the one a math major takes (pure)) as a prerequisite?
 
  • #279
MidgetDwarf said:
From the book description on Amazon and the few pages I was able to read. The book looks promising. Does is it presuppose knowledge of Complex Analysis (the one a math major takes (pure)) as a prerequisite?
Not for most of the material, only for the derivation of a few details.
 
  • #280
A. Neumaier said:
Not for most of the material, only for the derivation of a few details.
Thank you for replying. Will start reading it in December.
 
  • #281
I'm currently reading a couple of books I've found about the Lisp programming language: ANSI Common Lisp, by Paul Graham, and LISP, 3rd Edition, by Patrick Henry Winston and Berthold Klaus Horn.

What motivated me to start learning Lisp was a blog post by Joel Spolsky titled "The Perils of JavaSchools" (https://www.joelonsoftware.com/2005/12/29/the-perils-of-javaschools-2/). In the post Spolsky says there's nothing wrong with Java as a language to write applications, but as a language taught in university computer science courses, it's too easy.

A quote from the article:
Instead what I’d like to claim is that Java is not, generally, a hard enough programming language that it can be used to discriminate between great programmers and mediocre programmers.

In the article, Spolsky praises functional programming languages such as Lisp and Scheme, so I thought it would be good for me to take a look.
 
  • #282
Mark44 said:
I'm currently reading a couple of books I've found about the Lisp programming language: ANSI Common Lisp, by Paul Graham, and LISP, 3rd Edition, by Patrick Henry Winston and Berthold Klaus Horn.
Don't forget to check out the freely available On Lisp by Paul Graham (which is the next logical step after ANSI CL). It takes a deeper look at more advanced techniques of macro programming in Lisp, which is probably what Lisp is all about.
 
  • #283
In addition to the Lisp books already mentioned, I recommend the following.

The original paper by McCarthy.

McCarthy was asked why he invented Lisp. He said it was for artificial intelligence. One reason is because code and data have the same syntax. But this has uses beyond AI.

Currently I use Lisp for metaprogramming, as opposed to coding directly in C++. It's a good language choice when you need a translator between one language and another. I also use Lisp in other ways, but they are secret projects. ;)

The Elements of Artificial Intelligence Using Common Lisp by Steven Tanimoto

Problem Solving and Artificial Intelligence by Lauriere. See chapter 2 for his discussion of Lisp and why it is useful in AI.

Common Lisp, The Langauge by Guy Steele

There are some good Youtube videos on Lisp, including interviews with John McCarthy and demonstrations of those old Lisp machines.

This page contains a link at the bottom to a paper by McCarthy on the History of Lisp.

If you want to try some Lisp programming, which I highly recommend, then consider CLISP which is easy to download and install. Or if you prefer a Windows GUI you may wish to try LispWorks. They have Personal and Hobbyist editions. I haven't used it but it looks interesting.

There is also Scheme and Clojure, which are variants of Lisp.

This is an interesting story about a Lisp programmer at NASA.

You already know about Paul Graham. Have you read his online articles?

Prof Novak has done lots of work on physics and AI. Here is one example. He has some code examples somewhere which allow entering a physics problem in word form and then getting the answer.

https://www.cs.utexas.edu/~novak/tkde91.html
I could go on and on and on some more. Here is Lisp for quantum programming.



If you are studying the origins of Lisp it helps to understand something about Lambda Calculus. Here is a good introductory video on this topic.

By the way, Common Lisp also supports object-oriented programming.
 
Last edited by a moderator:
  • #284
Thanks for the Lisp links @Aufbauwerk 2045. The JPL Lisp programmer article is moving.

I worked at NASA Ames Research Center as a contract software engineer for 11 years beginning in 1984, so had overlap with the author's 12 years at JPL. I knew smalltalk but did not learn Lisp until ~1990, and that on Next machines donated by Apple to my university. I remember NASA's "agent" architecture wave. Interesting concepts but I managed to limp along programming with functions and objects. I implemented concepts learned from Lisp but expressed in C dialects plus bits of FORTRAN and assembler without benefit of the cool interpreters described in the articles.
 
Last edited:
  • Like
Likes Aufbauwerk 2045
  • #285
Grosso and Pastori Parravicini, Solid State Physics
In my opinion, one of the best written textbooks on the subject, much better than more famous Kittel or Aschroft and Mermin.
 
  • Like
Likes fluidistic and Auto-Didact
  • #286
Aufbauwerk 2045 said:
If you want to try some Lisp programming, which I highly recommend, then consider CLISP which is easy to download and install. Or if you prefer a Windows GUI you may wish to try LispWorks. They have Personal and Hobbyist editions. I haven't used it but it looks interesting.
I looked into LispWorks, but it seemed a bit expensive. I've been using GNU CLISP, and it's satisfactory for what I'm using it for.
Aufbauwerk 2045 said:
This is an interesting story about a Lisp programmer at NASA.
Very interesting. I had no idea that Lisp was used so much in those exploration vehicles.
Aufbauwerk 2045 said:
You already know about Paul Graham. Have you read his online articles?
I'll definitely look into them. Besides the Graham book, I also have the book by Winston and Horn.
 
  • #288
- Shankar, Quantum Field Theory and Condensed Matter (2017)

Written much better than most other books on condensed matter QFT, which might be related to the fact that Shankar has also written textbooks on more elementary aspects of theoretical physics (Fundamentals of Physics, Fundamentals of Physics 2, Principles of Quantum Mechanics).
 
  • Like
Likes atyy and Auto-Didact
  • #290
Demystifier said:
- Shankar, Quantum Field Theory and Condensed Matter (2017)

Written much better than most other books on condensed matter QFT, which might be related to the fact that Shankar has also written textbooks on more elementary aspects of theoretical physics (Fundamentals of Physics, Fundamentals of Physics 2, Principles of Quantum Mechanics).
Shankar is one of the few condensed matter theorists who actually started off in and then left QFT in order to do condensed matter, because condensed matter theory is from a pure and applied mathematics viewpoint a much more interesting object than QFT.

He also basically taught Witten advanced S-matrix theory from a very applied mathematics point of view, at least until Witten overtook him in skill within a week.
 
  • Like
Likes Demystifier
  • #292
“The Vital Question” Nick Lane.
 
  • #293
I'm currently reading Conway's book "Functions of one complex variable I". I like the "no-nonsense" style of the book. It gets to complex integration rather quickly (and the complex line integral is defined as a Riemann-Stieltjes integral), and that's where stuff gets interesting.

The next topic on my reading list is differential geometry. I'm thinking about reading Lee's Smooth Manifolds for that.
 
  • Like
Likes Auto-Didact
  • #294
When the boss says "Since your the only Theoretical Physicist we have on staff, we need you to look at something and figure out what is causing this huge effect". Well, that effect has to do with a plasma, so I guess I'll have to relearn all of my plasma physics, so what do I do, I pick up Principles of Plasma Electrodynamics (Springer Series in Electronics and Photonics) (Volume 9) by Andrej F. Alexandrov. It's hard, but if you spend a couple of weeks reading Introduction to Plasma Physics and Controlled Fusion by Francis Chen, it all starts to make sense.
 
  • Like
Likes Auto-Didact
  • #295
S. Carroll, Something Deeply Hidden: Quantum Worlds and the Emergence of Spacetime
https://www.amazon.com/dp/1524743011/?tag=pfamazon01-20

This new book is one of the best popularizations of the field of quantum foundations, especially if you want to understand why exactly some serious physicists believe in many worlds.
 
  • Like
  • Informative
Likes Klystron and lomidrevo
  • #296
Demystifier said:
S. Carroll, Something Deeply Hidden: Quantum Worlds and the Emergence of Spacetime
https://www.amazon.com/dp/1524743011/?tag=pfamazon01-20

This new book is one of the best popularizations of the field of quantum foundations, especially if you want to understand why exactly some serious physicists believe in many worlds.

I don't know if it's just because I'm getting older and grumpier, but I'm really having a hard time reading popular physics books these days. I bought a copy of Briane Greene's The Hidden Reality last month and struggled through the first 100 pages because the amount of metaphors totally unrelated to the physics he was discussing ruined it for me. One sentence of actual physics followed by two pages of filler.
 
  • Like
Likes Klystron, DarMM, vanhees71 and 1 other person
  • #297
CJ2116 said:
but I'm really having a hard time reading popular physics books these days.

I have had this problem since I started the 3rd year of physics (in Poland master studies takes 5 years) when more advanced lectures came in. Besides, I am a HUGE purist when it comes to physics and writing about physics and I am very critical about everything I read. Reading most of the pop-sci things just hurts. I got last Hawking's book for christmas and I stopped reading it after first chapter o_O But I have to force myself to finish it because I want to write an overview for my blog...

Anyways, to stay on topic, right now I'm reading The Character of Physical Law by Feynman and Mathematical Methods for Physics and Engineering by our Orodruin. Finishing 5th chapter, and it's nice by now. The only issue I have is that I learned differential geometry so early in my education that it's really disturbing to see two repeated indices on the same levelo0)
 
  • Like
Likes Klystron, DarMM and vanhees71
  • #298
I used to love pop science when I was younger. It's sort of sad now seeing all the cool books coming out or walking past the "Science" section in a book store but knowing I'll get nothing from them.
 
  • Like
Likes Klystron, weirdoguy, Auto-Didact and 1 other person
  • #299
In a year I enjoy reading four to five books on the history of mathematics. I may have posted earlier in this thread on an excellent book describing the history and solution of "Fermat's Last Theorem" that included details about the short life of mathematician Evariste Galois almost as if the reader were present at his demise.

Therefor, I am intrigued halfway through Keith Devlin's book "The Man of Numbers -- Fibonacci's Arithmetic Revolution" at the conclusion of chapter four the author says, "...this is what we know of Leonardo Pisano's life.". Despite new (2004) translations and transcriptions of Leonardo's books and new scholarly references to missing publications, Devlin refuses to speculate or dramatize beyond what has been historically verified. There are broad hints that Leonardo and his father 'knew Arabic' perhaps a veiled reference to Ashkenazi family ties but the author goes no further than their documented educational and mercantile ties in medieval North Africa.

I recommend this short history to all fans of filus Bonnaci and his numbers.
 
  • Like
Likes vanhees71 and Auto-Didact
  • #300
The Essence of Turbulence as a Physical Phenomenon, A Tsinober 2019.

Just started, so far its a wonderful book. I have read some of Tsinober's papers in the past when studying the Navier-Stokes equation. He writes with a clarity and down-to-earthness which many instrumentalist-types physicists could probably learn a thing or two from.
 
  • Like
Likes vanhees71 and Klystron

Similar threads

  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 30 ·
2
Replies
30
Views
3K
  • Sticky
  • · Replies 243 ·
9
Replies
243
Views
56K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 2 ·
Replies
2
Views
4K
  • · Replies 34 ·
2
Replies
34
Views
7K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 10 ·
Replies
10
Views
3K