Earlier quoted context omitted.
What exactly do you do when you need math skills in developing? What do you develop with it? Some specific examples? I've done math while developing 3D stuff, physics simulation and a lot of things - yet I never felt like my math skill mattered that much. And I really dislike theoretical math like in school.
Math is certainly not for everyone, but I actually found that once I started diving into pure math (NOT what was taught in my school's math curriculum) it was a whole new world. Did your school actually teach pure math? I bet a lot of programmer types had similar frustrations to the computationally intensive version of math taught in many high schools when they knew that these processes could simply be automated.
Immersive Linear Algebra – A free interactive online book
61–70 of 80 posts
Re: Immersive Linear Algebra – A free interactive online book
#62Earlier quoted context omitted.
What exactly do you do when you need math skills in developing? What do you develop with it? Some specific examples? I've done math while developing 3D stuff, physics simulation and a lot of things - yet I never felt like my math skill mattered that much. And I really dislike theoretical math like in school.
Math is certainly not for everyone, but I actually found that once I started diving into pure math (NOT what was taught in my school's math curriculum) it was a whole new world. Did your school actually teach pure math? I bet a lot of programmer types had similar frustrations to the computationally intensive version of math taught in many high schools when they knew that these processes could simply be automated.
Re: Immersive Linear Algebra – A free interactive online book
#63Not Free? That's fine, but I couldn't see a statement of that. If so, I wonder how they plan to do DRM.
Re: Immersive Linear Algebra – A free interactive online book
#64Earlier quoted context omitted.
I see that chapter 10, on eigenvalues/eigenvectors, is "Coming soon!". Eigenvectors never made intuitive sense to me. As with the various decompositions (Cholesky, LU, etc), I could apply the math as algorithms to follow, but never got to the point where felt I could apply them to new problems. Then again, in practice, I've only needed eigenvectors once since college, and it was more a rote implementation described i…
I enjoyed this articled called "Principal Components Analysis for Dummies" that illustrates eigenvectors and eigenvalues. https://georgemdallas.wordpress.com/2013/10/30/principal-com...
Re: Immersive Linear Algebra – A free interactive online book
#65Earlier quoted context omitted.
Interesting. I used linear algebra with quantum mechanics where eigenvectors represent quantum state of the Hamiltonian which is how I initially understood them. And as for TAing, have you ever TA'd? You definitely get a feeling but I can count numerous times when I've stood in front of the tutorial class and asked if there are any questions only to get no response back. I think it's a symptom of first years. I've TA…
I have TA'ed. Asking for questions in public doesn't help much. Students rarely like to admit they don't know something. I was thinking more of when you look at their assignments. There are often multiple ways to approach a problem, and the route chosen can reveal something about one's level of comfort. It doesn't help that university TAs get almost no training in how to be a TA. At least, I didn't.
The problem I've found with assignments though is that people copy and cheat. Many times someone will do very well on assignments and then do absolutely terrible on midterms and finals. It's very frustrating. I remember one course where everyone did nearly perfect on the assignments and yet the final and midterm followed the standard bell curve.
Re: Immersive Linear Algebra – A free interactive online book
#66Re: Immersive Linear Algebra – A free interactive online book
#67Re: Immersive Linear Algebra – A free interactive online book
#68I always see linear algebra on HN and many people comment on how they never understood the subject. This makes me ask: what exactly is it that people don't get about linear algebra? What makes it appear to be a difficult subject? As someone who has used linear algebra almost every day in some form over the last decade, it's hard to get a perspective of what aspects are challenging to the beginner. And since I TA cour…
The other aspect that I found with LA compared to almost any other math subject I took was that it was almost entirely mechanical with little to no connection between my understanding of the subject and my grade. The exam questions where mostly along the lines of "find the eigenvector" and "find the determinant" rather than "what's an eigenvector" and "what's a determinant", so I got good grades despite not having an…
Re: Immersive Linear Algebra – A free interactive online book
#69In terms of programming and linear algebra - please consult someone who is actually knowledgeable about the subject if you're implementing it in code. Linear algebra without error analysis is very dangerous. Many many things are theoretically useful, but can't be used in practice. You can't calculate determinants, you can't count unique eigen values, you can't use certain decompositions. Unfortunately this isn't real…