In [1]: Integral(exp(-x**2)*erf(x), x)
Out[1]:
⌠
⎮ 2
⎮ -x
⎮ ℯ ⋅erf(x) dx
⌡
In [2]: integrate(exp(-x**2)*erf(x), x)
Out[2]:
⎽⎽⎽ 2
╲╱ π ⋅erf (x)
─────────────
4
posted by floam at 2:22 PM on September 28, 2011 [1 favorite] // ==UserScript==If you install this, the above LaTeX code should render as the Schrödinger equation, although perhaps the font sizes should be increased.
// @name MathJax for MetaFilter
// @namespace http://burdges.com/
// @description Adds MathJax support to MetaFilter
// @include http://*.metafilter.com/*
// ==/UserScript==
if ((window.unsafeWindow == null ? window : unsafeWindow).MathJax == null) {
var script = document.createElement("script");
script.src = "http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML-full";
var config = 'MathJax.Hub.Startup.onload()';
if (window.opera) {script.innerHTML = config} else {script.text = config}
document.getElementsByTagName("head")[0].appendChild(script);
}
posted by mathowie (staff) at 11:54 AM on September 28, 2011 [1 favorite]