Live data from Hacker News

Viewing profile — omn123

omn123

HN member
Joined
Tue, Nov 26, 2013, 6:35 PM UTC
HN karma
21
Public activity
7 items

About omn123

No profile information was provided.

Recent public activity

  1. comment
    Comment #7203193

    Consider, for example, calculating binomial coefficients mod a large number. It's not hard to realise that C(n,k+1) = (n-k)C(n,k)/(k+1) is one way to write the binomial coefficient…

  2. comment
    Comment #6804527

    I've alluded to this in other comments but a lot of the mathematics is linear algebra. As gaius mentions, check out the wikipedia article. There are plenty of linear algebra books …

  3. comment
    Comment #6804462

    You are quite correct about stability but I didn't want to get into technical details. And indeed you bring up correctly that such numerical issues mustn’t be treated lightly. I do…

  4. comment
    Comment #6804180

    Well today I learned. I never knew that. Stupid mathematics and its inconsistent notation.

  5. comment
    Comment #6803474

    I'm not implying yours are not unstable, it's just there is a chance it might be. Typically exact formulas exhibit such properties. LU decomposition is numerically stable, for the …

  6. comment
    Comment #6803424

    It is actually linear. a,b,c,d are the unknowns and x1 and x2 are the inputs. A bit confusing since normally x1,x2 denote the unknowns.

  7. comment
    Comment #6803234

    It's worth pointing out that you should rarely, if ever, use exact formulas since there are a lot of problems with numerical stability amongst other things. Often it is faster to j…