Skip to content
Snippets Groups Projects
Commit 22af2a33 authored by Goik Martin's avatar Goik Martin
Browse files

Correcting App file, adding power series calculation hint

parent f8153c99
No related branches found
No related tags found
No related merge requests found
......@@ -20,10 +20,10 @@ public class Driver {
store.addValue(-5);
store.addValue(24);
System.out.println("Store contains " + store.getNumValues() + " values");
System.out.println("Store contains " + store.getNumValues() + " values:");
for (int i = 0; i < store.getNumValues(); i++) {
System.out.println(i + ":" + store.getNumValues() + " values");
System.out.println("Value " + (i + 1) + ": " + store.getValue(i));
}
}
}
......@@ -3822,6 +3822,71 @@ public class Math {
<para>Do not forget to provide suitable
<command>Javadoc</command> comments and watch the generated
documentation.</para>
<para>Hints:</para>
<itemizedlist>
<listitem>
<para>You should only use basic arithmetic operations like
+, - * and /. Do not use <link
xlink:href="https://docs.oracle.com/javase/8/docs/api/java/lang/Math.html#pow-double-double-">Math.pow(double
a, double b)</link> and friends! Their implementations use
power series expansions as well and are designed for a
different purpose like having fractional exponent
values.</para>
</listitem>
<listitem>
<para>The power series' elements may be obtained in a
recursive fashion like e.g.:</para>
<informalequation>
<m:math display="block">
<m:mrow>
<m:mfrac>
<m:msup>
<m:mi>x</m:mi>
<m:mi>3</m:mi>
</m:msup>
<m:mrow>
<m:mi>3</m:mi>
<m:mo>!</m:mo>
</m:mrow>
</m:mfrac>
<m:mo>=</m:mo>
<m:mrow>
<m:mfrac>
<m:mi>x</m:mi>
<m:mn>3</m:mn>
</m:mfrac>
<m:mo></m:mo>
<m:mfrac>
<m:msup>
<m:mi>x</m:mi>
<m:mi>2</m:mi>
</m:msup>
<m:mrow>
<m:mi>2</m:mi>
<m:mo>!</m:mo>
</m:mrow>
</m:mfrac>
</m:mrow>
</m:mrow>
</m:math>
</informalequation>
</listitem>
</itemizedlist>
</question>
<answer>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment