Hi! I'm Jacky Song.

A physicist, designer, and developer with a passion for open source software

Electromagnetism

These notes consist of a comprehensive guide to electromagnetism from the classical theory all the way to quantum electrodynamics. Topics covered include Coulomb's law, electromagnetic fields, Maxwell's equations, the wave nature of light, second quantization, and the quantum description of electromagnetism.

Read more...

Introductory Quantum Physics notes

These are notes taken in preparation of and during Quantum Physics I (PHYS 2210) at RPI, with topics covered including wavefunctions, various solutions of the time-dependent and independent Schrödinger equation, the uncertainty principle, and expectation values.

Read more...

Derivations of formulas for elastic collisions

This is an in-depth step-by-step derivation for elastic collisions in 1D, a companion guide to the Classical Dynamics Notes.

Read more...

A guide to Tensors

Tensors are some of the most elegant ways to write the laws of physics, used extensively in relativistic mechanics and relativistic quantum theory. However, their use goes beyond advanced theoretical physics. So here is a guide to tensors that hopefully is more accessible and appeals to a broader audience.

Read more...

Computer Science series

These are my personal notes on computer science, programming, and numerical computing taken at my time at RPI.

Read more...

Introduction to Python programming

There are notes taken in CS1100 at RPI, and cover introductory programming using the Python language.

Read more...

Philosophy notes

These are notes from the "Great Ideas in Philosophy" course taken at RPI, covering the history of philosophy, questions of identity and ethics, Eastern and Western philosophical traditions, and key figures in both ancient and modern Philosophy.

Read more...

Series and sequences

These are notes taken in MATH 1020 (Calculus II) at RPI, covering sequences, series, Taylor expansions, convergence and divergence tests, and examples of each.

Read more...

Notes on Differential Equations

These are notes taken in RPI's MATH 2400 course, on an introduction to differential equations. A special thanks to Dr. Kam of Rensselaer Polytechnic Institute for her excellent instruction and permission to share these notes.

Read more...

Directory of all notes

These are notes I've taken while pursuing a degree in Applied Physics at Rensselaer Polytechnic Institute.

Read more...

Physics series

These are my personal physics notes taken at my time at RPI. They include Classical Mechanics, Special Relativity, Quantum Mechanics, and will in the future include General Relativity and possibly Quantum Field Theory.

Read more...

Notes on introductory classical dynamics

These are notes taken in RPI's Physics 1150 class, relating to introductory classical dynamics - essentially, Newtonian mechanics. Make sure to read the calculus series first as these notes are calculus-heavy.

Read more...

A new way to define functions

When we start to learn about differential equations, one of the first things we're taught about them is that they're often unsolvable - a fact that most students just learn to accept. What we're not often taught is why so many differential equations are considered unsolvable. It turns out, it has everything to do with how we define "solving" a differential equation.

Read more...

Visualizing curvature in General Relativity

General Relativity is a theory of gravity that is formulated in a 4-dimensional spacetime. So how do we visualize spacetimes, if they're 4D? This article will hopefully explain the mathematics of how one type of visualization, embedding diagrams, work.

Read more...

Notes on integrals for calculus

These are notes taken during RPI's MATH 1010 course, on the topic of integrals and their applications in calculus.

Read more...

Notes on ecology

Ecology is the scientific study of organisms and their interactions with each other and the environment. These are my notes on ecology from BIO 1010.

Read more...

The more general kinematic equations

Kinematics is one of the most fundamental parts of physics. In fact, determining the motion of objects is essentially where physics originated. Today, we'll take a close look at kinematics, and in particular, a more nonstandard formulation of kinematics.

Read more...

A proof of the area of a circle

Circles are one of the most ubiquitous yet most mysterious objects found in math. This is because its area formula involves a seemingly unlikely object - an irrational number. And yet circles are some of the most common shapes in the universe, and finding the area of circles (or circle-derived objects) is a must for so many applications in math and physics. So we need a way to find the area of a circle.

