summaryrefslogtreecommitdiff
path: root/getting_started_with_symbolics
diff options
context:
space:
mode:
authorJovina2011-08-02 12:56:56 +0530
committerJovina2011-08-02 12:56:56 +0530
commit4d2ec5b5b96ac3da95d8b7245376e5b6694dfb9e (patch)
tree72e3acc3c0f1af07e3d60d85f660871fb68bae0d /getting_started_with_symbolics
parent701f8c7e585db03e5baa1c4f89c1c6b7a77eb961 (diff)
downloadst-scripts-4d2ec5b5b96ac3da95d8b7245376e5b6694dfb9e.tar.gz
st-scripts-4d2ec5b5b96ac3da95d8b7245376e5b6694dfb9e.tar.bz2
st-scripts-4d2ec5b5b96ac3da95d8b7245376e5b6694dfb9e.zip
Minor changes to scripts of 5th module.
Diffstat (limited to 'getting_started_with_symbolics')
-rw-r--r--getting_started_with_symbolics/script.rst10
1 files changed, 8 insertions, 2 deletions
diff --git a/getting_started_with_symbolics/script.rst b/getting_started_with_symbolics/script.rst
index 2123ba0..6f50cfd 100644
--- a/getting_started_with_symbolics/script.rst
+++ b/getting_started_with_symbolics/script.rst
@@ -48,7 +48,7 @@ At the end of this tutorial, you will be able to,
#. Perform Integration, differentiation using sage.
#. Define matrices.
#. Define Symbolic functions.
- #. Simplify0and solve symbolic expressions and functions.
+ #. Simplify and solve symbolic expressions and functions.
.. L3
@@ -69,7 +69,7 @@ we shall start with defining symbolic expressions in Sage.
.. R4
Have your Sage notebook opened. If not, pause the video and
-start you Sage notebook right now.
+start you Sage notebook.
.. R5
@@ -153,6 +153,12 @@ Define following expressions as symbolic expressions in Sage.
.. R12
The solution is on your screen.
+
+var(’x,y’)
+x^2+y^2
+var(’a,x,y’)
+y^2-4*a*x
+
<pause for sometime,then continue>
.. R13