Sample implementations:
Quantum matter physics course of the University of Oxford by
Ciro Santilli 35 Updated 2025-04-18 +Created 1970-01-01
2011- professor: Steven H. Simon. His start date is given e.g. at: www-thphys.physics.ox.ac.uk/people/SteveSimon/condmat2012/LectureNotes2012.pdf which is presumably an older version of: www-thphys.physics.ox.ac.uk/people/SteveSimon/QCM2022/QuantumMatter.pdf
Notes/book: www-thphys.physics.ox.ac.uk/people/SteveSimon/QCM2022/QuantumMatter.pdf Marked as being for Oxford MMathPhys, so it appears that this is a 4th year course normally. TODO but where is it listed under the course list of MMapthPhys? mmathphys.physics.ox.ac.uk/course-schedule
Course page index: www-thphys.physics.ox.ac.uk/people/SteveSimon/
www-thphys.physics.ox.ac.uk/people/SteveSimon/QCM2023/quantummatter.html mentions it is given in Hilary term
2023 syllabus as per www-thphys.physics.ox.ac.uk/people/SteveSimon/QCM2023/quantummatter.html#Syllabus:
- Fermi Liquids
- Weakly Interacting Fermions
- Response Functions and Screening
- Thomas Fermi
- RPA
- Plasmons
- Landau Fermi Liquid Theory
- Superfluidity
- Two Fluid Model and Quantized Circulation
- Landau Criterion for Superfluidity
- Two Fluid Model for Superconductors
- London Theory
- Flux Vortices
- Type I and Type II superconductors
- Microscopic Superfluidity
- Coherent States
- Bose Condensation
- Gross Pitaevskii Equation
- Off Diagonal Long Range Order
- Feynman Theory of Superfluidity (in book, but will skip in lectures. Not examinable)
- Ginzburg Landau Theory of Superfluids
- BCS Theory of Superconductors
Quantum mechanical re-interpretation of kinematic and mechanical relations by Heisenberg (1925) by
Ciro Santilli 35 Updated 2025-04-18 +Created 1970-01-01
This Heisenberg's breakthrough paper on matrix mechanics which later led to the Schrödinger equation, see also: history of quantum mechanics.
Published on the Zeitschrift für Physik volume 33 page pages 879-893, link.springer.com/article/10.1007%2FBF01328377
Modern overview: www.mat.unimi.it/users/galgani/arch/heisenberg25amer_j_phys.pdf
Quantum Mechanical View of Reality by Richard Feynman (1983) by
Ciro Santilli 35 Updated 2025-04-18 +Created 1970-01-01
Sample playlist: www.youtube.com/playlist?list=PLW_HsOU6YZRkdhFFznHNEfua9NK3deBQy
Basically the same content as: Richard Feynman Quantum Electrodynamics Lecture at University of Auckland (1979), but maybe there is some merit to this talk, as it is a bit more direct in some points. This is consistent with what is mentioned at www.feynman.com/science/qed-lectures-in-new-zealand/ that the Auckland lecture was the first attempt.
Some more information at: iucat.iu.edu/iub/5327621
By Mill Valley, CA based producer "Sound Photosynthesis", some info on their website: sound.photosynthesis.com/Richard_Feynman.html
They are mostly a New Age production company it seems, which highlights Feynman's absolute cult status. E.g. on the last video, he's not wearing shoes, like a proper guru.
Feynman liked to meet all kinds of weird people, and at some point he got interested in the New Age Esalen Institute. Surely You're Joking, Mr. Feynman this kind of experience a bit, there was nude bathing on a pool that oversaw the sea, and a guy offered to give a massage to the he nude girl and the accepted.
youtu.be/rZvgGekvHest=5105 actually talks about spin, notably that the endpoint events also have a spin, and that the transition rules take spin into account by rotating thing, and that the transition rules take spin into account by rotating things.
Quantum mechanics is quite a broad term. Perhaps it is best to start approaching it from the division into:
- non-relativistic quantum mechanics: obviously the simpler one, and where you should start
- relativistic quantum mechanics: more advanced, and arguably "less useful"
Key experiments that could not work without quantum mechanics: Section "Quantum mechanics experiment".
Mathematics: there are a few models of increasing precision which could all be called "quantum mechanics":
Ciro Santilli feels that the largest technological revolutions since the 1950's have been quantum related, and will continue to be for a while, from deeper understanding of chemistry and materials to quantum computing, understanding and controlling quantum systems is where the most interesting frontier of technology lies.
Atoms exist and last for a long time, while in classical electromagnetic theory punctual orbiting electrons should emit radiation quickly and fall into the nucleus: physics.stackexchange.com/questions/20003/why-dont-electrons-crash-into-the-nuclei-they-orbit
In other sections:
Bibliography:
Quasiparticles vs elementary particles by
Ciro Santilli 35 Updated 2025-04-18 +Created 1970-01-01
As a phisicist once amazingly put it in a talk Ciro watched:
It all depends on how much energy you have to probe nature with. Previously, we thought protons were elementary particles. But then we used more energy and found that they aren't.If some alien race had even less energy, they might not know about electrons at all, and could think that anyons are actually elementary.Being an "elementary particle" is always a possibly temporary label.
Kind of extends the complex numbers.
Some facts that make them stand out:
- one of the only three real associative division algebras in addition to the real numbers and complex numbers, according to the classification of associative real division algebras
- the simplest non-commutative division algebra. Contrast for example with complex numbers where multiplication is commutative
Started in 1987 and written in Pascal, by the French from Pierre and Marie Curie University, the French are really strong in numerical analysis.
The fact that French wrote it can be seen in the documentation, for example doc.freefem.org/tutorials/index.html uses file extension
mycode.edp
instead of mycode.pde
where dep
stands for "Équation aux dérivées partielles".Besides the painful build, using FreeFem is relatively simple, as can be seen from the examples on the website.
They do use a domain-specific language on the examples, which appears to be the main/only interface, which is a bad thing, Ciro would rather have a Python API as the "main API", which is more the approach taken by the FEniCS Project, but so be it. This domain-specific language business means that you always stumble upon basic stuff you want to do but can't, and then you have to think about how to share data between the simulation and the plotting. The plotting notably is super complex and they can't implement all of what people want, upstream examples often offload that to gnuplot. This is potentially a big advantage of FEniCS Project.
It nice though that they do have some graphics out of the box, as that allows to quickly debug common problems.
Uses variational formulation of a partial differential equation, which is not immediately obvious to beginners? The introduction doc.freefem.org/tutorials/poisson.html gives an ultra quick example, but your are mostly on your own with that.
On Ubuntu 20.04, the
freefem
is a bit out-of-date (3.5.8, there isn't even a tag for that in the GitHub repo, and refs/tags/release_3_10 is from 2010!) and fails to run the examples from the website. It did work with the example package though, but the output does not have color, which makes me sad :-)sudo apt install freefem freefem-examples
freefem /usr/share/doc/freefem-examples/heat.pde
So let's just compile the latest v4.6 it from source, on Ubuntu 20.04:
sudo apt build-dep freefem
git clone https://github.com/FreeFem/FreeFem-sources
cd FreeFem-sources
# Post v4.6 with some fixes.
git checkout 3df0e2370d9752801ac744b11307b14e16743a44
# Won't apply automatically due to tab hell.
# https://superuser.com/questions/607410/how-to-copy-paste-tab-characters-via-the-clipboard-into-terminal-session-on-gnom
git apply <<'EOS'
diff --git a/3rdparty/ff-petsc/Makefile b/3rdparty/ff-petsc/Makefile
index dc62ab06..13cd3253 100644
--- a/3rdparty/ff-petsc/Makefile
+++ b/3rdparty/ff-petsc/Makefile
@@ -204,7 +204,7 @@ $(SRCDIR)/tag-make-real:$(SRCDIR)/tag-conf-real
$(SRCDIR)/tag-install-real :$(SRCDIR)/tag-make-real
cd $(SRCDIR) && $(MAKE) PETSC_DIR=$(PETSC_DIR) PETSC_ARCH=fr install
-test -x "`type -p otool`" && make changer
- cd $(SRCDIR) && $(MAKE) PETSC_DIR=$(PETSC_DIR) PETSC_ARCH=fr check
+ #cd $(SRCDIR) && $(MAKE) PETSC_DIR=$(PETSC_DIR) PETSC_ARCH=fr check
test -e $(DIR_INSTALL_REAL)/include/petsc.h
test -e $(DIR_INSTALL_REAL)/lib/petsc/conf/petscvariables
touch $@
@@ -293,7 +293,6 @@ $(SRCDIR)/tag-tar:$(PACKAGE)
-tar xzf $(PACKAGE)
patch -p1 < petsc-hpddm.patch
ifeq ($(WIN32DLLTARGET),)
- patch -p1 < petsc-metis.patch
endif
touch $@
$(PACKAGE):
EOS
autoreconf -i
./configure --enable-download --enable-optim --prefix="$(pwd)/../FreeFem-install"
./3rdparty/getall -a
cd 3rdparty/ff-petsc
make petsc-slepc
cd -
./reconfigure
make -j`nproc`
make install
cd ../FreeFem-install
PATH="${PATH}:$(pwd)/bin" ./bin/FreeFem++ ../FreeFem-sources/examples/tutorial/
Ciro's initial build experience was a bit painful, possibly because it was done on a relatively new Ubuntu 20.04 as of June 2020, but in the end it worked: github.com/FreeFem/FreeFem-sources/issues/141
Pinned article: ourbigbook/introduction-to-the-ourbigbook-project
Welcome to the OurBigBook Project! Our goal is to create the perfect publishing platform for STEM subjects, and get university-level students to write the best free STEM tutorials ever.
Everyone is welcome to create an account and play with the site: ourbigbook.com/go/register. We belive that students themselves can write amazing tutorials, but teachers are welcome too. You can write about anything you want, it doesn't have to be STEM or even educational. Silly test content is very welcome and you won't be penalized in any way. Just keep it legal!
Intro to OurBigBook
. Source. We have two killer features:
- topics: topics group articles by different users with the same title, e.g. here is the topic for the "Fundamental Theorem of Calculus" ourbigbook.com/go/topic/fundamental-theorem-of-calculusArticles of different users are sorted by upvote within each article page. This feature is a bit like:
- a Wikipedia where each user can have their own version of each article
- a Q&A website like Stack Overflow, where multiple people can give their views on a given topic, and the best ones are sorted by upvote. Except you don't need to wait for someone to ask first, and any topic goes, no matter how narrow or broad
This feature makes it possible for readers to find better explanations of any topic created by other writers. And it allows writers to create an explanation in a place that readers might actually find it.Figure 1. Screenshot of the "Derivative" topic page. View it live at: ourbigbook.com/go/topic/derivativeVideo 2. OurBigBook Web topics demo. Source. - local editing: you can store all your personal knowledge base content locally in a plaintext markup format that can be edited locally and published either:This way you can be sure that even if OurBigBook.com were to go down one day (which we have no plans to do as it is quite cheap to host!), your content will still be perfectly readable as a static site.
- to OurBigBook.com to get awesome multi-user features like topics and likes
- as HTML files to a static website, which you can host yourself for free on many external providers like GitHub Pages, and remain in full control
Figure 2. You can publish local OurBigBook lightweight markup files to either OurBigBook.com or as a static website.Figure 3. Visual Studio Code extension installation.Figure 5. . You can also edit articles on the Web editor without installing anything locally. Video 3. Edit locally and publish demo. Source. This shows editing OurBigBook Markup and publishing it using the Visual Studio Code extension. - Infinitely deep tables of contents:
All our software is open source and hosted at: github.com/ourbigbook/ourbigbook
Further documentation can be found at: docs.ourbigbook.com
Feel free to reach our to us for any help or suggestions: docs.ourbigbook.com/#contact