Now, I must admit that I was super-surprised to find out that the first (proper) logarithm ever developed was (more-or-less) done in base \(1-10^{-7}\). It...just seemed sooooooo arbitrary! Though, I think that there's probably a good astronomy-based explanation for why this base was chosen (**)... in fact, I might've even heard this explained on one of the recent episodes of the BBC In Our Time podcast? (hint: you should totes go check it out =P)
Analogously, matrix multiplication is also harder than matrix addition. And the fact that even for \(2\times2\) matrices, matrix multiplication \begin{align} \left[\begin{array}{c}{c} a_{11} & a_{12} \\ a_{21} & a_{22}\end{array}\right] \left[\begin{array}{c}{c} b_{11} & b_{12} \\ b_{21} & b_{22}\end{array}\right] = \left[\begin{array}{c}{c} a_{11}\times b_{11}+a_{12}\times b_{21} & a_{11}\times b_{12}+a_{12}\times b_{22} \\ a_{21}\times b_{11}+a_{22}\times b_{21} & a_{21}\times b_{12}+a_{22}\times b_{22}\end{array}\right] \end{align} actually requires 8 little multiplications just adds insult to injury...ammirite?
Weeeeell, fear no more! Because we can totally reduce \(2\times2\) matrix multiplication down to just 7 multiplications (***)! And here's how:
Start by computing these guys:
- \(m_1:=(a_{11}+a_{22})\times (b_{11}+b_{22})\),
- \(m_2:=(a_{21}+a_{22})\times b_{11}\),
- \(m_3:=a_{11}\times (b_{12}- b_{22})\),
- \(m_4:=a_{22}\times (b_{21}-b_{11})\),
- \(m_5:=(a_{11}+a_{12})\times b_{22}\),
- \(m_6:=(a_{21}-a_{11})\times (b_{11}+b_{12})\),
- \(m_7:=(a_{12}-a_{22})\times (b_{21}+b_{22})\).
- \(m_1+m_4-m_5+m7\),
- \(m_3+m_5\),
- \(m_2+m_4\),
- \(m_1-m_2+m_3+m_6\).
Now, this might seem like kind of a stupid thing to do, but I think that it was supposedly kinda useful in the early days of computing, i.e.: when computers had trouble handling multiplication. Just...umm...goes to show, right? Multiplication...so much harder than addition. =P
*: unless if you're dealing with \(0\)...in which case, it's pretty easy either way
**: coupled with the fact that \((1-10^{-7})^{10^7}\approx\frac{1}{e}\)
***: but with a few more additions, which is fine, because additions are totally easier than multiplications
No comments:
Post a Comment