Review of MIT OpenCourseWare: Introduction to Computational Thinking with Julia
I highly recommend checking out the MIT open course Introudction to computational thinking. All lecture videos and assignments are available on their website. I initially decided to follow along because 3B1B (Grant Sanderson) was one of the instructors, but the content turned out to be far more fascinating than I had anticipated.
At first glance, the syllabus looks quite eclectic—covering topics like data science, climate change modeling, ray tracing, partial differential equations (PDEs), statistics, and image processing. However, everything actually revolves around the core idea of “computation.” I found that this approach effectively trains your ability to solve problems computationally.
For example, the first two lectures introduce image convolution, breaking the problem down into matrix multiplication, with an assignment to implement a simple Gaussian blur. The concept of convolution is then extended further—it can be applied to edge detection and even Fourier transforms using the exact same underlying idea. This process of breaking down seemingly difficult problems step by step into mathematical representations, and showing you how to apply them across different domains, makes for a fantastic way to learn. It’s also a skill that many people lack.
Next, the course covers seam carving—a technique that resizes an image’s aspect ratio without making it look “distorted.” Normally, when you change an image’s proportions, one dimension gets stretched or compressed, resulting in an awkward appearance. This algorithm identifies the less important parts of an image and removes them, keeping the overall picture looking natural.
After that comes data processing, using COVID-19 data as an example. I thought this was very relevant and timely, allowing students to learn using real-world cases. It also touches on what dimensionality reduction techniques like PCA and Singular Value Decomposition (SVD) represent conceptually, while reviewing fundamental statistics along the way.
For the latter half of the course, due to having less interest and being a bit lazy, I only skimmed through the material. Here is the outline for reference:
- Random walks
- Discrete mathematics
- Partial differential equations
- Climate change modeling
Personally, I think these are all very practical concepts. If I have time in the future, I would definitely like to finish the rest of the course.
The course uses Julia as its primary programming language throughout. I found it very pleasant to write in. Going forward, if I need to do basic matrix computations or data analysis, I will likely reach for Julia. For experienced engineers, it should be quick to pick up. Plus, paired with Pluto, you can write code directly in the browser (similar to Jupyter Notebooks) and see results in real time.
P.S. Grant Sanderson’s delivery and videos are extraordinarily well-crafted. In my opinion, his lectures offered the highest production quality among all the instructors.
Related Posts
- Dale Carnegie's How to Win Friends and Influence People This book is an absolute classic, and after putting it off for a long time, I finally finished it. The core philosophy of the book essentially boils down to turning yourself into an altruist.
- Outliers by Malcolm Gladwell My thoughts after reading Outliers
- So Good They Can't Ignore You by Cal Newport Passion is overly romanticized. The book opens with Steve Jobs's commencement speech, pointing out that what Jobs actually did was quite different from what he preached. I believe passion shouldn't be something you're expected to force out of thin air; rather, it develops naturally through the process of doing something. You might have a passion for XYZ, but the world usually doesn't care about your passion—it cares about your output.
- Dokugaku Taizen (The Compendium of Self-Directed Learning) – Book Review I feel this book will eventually be translated into Chinese, so while it is currently only available in Japanese, I wanted to share my reading notes. Spanning over 700 thick pages, it’s even been nicknamed a "blunt weapon book" (#鈍器本) in Japan and topped bestseller lists. Packed with rich content, it is perfect for beginners who want to systematically learn a subject but don’t know where to start.