Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
1cb0cb20
Commit
1cb0cb20
authored
Feb 21, 2014
by
Sylvia Pearce
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Quick typo fix
parent
eb6b8aa2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
docs/en_us/course_authors/source/appendices/e.rst
+13
-13
No files found.
docs/en_us/course_authors/source/appendices/e.rst
View file @
1cb0cb20
...
@@ -649,34 +649,34 @@ Sample Problem:
...
@@ -649,34 +649,34 @@ Sample Problem:
.. code-block:: xml
.. code-block:: xml
<problem>
<problem>
<p><b>Example Problem</b></p>
<p><b>Example Problem</b></p>
<p>What base is the decimal numeral system in?
<p>What base is the decimal numeral system in?
<numericalresponse answer="10">
<numericalresponse answer="10">
<formulaequationinput label="What base is the decimal numeral system in?"/>
<formulaequationinput label="What base is the decimal numeral system in?"/>
</numericalresponse>
</numericalresponse>
</p>
</p>
<p>What is the value of the standard gravity constant <i>g</i>, measured in m/s<sup>2</sup>? Give your answer to at least two decimal places.
<p>What is the value of the standard gravity constant <i>g</i>, measured in m/s<sup>2</sup>? Give your answer to at least two decimal places.
<numericalresponse answer="9.80665">
<numericalresponse answer="9.80665">
<responseparam type="tolerance" default="0.01" />
<responseparam type="tolerance" default="0.01" />
<formulaequationinput label="Give your answer to at least two decimal places"/>
<formulaequationinput label="Give your answer to at least two decimal places"/>
</numericalresponse>
</numericalresponse>
</p>
</p>
<!-- Use python script spacing. The following should not be indented! -->
<!-- Use python script spacing. The following should not be indented! -->
<script type="loncapa/python">
<script type="loncapa/python">
computed_response = math.sqrt(math.fsum([math.pow(math.pi,2), math.pow(math.e,2)]))
computed_response = math.sqrt(math.fsum([math.pow(math.pi,2), math.pow(math.e,2)]))
</script>
</script>
<p>What is the distance in the plane between the points (pi, 0) and (0, e)? You can type math.
<p>What is the distance in the plane between the points (pi, 0) and (0, e)? You can type math.
<numericalresponse answer="$computed_response">
<numericalresponse answer="$computed_response">
<responseparam type="tolerance" default="0.0001" />
<responseparam type="tolerance" default="0.0001" />
<formulaequationinput label="What is the distance in the plane between the points (pi, 0) and (0, e)?"/>
<formulaequationinput label="What is the distance in the plane between the points (pi, 0) and (0, e)?"/>
</numericalresponse>
</numericalresponse>
</p>
</p>
<solution>
<solution>
<div class="detailed-solution">
<div class="detailed-solution">
<p>Explanation</p>
<p>Explanation</p>
<p>The decimal numerical system is base ten.</p>
<p>The decimal numerical system is base ten.</p>
...
@@ -690,8 +690,8 @@ Sample Problem:
...
@@ -690,8 +690,8 @@ Sample Problem:
Other answers like <code>sqrt((pi-0)^2+(0-e)^2)</code> also work.
Other answers like <code>sqrt((pi-0)^2+(0-e)^2)</code> also work.
</p>
</p>
</div>
</div>
</solution>
</solution>
</problem>
</problem>
**Templates**
**Templates**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment