var fDesc=new Array(); fDesc[0] = "This calculator computes definite integrals by tinh-sinh quadrature scheme. Type formula into Integrand text-box. Change default values of lower and upper limits of integration. Click Calculate button. Watch if the algorithm is converging. The Current Uncertainty value should be steadily decreasing. If the algorithm is diverging, click Stop button. Observe results of calculation in History tab. At each level the number of calculation points doubles and so does the number of accurate digits. You can watch it by decreasing exponent of current uncertainty. The number of points of calculation depends on level and length of interval of integration for tinh-sinh quadrature algorithm."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }