3b1b / 3Blue1Brown.com

https://www.3blue1brown.com
Other
345 stars 124 forks source link

Essence of Linear Algebra: Publish Quick Eigen #417

Closed kurtbruns closed 1 month ago

kurtbruns commented 2 months ago

This pull request:

3b1b commented 2 months ago

One bigger change I might recommend is to deviate from the video structure and put the trick and exercise up at the top of the article.

3b1b commented 2 months ago

Also, while reading this, I noted a slightly faster way. Let's write a general matrix as [[a, b], [c, d]], with the specific example [[2, 4], [6, 8]] to illustrate

  1. Write a, d as m ± s. For example, 2, 8 = 5 ± 3
  2. The eigenvalues are m ± sqrt(s^2 + bc). For example 5 ± sqrt(9 + 4 * 6) = 5 ± sqrt(33)

I'm hesitant to add much more because the trick doesn't really matter, it's the exercise in thinking about why it works that matters.