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

Commit

Permalink
Merge pull request #41171 from shanem/issue-41067
Browse files Browse the repository at this point in the history
Use the word "exact" in Area of a Circle. (Fixes: #41067)
  • Loading branch information
cbhl committed Feb 24, 2013
2 parents 725121f + fe2cb56 commit 825c11f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions exercises/area_of_a_circle.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
</div>

<div class="question">
<p>Suppose the radius of a circle is <code>\color{<var>R_COLOR</var>}{<var>R</var>}</code>. What is its area?</p>
<p>Suppose the radius of a circle is <code>\color{<var>R_COLOR</var>}{<var>R</var>}</code>. What is its <em>exact</em> area?</p>
</div>

<div class="solution" data-forms="integer, proper, improper, mixed, decimal, pi"><var>Math.PI * R * R</var></div>
Expand All @@ -88,7 +88,7 @@
</div>

<div class="question">
<p>Suppose the area of a circle is <code>\color{<var>K_COLOR</var>}{<var>R === 1 ? "" : R * R</var>\pi}</code>. What is its radius?</p>
<p>Suppose the area of a circle is <code>\color{<var>K_COLOR</var>}{<var>R === 1 ? "" : R * R</var>\pi}</code>. What is its <em>exact</em> radius?</p>
</div>

<div class="solution" data-forms="integer, proper, improper, mixed, decimal, pi"><var>R</var></div>
Expand All @@ -115,7 +115,7 @@
</div>

<div class="question">
<p>Suppose the diameter of a circle is <code>\color{<var>D_COLOR</var>}{<var>2 * R</var>}</code>. What is its area?</p>
<p>Suppose the diameter of a circle is <code>\color{<var>D_COLOR</var>}{<var>2 * R</var>}</code>. What is its <em>exact</em> area?</p>
</div>

<div class="solution" data-forms="integer, proper, improper, mixed, decimal, pi"><var>Math.PI * R * R</var></div>
Expand Down Expand Up @@ -143,7 +143,7 @@
</div>

<div class="question">
<p>Suppose the area of a circle is <code>\color{<var>K_COLOR</var>}{<var>R === 1 ? "" : R * R</var>\pi}</code>. What is its diameter?</p>
<p>Suppose the area of a circle is <code>\color{<var>K_COLOR</var>}{<var>R === 1 ? "" : R * R</var>\pi}</code>. What is its <em>exact</em> diameter?</p>
</div>

<div class="solution" data-forms="integer, proper, improper, mixed, decimal, pi"><var>2 * R</var></div>
Expand Down Expand Up @@ -171,7 +171,7 @@
</div>

<div class="question">
<p>Suppose the circumference of a circle is <code>\color{<var>C_COLOR</var>}{<var>2 * R</var>\pi}</code>. What is its area?</p>
<p>Suppose the circumference of a circle is <code>\color{<var>C_COLOR</var>}{<var>2 * R</var>\pi}</code>. What is its <em>exact</em> area?</p>
</div>

<div class="solution" data-forms="integer, proper, improper, mixed, decimal, pi"><var>Math.PI * R * R</var></div>
Expand Down Expand Up @@ -199,7 +199,7 @@
</div>

<div class="question">
<p>Suppose the area of a circle is <code>\color{<var>K_COLOR</var>}{<var>R === 1 ? "" : R * R</var>\pi}</code>. What is its circumference?</p>
<p>Suppose the area of a circle is <code>\color{<var>K_COLOR</var>}{<var>R === 1 ? "" : R * R</var>\pi}</code>. What is its <em>exact</em> circumference?</p>
</div>

<div class="solution" data-forms="integer, proper, improper, mixed, decimal, pi"><var>Math.PI * 2 * R</var></div>
Expand Down

0 comments on commit 825c11f

Please sign in to comment.