@@ -32,7 +32,7 @@ the bookkeeping becomes extremely tedious and error prone for systems with even
32
32
a small number of bodies. SymPy lets a computer handle the tedious aspects
33
33
(e.g. differentiation or solving linear systems of equations) and reduces the
34
34
errors one would encounter with pencil and paper. This chapter introduces SymPy
35
- and the primary SymPy features needed we will be using.
35
+ and the primary SymPy features we will be using.
36
36
37
37
.. _SymPy : https://www.sympy.org
38
38
.. _computer algebra system : https://en.wikipedia.org/wiki/Computer_algebra_system
@@ -51,7 +51,7 @@ a format that is similar to the math in a textbook. Executing
51
51
:external:py:func: `~sympy.interactive.printing.init_printing ` at the beginning
52
52
of your Jupyter Notebook will ensure that SymPy objects render as typeset
53
53
mathematics. I use the ``use_latex='mathjax' `` argument here to disable math
54
- image generation.
54
+ png image generation, but that keyword argument is not necessary .
55
55
56
56
.. jupyter-execute ::
57
57
@@ -334,7 +334,7 @@ There is also a standard representation accessed with the ``repr()`` function:
334
334
335
335
repr(expr3)
336
336
337
- This form matches what you typically would type to create the function and it
337
+ This form matches what you typically would type to create the expression and it
338
338
returns a string. The ``print() `` function will display that string:
339
339
340
340
.. jupyter-execute ::
@@ -780,7 +780,7 @@ Solving Linear Systems
780
780
You'll need to solve `linear systems of equations `_ often in this book. SymPy
781
781
offers `a number of ways to do this `_, but the best way to do so if you know a
782
782
set of equations are linear in specific variables is the method described
783
- below. First, you should know you have equations of this form:
783
+ below. First, you should confirm you have equations of this form:
784
784
785
785
.. math ::
786
786
@@ -1133,8 +1133,6 @@ else has asked your question), you can do so at the following places:
1133
1133
email.
1134
1134
- `SymPy Github Discussions <https://github.com/sympy/sympy/discussions >`_: Ask
1135
1135
questions via Github.
1136
- - `SymPy Gitter <https://gitter.im/sympy/sympy >`_: Ask questions in a live
1137
- chat.
1138
1136
- `Stackoverflow
1139
1137
<https://stackoverflow.com/questions/tagged/sympy?tab=Votes> `_: Ask and
1140
1138
search questions on the most popular coding Q&A website.
0 commit comments