Read more...

Notes on special relativity

These are notes taken in RPI's Physics 1140 class, relating to special relativity.

Read more...

Solving the wave equation

The wave equation is a ubiquitous partial differential equation found in many areas of physics. We will attempt to solve it within this post.

Read more...

Genetics & medicine notes

These notes contain the second unit of notes from BIO 1010 at RPI.

Read more...

Solving separable partial differential equations

Partial differential equations have a reputation for being impossible to solve. And in many cases, this is true - they are extremely difficult to analytically solve for a general solution. However, when a partial differential equation is separable, it can be solved fairly straightforwardly, as a system of ordinary differential equations. Here is how to do so.

Read more...

Notes on derivatives for calculus

These are notes taken during RPI's MATH 1010 course, on the topic of derivatives and their applications in calculus.

Read more...

Null Geodesics

It has always been an aim of mine to write a physically-based black hole path tracer. However, before doing that, I thought I would take on an easier challenge - plotting the orbits of photons around Kerr black holes, but with code generalizable to any black hole spacetime.

Read more...

LaTeX math tutorial

LaTeX is a powerful language used for writing academic papers. In this article, we'll focus not on the full language, but only the portions relevant to math typesetting.

Read more...

Calculus series

These are my personal calculus notes taken at my time at RPI. They include Precalculus, Calculus I, and will in the future include Calculus II, Calculus III, and Differential Equations.

Read more...

Introductory biology series

These are my personal introductory biology notes taken at my time at RPI.

Read more...

Feynmann's technique for integration

Feynmann's technique is a technique for evaluating certain difficult definite integrals. Note definite integral here, it doesn't do anything to help find antiderivatives. In fact, Feynmann's technique is especially helpful with finding definite integrals that have no elementary antiderivative.

Read more...

Notes on logarithmic and exponential functions

These are notes taken during RPI's MATH 1010 course, relating to a review of exponential and logarithmic functions for calculus.

Read more...

Notes on limits for calculus

These are notes taken during RPI's MATH 1010 course, on the topic of limits in calculus.

Read more...

Solving ODEs and PDEs with neural networks

Typical numerical methods to solve ordinary differential equations and especially partial differential equations require very fine grids to be able to attain accurate results, and suffer from the curse of dimensionality. This is an alternate method to solve ODEs and PDEs with neural networks, which solves both these issues.

Read more...

Bio evolution notes

These are notes taken during RPI's BIO 1010 course, relating to a review of evolution and life.

Read more...

Notes on a review of trigonometry

These are notes taken during RPI's MATH 1010 course, relating to a review of trigonometry for calculus.

Read more...

Waves and oscillations notes

These are notes taken during RPI's PHYSICS 1140 course, relating to a review of waves and oscillations.

Read more...

Building a neural network library in Rust, part 0

This series details the process of building a neural network library in pure Rust.

Read more...

Mass driver interstellar propulsion

A very rough sketch of a mass-driver based interstellar propulsion method is discussed and analyzed.

Read more...

Simulating superradiance reactors, part 3

In this third part of the superradiance series, a series of posts focused on creating a preliminary, naive raytracer for simulating superradiance reactors, we will explore solving for the vector of a reflected light ray.

Read more...

Simulating superradiance reactors, part 2

Again, we return to the superradiance series, a series of posts focused on creating a preliminary, naive raytracer for simulating superradiance reactors. This time, we will explore differential equation solvers.

Read more...

Simulating superradiance reactors, part 1

We return to the superradiance series, a series of posts focused on creating a preliminary, naive raytracer for simulating superradiance reactors. This time, we will explore geodesics in the Kerr spacetime, and write a Runge-Kutta solver for systems of differential equations.

Read more...

Simulating superradiance reactors, part 0

This is to be the beginning of a series of posts focused on creating a preliminary, naive raytracer for simulating superradiance reactors.

Read more...