blob: 28bc00dde82ded340b2486217f8b4b54765f27ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
$title = "The Calculus of Infinitesimals";
require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
include($_SERVER["DOCUMENT_ROOT"] . "/phplatex.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 known in this way is a testament to its importance.
</p>
<p>
<?php echo(texify("$\\sqrt[3]{2}\$", 160, 0.96,0.96,0.96, 0.118,0.106,0.106, "", TRUE)); ?>
</p>
<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>
|