blob: a7a369a8db83f1818a487d41a006eac238657930 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
$title = "The Calculus of Infinitesimals";
require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
include($_SERVER["DOCUMENT_ROOT"] . "/phplatex.php");
include($_SERVER["DOCUMENT_ROOT"] . "/vars.php");
?>
<p>
<i>Calculus</i> is often used as the complete name of a branch of mathematics dealing with
rates of change and very small numbers. In fact, a calculus is a specific discipline
or method for the analysis of some set of problems. The fact that the <i>calculus of infinitesimals</i>
has come to be known in this way is a testament to its importance.
</p>
<p>
Cube root of two: <?php echo(texify("$\\sqrt[3]{2}\$", 160, $c_fg, $c_bg, "", TRUE)); ?>
</p>
<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>
|