TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

NIST Digital Library of Mathematical Functions

137 pointsby kerckerabout 8 years ago

7 comments

aplaiceabout 8 years ago
It&#x27;s lovely when a website actually uses MathML on browsers that mostly support it (i.e. Firefox and IE with mathplayer).<p>&lt;rant&gt;<p>For those not convinced why MathML is preferable to javascript-polyfills:<p>i) Browser rendering of MathML is much faster than MathJax and even slightly faster than client-side KaTeX.<p>ii) It supports a wider range of mathematical notation that KaTeX. (This point is partially dubious since MathJax is slightly better than current implementations of MathML, in this regard, though that is a limitation of the implementations, rather than the spec itself, and is a consequence of the fact that almost all of the work has been done by volunteers, not full-time staff, even in the case of Firefox&#x2F;gecko.)<p>iii) There isn&#x27;t an ugly mess of spans within spans in the DOM (mainly aesthetic preference).<p>iv) One can easily copy the given formula and paste it into another application which supports MathML, such as Mathematica or Thunderbird.<p>v) It can be easily embedded into svg and webgl, resulting in pretty diagrams or graphs. For example see <a href="http:&#x2F;&#x2F;fred-wang.github.io&#x2F;MathUI2014&#x2F;demos&#x2F;2-mathml-in-svg.svg" rel="nofollow">http:&#x2F;&#x2F;fred-wang.github.io&#x2F;MathUI2014&#x2F;demos&#x2F;2-mathml-in-svg....</a> or <a href="http:&#x2F;&#x2F;fred-wang.github.io&#x2F;MathUI2014&#x2F;demos&#x2F;6-mathml-in-webgl.html" rel="nofollow">http:&#x2F;&#x2F;fred-wang.github.io&#x2F;MathUI2014&#x2F;demos&#x2F;6-mathml-in-webg...</a> .<p>vi) Javascript can easily interact with MathML, without worries about order of execution etc.<p>vii) It&#x27;s a web standard :p<p>Obviously, it&#x27;s great that MathJax and KaTeX exist, but it would be even better if they didn&#x27;t _have to_.<p>&lt;&#x2F;rant&gt;
评论 #13946895 未加载
评论 #13946454 未加载
fdejabout 8 years ago
The NIST DLMF is great, but it has some deficiencies for someone who does serious work with mathematical functions.<p>It was created with the print edition in mind, and the web edition as a companion, rather than the other way around. Due to this focus, a lot of the content is needlessly terse.<p>For example, a rather useful chapter on computer algebra methods for special functions (things like holonomic functions and Zeilberger&#x27;s algorithm) was written for the DLMF, but had to be discarded (in my understanding) due to page constraints on the print edition.<p>Also, many useful formulas are missing, and very often a case is covered as &quot;for z &lt; 0, combine (13.7.6) with (12.1.2) and (12.1.15)&quot; when actually combining those formulas is half the work and the purpose of a reference is to save me trouble (and avoid potential mistakes)!<p>Each chapter is also written by a different author, with slight differences in the way things are organized. The good thing is that it is more than just a database of facts, with the content presented in a way that makes mathematical sense, but it can also make it more difficult to simply look up a specific fact.<p>My biggest gripe is that some sections of the DLMF have a very cavalier attitude when it comes to complex variables and branch cuts. A fair number of &quot;equations&quot; are only correct when the functions are interpreted as multivalued, and the user needs to place branch cuts the correct way. This really sucks if you need to do actual computations.<p>In quite a few places of the DLMF, no information about complex variables is given at all even though these are important in practice.<p>I often use the Wolfram Functions site (<a href="http:&#x2F;&#x2F;functions.wolfram.com&#x2F;" rel="nofollow">http:&#x2F;&#x2F;functions.wolfram.com&#x2F;</a>) as a complement to the DLMF, and the contrast in approach is very interesting.<p>The WF site is much more of a database, containing lots of more or less automatically generated entries. It is generally much more comprehensive than the DLMF, in that it allows you to look up variations and special cases of a formula in explicit form. On the other hand, it lacks most of the context and explanations provided in the DLMF.<p>Since the WF site content is organized completely systematically, it is very easy to find a specific formula and to compare analogous entries for different mathematical functions.<p>On the other hand, the WF content is harder to navigate unless you&#x27;re already familiar with it. The tables of automatically generated formulas also contain a fair number of &quot;junk&quot; entries that no human would ever find useful.<p>The WF site is completely explicit about branch cuts (which makes sense since the Mathematica designers care about actual computations).<p>I have found some errors in the WF site, but they are quite rare. The Wolfram people actually use numerical &quot;unit tests&quot; for the formulas (checking identities numerically for carefully chosen values of the variables in order to verify correct use of branch cuts etc).<p>One of the Mathematica developers responsible for the WF site was actually present at a DLMF development meeting which took place in connection with a conference at NIST a couple of years ago, and he gave the DLMF editors a bit of a scolding about the branch cut issue, but not much happened. There&#x27;s a bit of difference in philosophy: viewing a special function as a more abstract thing vs fixing concrete branch cuts.<p>A third interesting approach to a special functions resource is the Dynamic Dictionary of Mathematical Functions (<a href="http:&#x2F;&#x2F;ddmf.msr-inria.inria.fr&#x2F;1.9.1&#x2F;ddmf" rel="nofollow">http:&#x2F;&#x2F;ddmf.msr-inria.inria.fr&#x2F;1.9.1&#x2F;ddmf</a>) which is even more automated than the WF site.<p>In the DDMF, a function is defined by a differential or difference equation, and all theorems and formulas are essentially generated algorithmically from first principles! Very neat. But the content that can be generated automatically this way is still quite limited compared to completely human-curated resources.
评论 #13946366 未加载
snake_plisskenabout 8 years ago
This is pretty cool, especially the physical applications sections. And it brought back some memories from various physics classes on the enigmatic questions that lead to the development and understanding for some of these functions. See the Bessel Function, <a href="http:&#x2F;&#x2F;dlmf.nist.gov&#x2F;10.73" rel="nofollow">http:&#x2F;&#x2F;dlmf.nist.gov&#x2F;10.73</a>: &quot;Bessel functions first appear in the investigation of a physical problem in Daniel Bernoulli’s analysis of the small oscillations of a uniform heavy flexible chain.&quot;
jps359about 8 years ago
Neat. Is there a PDF version?
评论 #13943989 未加载
denfromufaabout 8 years ago
zunzun uses this library for equation regression:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;zunzun&#x2F;pyeq2" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;zunzun&#x2F;pyeq2</a>
dhimesabout 8 years ago
Looks great! Makes me nostalgic for Abramowitz and Stegun.
评论 #13940311 未加载
mrcactu5about 8 years ago
these formula books have been around for a long time. and you can generate your own!<p>a lot of people here are engineers? I wonder have you guys tried proving some of them?