Imported Upstream version 1.72.0
[platform/upstream/boost.git] / libs / math / doc / html / math_toolkit / root_finding_examples / cbrt_eg.html
index c4ab90b..e47dc9a 100644 (file)
@@ -4,7 +4,7 @@
 <title>Finding the Cubed Root With and Without Derivatives</title>
 <link rel="stylesheet" href="../../math.css" type="text/css">
 <meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
-<link rel="home" href="../../index.html" title="Math Toolkit 2.10.0">
+<link rel="home" href="../../index.html" title="Math Toolkit 2.11.0">
 <link rel="up" href="../root_finding_examples.html" title="Examples of Root-Finding (with and without derivatives)">
 <link rel="prev" href="../root_finding_examples.html" title="Examples of Root-Finding (with and without derivatives)">
 <link rel="next" href="lambda.html" title="Using C++11 Lambda's">
@@ -64,9 +64,9 @@
 <p>
         So the equation we want to solve is:
       </p>
-<p>
-        &#8192;&#8192; <span class="emphasis"><em>f(x) = x&#179; -a</em></span>
-      </p>
+<div class="blockquote"><blockquote class="blockquote"><p>
+          <span class="serif_italic"><span class="emphasis"><em>f(x) = x&#179; -a</em></span></span>
+        </p></blockquote></div>
 <p>
         We will first solve this without using any information about the slope or
         curvature of the cube root function.
@@ -360,9 +360,9 @@ and reusing it, omits error handling, and does not handle negative values
         that returns both the evaluation of the function to solve, along with its
         first <span class="bold"><strong>and second</strong></span> derivative:
       </p>
-<p>
-        &#8192;&#8192;<span class="emphasis"><em>f''(x) = 6x</em></span>
-      </p>
+<div class="blockquote"><blockquote class="blockquote"><p>
+          <span class="serif_italic"><span class="emphasis"><em>f''(x) = 6x</em></span></span>
+        </p></blockquote></div>
 <p>
         using information about both slope and curvature to speed convergence.
       </p>