status

May. 22nd, 2003 01:07 am
[personal profile] eub
I had totally forgotten how cool linear algebra is.
now I remember 0.3% of how cool linear algebra is.

whee

Date: 2003-05-22 01:19 am (UTC)
From: [identity profile] eub.livejournal.com
class OrthonormalBasis:
    basis = []

    def insert(s, vec):
        residual = vec - s.projection(vec)
        s.basis.append(residual.normalized())
    
    def projection(s, vec):
        if len(s.basis) == 0:           # maybe we should raise an exception,
            return 0. * vec             # but this makes our insert() work in the null-basis case.
        else:
            return reduce(operator.add, [(vec & qi) * qi for qi in s.basis])

    def __init__(s, non_orthonormal_basis = []):
        for vec in non_orthonormal_basis:
            s.insert(vec)

Re: whee

Date: 2003-05-22 01:33 am (UTC)
From: [identity profile] marzipan-pig.livejournal.com
I don't really remember much linear algebra but I remeber thinking it was cool (and a great break from what I was really supposed to be studying) when I took it. unfortunately as with any higher math stuff, once that more theoretical stuff at the end of the quarter starts getting mixed in I realize I'm just not a mathematician at heart and just like hearing about it from others.

Re: whee

Date: 2003-05-22 01:09 pm (UTC)
From: [identity profile] eub.livejournal.com
The undergrad "Advanced Linear Algebra" course I took got a little out of hand. Giant festering mass of theory. Plus cognitive dissonance from taking a numerical computing course at the same time, and at some point getting hit with the shocking realization that the Jordan normal form is numerically useless ("discontinuous whenever it is interesting" --Kahan). But that course was not the best-taught in the world anyway. Students to prof (moonlighting over from Claremont Graduate School): "You just read proofs out of the book onto the blackboard. You kinda suck." Prof (moonlighting over from Claremont Graduate School) to students: "They're not paying me very much to teach this course."

Hm, I seem to have lost the $70 little textbook. Or did I possibly lend it to anyone around these parts? (Horn and Johnson, Matrix Analysis?) I wouldn't mind looking at the part about unitary and normal matrices.

Re: whee

Date: 2003-05-22 02:10 pm (UTC)
From: [identity profile] thatmathchick.livejournal.com
I believe I have your linear algebra book. That may help with the other 99.7%.

Even more shocking, I may remember where I put it....

Re: whee

Date: 2003-05-22 06:51 pm (UTC)
From: [identity profile] eub.livejournal.com
Oh yeah. The game-physics self-study course.

Profile

Eli

April 2017

S M T W T F S
      1
23 45 678
9101112131415
16171819202122
23242526272829
30      

Most Popular Tags

Page Summary

Style Credit

Expand Cut Tags

No cut tags
Page generated Jun. 10th, 2025 02:47 pm
Powered by Dreamwidth Studios