Here's an logarithmic fact that I've made use of frequently: If X is a random variable having a uniform distribution between zero and one, then –ln( X )/ λ has an exponential distribution with rate λ . This relationship comes in handy when, for example, you want to draw weighted random samples. Or generating event times for simulations.
The general version of this is called inverse transform sampling [0], which uses the fact that for the cdf F of any random variable X the random variable Y = F(X) has a standard uniform distribution [1]. Since every cdf increases monotonically on the unit interval, every cdf is invertible [2]. So apply the inverse cdf to both sides of the previous equation and you get F^-1(Y) = X is distributed like X . Sampling from…
The Lost Art of Logarithms
91–100 of 204 posts
Re: The Lost Art of Logarithms
#92Earlier quoted context omitted.
I often wonder about this. I also believe that mathematical pedagogy strive to attract people that are very smart and think in the abstract like euler, and not operationally, meaning they will get it intuitively. For other people, you need to swim in the original problem for a while to see the light.
Math is rarely taught with practical problems in mind — that’s engineering !
Bouncing between the two is where the action is.
And units: if I had it all to do over, I would pore over the units sooner rather than later.
Re: The Lost Art of Logarithms
#93Re: The Lost Art of Logarithms
#94Lately, I've been rediscovering the surprising niceties that analog tools can provide over our everything-is-a-panel-of-glass interfaces these days. Recently, I have been enjoying pen and paper as my editor for initial drafts of projects I'm coding.
Does HN have love for any analog tools in particular?
Re: The Lost Art of Logarithms
#95Earlier quoted context omitted.
Math is rarely taught with practical problems in mind — that’s engineering !
Therein lies the rub. Treating abstract and the concrete in isolation was always tough sledding for me. Bouncing between the two is where the action is. And units: if I had it all to do over, I would pore over the units sooner rather than later.
I was recently struggling to model a financial process and solved it with Units. Once I started talking about colors of money as units, it became much easier to reason about which operations were valid.
Re: The Lost Art of Logarithms
#96How timely! I just learned how to use a slide rule yesterday. Looking to pick one up, and a bit overwhelmed by the plethora of choices, I went down a small rabbit hole[0]. Some slide rules produced are pure works of art! Lately, I've been rediscovering the surprising niceties that analog tools can provide over our everything-is-a-panel-of-glass interfaces these days. Recently, I have been enjoying pen and paper as my…
Re: The Lost Art of Logarithms
#97I found that looking at the original motivation of logarithms has been more elucidating than the way the topic is presented in grade-school. Thinking through the functional form that can solve the multiplication problem that Napier was facing (how to simplify multiplying large astronomical observations), f(ab) = f(a) + f(b), and why that leads to a unique family of functions, resonates a lot better with me for why lo…
Re: The Lost Art of Logarithms
#98Earlier quoted context omitted.
I often wonder about this. I also believe that mathematical pedagogy strive to attract people that are very smart and think in the abstract like euler, and not operationally, meaning they will get it intuitively. For other people, you need to swim in the original problem for a while to see the light.
Math is rarely taught with practical problems in mind — that’s engineering !
I mean, imagine a programming course where students spend the whole first year studying OpenGL, and then in the second year they learn that those APIs they've been memorizing can be used to draw pictures :D
Re: The Lost Art of Logarithms
#99Earlier quoted context omitted.
I think this should be front and center. To that end I propose "magnitude notation"[0] (and I don't think we should use the word logarithm, which sounds like advanced math and turns people away from the basic concept, which does make math easier and more fun). https://saul.pw/mag
> I think this should be front and center. To that end I propose "magnitude notation"[0] (and I don't think we should use the word logarithm, which sounds like advanced math and turns people away from the basic concept, which does make math easier and more fun). The only reason that "logarithm" sounds like advanced math is because it was so useful that mathematicians, well, used it. Since this terminology is just log…