Skip to content

Commit d8187a8

Browse files
committed
typos Lec 5
1 parent 5a08aa9 commit d8187a8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

‎Lecture-5-Sympy.ipynb‎

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"# Sympy - Symbolic algebra in Python"
7+
"# SymPy - Symbolic algebra in Python"
88
]
99
},
1010
{
@@ -261,7 +261,7 @@
261261
"cell_type": "markdown",
262262
"metadata": {},
263263
"source": [
264-
"The imaginary unit is denoted `I` in Sympy. "
264+
"The imaginary unit is denoted `I` in SymPy. "
265265
]
266266
},
267267
{
@@ -462,7 +462,7 @@
462462
"cell_type": "markdown",
463463
"metadata": {},
464464
"source": [
465-
"SymPy uses a library for artitrary precision as numerical backend, and has predefined SymPy expressions for a number of mathematical constants, such as: `pi`, `e`, `oo` for infinity.\n",
465+
"SymPy uses a library for arbitrary precision as numerical backend, and has predefined SymPy expressions for a number of mathematical constants, such as: `pi`, `e`, `oo` for infinity.\n",
466466
"\n",
467467
"To evaluate an expression numerically we can use the `evalf` function (or `N`). It takes an argument `n` which specifies the number of significant digits."
468468
]
@@ -629,7 +629,7 @@
629629
"cell_type": "markdown",
630630
"metadata": {},
631631
"source": [
632-
"We can also combine numerical evolution of expressions with NumPy arrays:"
632+
"We can also combine numerical evaluation of expressions with NumPy arrays:"
633633
]
634634
},
635635
{
@@ -692,7 +692,7 @@
692692
"cell_type": "markdown",
693693
"metadata": {},
694694
"source": [
695-
"However, this kind of numerical evolution can be very slow, and there is a much more efficient way to do it: Use the function `lambdify` to \"compile\" a Sympy expression into a function that is much more efficient to evaluate numerically:"
695+
"However, this kind of numerical evaluation can be very slow, and there is a much more efficient way to do it: Use the function `lambdify` to \"compile\" a SymPy expression into a function that is much more efficient to evaluate numerically:"
696696
]
697697
},
698698
{
@@ -779,7 +779,7 @@
779779
"cell_type": "markdown",
780780
"metadata": {},
781781
"source": [
782-
"One of the main uses of an CAS is to perform algebraic manipulations of expressions. For example, we might want to expand a product, factor an expression, or simply an expression. The functions for doing these basic operations in SymPy are demonstrated in this section."
782+
"One of the main uses of an CAS is to perform algebraic manipulations of expressions. For example, we might want to expand a product, factor an expression, or simplify an expression. The functions for doing these basic operations in SymPy are demonstrated in this section."
783783
]
784784
},
785785
{
@@ -919,7 +919,7 @@
919919
"cell_type": "markdown",
920920
"metadata": {},
921921
"source": [
922-
"The opposite a product expansion is of course factoring. The factor an expression in SymPy use the `factor` function: "
922+
"The opposite of product expansion is of course factoring. To factor an expression in SymPy use the `factor` function: "
923923
]
924924
},
925925
{
@@ -1589,7 +1589,7 @@
15891589
"cell_type": "markdown",
15901590
"metadata": {},
15911591
"source": [
1592-
"We can evaluate sums and products using the functions: 'Sum'"
1592+
"We can evaluate sums using the function `Sum`:"
15931593
]
15941594
},
15951595
{

0 commit comments

Comments
 (0)