Skip to content
This repository has been archived by the owner on May 11, 2021. It is now read-only.

Commit

Permalink
fixes in Powers of complex numbers 1
Browse files Browse the repository at this point in the history
  • Loading branch information
agentydragon committed Jan 21, 2012
1 parent 3a605b3 commit 06d13c6
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions exercises/powers_of_complex_numbers_1.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,11 @@
<div class="problems">
<div>
<p class="question">
Determine the value of the following complex number (plotted in
<strong class="hint_blue">blue</strong>). Your answer will be plotted in
Determine the value of the following complex number power. Your answer will be plotted in
<strong class="hint_orange">orange</strong>.
</p>
<code>
(<var>BASE_REP</var>) ^ {<var>EXPONENT</var>}
(\color{<var>BLUE</var>}{<var>BASE_REP</var>}) ^ {<var>EXPONENT</var>}
</code>
<div class="graphie" id="gauss-plane">
graphInit({
Expand All @@ -63,7 +62,7 @@
stroke: "none"
});

graph.currComplexPolar = new ComplexPolarForm( DENOMINATOR, 10 );
graph.currComplexPolar = new ComplexPolarForm( DENOMINATOR, 10, EULER_FORM );
redrawComplexPolarForm();
</div>
<div class="solution" data-type="complexNumberPolarForm">
Expand Down Expand Up @@ -106,13 +105,15 @@
</p>
</div>

<p>
Our result is <code><var>ANSWER_EULER</var></code>.
<span data-if="!EULER_FORM">
<div>
<p>
Our result is <code><var>ANSWER_EULER</var></code>.
</p>
<p data-if="!EULER_FORM">
Converting this back from Euler form, we get
<code><var>ANSWER</var></code>.
</span>
</p>
</p>
</div>
</div>
</div>
</div>
Expand Down

0 comments on commit 06d13c6

Please sign in to comment.