-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# TODO: around arbitrary point x = x0 ≠ 0 | ||
# TODO: error if x is not a "pure variable" | ||
# TODO: optimize for multiple orders with loop/recursion | ||
# TODO: get rational coefficients, not floats | ||
""" | ||
taylor(f, x, n) | ||
Calculate the `n`-th order term(s) in the Taylor series of the expression `f(x)` around `x = 0`. | ||
Examples | ||
======== | ||
```julia | ||
julia> @variables x | ||
1-element Vector{Num}: | ||
x | ||
julia> taylor(exp(x), x, 0:3) | ||
1.0 + x + 0.5(x^2) + 0.16666666666666666(x^3) | ||
``` | ||
""" | ||
function taylor(f, x, n::Int) | ||
D = Differential(x) | ||
n! = factorial(n) | ||
c = (D^n)(f) / n! | ||
c = expand_derivatives(c) | ||
c = substitute(c, x => 0) | ||
return c * x^n | ||
end | ||
function taylor(f, x, n::AbstractArray{Int}) | ||
return sum(taylor.(f, x, n)) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
@testset "Taylor series" begin | ||
# https://en.wikipedia.org/wiki/Taylor_series#List_of_Maclaurin_series_of_some_common_functions | ||
@variables x | ||
@test taylor(exp(x), x, 0:9) - sum(1 / factorial(n) * x^n for n in 0:9) == 0 | ||
@test taylor(log(1-x), x, 0:9) - sum(-1/n * x^n for n in 1:9) == 0 | ||
@test taylor(log(1+x), x, 0:9) - sum((-1)^(n+1) * 1/n * x^n for n in 1:9) == 0 | ||
|
||
@test taylor(1/(1-x), x, 0:9) - sum(x^n for n in 0:9) == 0 | ||
@test taylor(1/(1-x)^2, x, 0:8) - sum(n * x^(n-1) for n in 1:9) == 0 | ||
@test taylor(1/(1-x)^3, x, 0:7) - sum((n-1)*n/2 * x^(n-2) for n in 2:9) == 0 | ||
for α in (-1//2, 0, 1//2, 1, 2, 3) | ||
@test taylor((1+x)^α, x, 0:7) - sum(binomial(α, n) * x^n for n in 0:7) == 0 | ||
end | ||
|
||
@test taylor(sin(x), x, 0:7) - sum((-1)^n/factorial(2*n+1) * x^(2*n+1) for n in 0:3) == 0 | ||
@test taylor(cos(x), x, 0:7) - sum((-1)^n/factorial(2*n) * x^(2*n) for n in 0:3) == 0 | ||
@test taylor(tan(x), x, 0:7) - taylor(taylor(sin(x), x, 0:7) / taylor(cos(x), x, 0:7), x, 0:7) == 0 | ||
@test taylor(asin(x), x, 0:7) - sum(factorial(2*n)/(4^n*factorial(n)^2*(2*n+1)) * x^(2*n+1) for n in 0:3) == 0 | ||
@test taylor(acos(x), x, 0:7) - taylor(π/2 - asin(x), x, 0:7) == 0 | ||
@test taylor(atan(x), x, 0:7) - taylor(asin(x/√(1+x^2)), x, 0:7) == 0 | ||
|
||
@test taylor(sinh(x), x, 0:7) - sum(1/factorial(2*n+1) * x^(2*n+1) for n in 0:3) == 0 | ||
@test taylor(cosh(x), x, 0:7) - sum(1/factorial(2*n) * x^(2*n) for n in 0:3) == 0 | ||
@test taylor(tanh(x), x, 0:7) - (x - x^3/3 + 2/15*x^5 - 17/315*x^7) == 0 | ||
end |