File tree Expand file tree Collapse file tree 2 files changed +356
-546
lines changed
Expand file tree Collapse file tree 2 files changed +356
-546
lines changed Original file line number Diff line number Diff line change @@ -84,24 +84,24 @@ Mathematically one writes as:
8484or more compactly using **big O notation** as
8585
8686> ```math
87- > R(x) = O(| x - a| ^3) \q quad \t ext{as $x \t o a$}.
87+ > R(x) = O(( x - a) ^3) \q quad \t ext{as $x \t o a$}.
8888> ```
8989
9090Employing this within (2) we arrive at
9191
9292```math
9393\t ag{3}
94- f(x) = f(a) + (x-a) \ f'(a) + \f rac12 f''(a) \ (x-a)^2 + O(| x-a| ^3)
94+ f(x) = f(a) + (x-a) \ f'(a) + \f rac12 f''(a) \ (x-a)^2 + O(( x-a) ^3)
9595```
9696
9797This **big O notation** is thus a mathematically precise way of saying
9898that there are more terms in the expansion (3) that we don't show
99- but their order is at most $| x - a| ^3$.
99+ but their order is at most $( x - a) ^3$.
100100Or more generally
101101
102102```math
103103\t ag{4}
104- f(x) = \s um_{k=0}^n \f rac{1}{k!} f^{(k)}(a) (x-a)^k + O(| x-a| ^{n+1})
104+ f(x) = \s um_{k=0}^n \f rac{1}{k!} f^{(k)}(a) (x-a)^k + O(( x-a) ^{n+1})
105105```
106106"""
107107
You can’t perform that action at this time.
0 commit comments